Defines | |
| #define | CHECK_SM(x, bits) ASSERT_DEBUG(((x)>>bits)==0) |
| #define | CHECK_UM(x, bits) ASSERT_DEBUG(((x)>>bits)==0) |
| #define | CHECK_TC(x, bits) ASSERT_DEBUG(((x)>>(bits-1))==((x)<0?-1:0)) |
| #define | CHECK_FL(x, bits) ASSERT_DEBUG(((x)>>bits)==0) |
| #define | CHECK_UNSIGNED(x, bits) ASSERT_DEBUG(((x)>>bits)==0) |
|
|
Check that a signed magnitude value lies entirely withing the given number of bits
|
|
|
Check that a unsigned magnitude value lies entirely withing the given number of bits
|
|
|
Check that a twos compliment value lies entirely withing the given number of bits
|
|
|
Check that a float value lies entirely withing the given number of bits
|
|
|
Check that an unsigned integer value lies entirely withing the given number of bits
|
1.4.4