Lines Matching refs:value
72 /* Check that in the value of flags, the bit flag (which should be a macro
77 * be different if the value of the flag bit is only specified under specific
97 /* Check the parity of value.
108 * Return a nonzero value if value has even parity and 0 otherwise. */
109 static int has_even_parity(uint32_t value)
111 value ^= value >> 16;
112 value ^= value >> 8;
113 value ^= value >> 4;
114 return 0x9669 & 1 << (value & 0xf);
116 #define TEST_PARITY(value) \
117 TEST_ASSERT(has_even_parity(value))