/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | const_time.h | 95 * @true_val: Value to select for the true case 97 * Returns: true_val if mask == -1, false_val if mask == 0 100 unsigned int true_val, in const_time_select() 103 return (mask & true_val) | (~mask & false_val); in const_time_select() 110 * @true_val: Value to select for the true case 112 * Returns: true_val if mask == -1, false_val if mask == 0 114 static inline int const_time_select_int(unsigned int mask, int true_val, in const_time_select_int() argument 117 return (int) const_time_select(mask, (unsigned int) true_val, in const_time_select_int() 125 * @true_val: Value to select for the true case 127 * Returns: true_val i 99 const_time_select(unsigned int mask, unsigned int true_val, unsigned int false_val) const_time_select() argument 129 const_time_select_u8(u8 mask, u8 true_val, u8 false_val) const_time_select_u8() argument 142 const_time_select_s8(u8 mask, s8 true_val, s8 false_val) const_time_select_s8() argument 161 const_time_select_bin(u8 mask, const u8 *true_val, const u8 *false_val, size_t len, u8 *dst) const_time_select_bin() argument [all...] |
H A D | utils_module_tests.c | 979 unsigned int true_val; in const_time_tests() member 996 int true_val; in const_time_tests() member 1011 u8 true_val; in const_time_tests() member 1026 s8 true_val; in const_time_tests() member 1039 u8 *true_val; in const_time_tests() member 1129 if (const_time_select(test->mask, test->true_val, in const_time_tests() 1133 test->mask, test->true_val, test->false_val); in const_time_tests() 1142 if (const_time_select_int(test->mask, test->true_val, in const_time_tests() 1146 test->mask, test->true_val, test->false_val); in const_time_tests() 1155 if (const_time_select_u8(test->mask, test->true_val, in const_time_tests() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | const_time.h | 95 * @true_val: Value to select for the true case 97 * Returns: true_val if mask == -1, false_val if mask == 0 100 unsigned int true_val, in const_time_select() 103 return (mask & true_val) | (~mask & false_val); in const_time_select() 110 * @true_val: Value to select for the true case 112 * Returns: true_val if mask == -1, false_val if mask == 0 114 static inline int const_time_select_int(unsigned int mask, int true_val, in const_time_select_int() argument 117 return (int) const_time_select(mask, (unsigned int) true_val, in const_time_select_int() 125 * @true_val: Value to select for the true case 127 * Returns: true_val i 99 const_time_select(unsigned int mask, unsigned int true_val, unsigned int false_val) const_time_select() argument 129 const_time_select_u8(u8 mask, u8 true_val, u8 false_val) const_time_select_u8() argument 142 const_time_select_s8(u8 mask, s8 true_val, s8 false_val) const_time_select_s8() argument 161 const_time_select_bin(u8 mask, const u8 *true_val, const u8 *false_val, size_t len, u8 *dst) const_time_select_bin() argument [all...] |
H A D | utils_module_tests.c | 980 unsigned int true_val; in const_time_tests() member 997 int true_val; in const_time_tests() member 1012 u8 true_val; in const_time_tests() member 1027 s8 true_val; in const_time_tests() member 1040 u8 *true_val; in const_time_tests() member 1130 if (const_time_select(test->mask, test->true_val, in const_time_tests() 1134 test->mask, test->true_val, test->false_val); in const_time_tests() 1143 if (const_time_select_int(test->mask, test->true_val, in const_time_tests() 1147 test->mask, test->true_val, test->false_val); in const_time_tests() 1156 if (const_time_select_u8(test->mask, test->true_val, in const_time_tests() [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | raw-machine-assembler.cc | 542 void RawMachineAssembler::Branch(Node* condition, RawMachineLabel* true_val, in Branch() argument 551 schedule()->AddGoto(true_block, Use(true_val)); in Branch()
|
H A D | raw-machine-assembler.h | 1020 void Branch(Node* condition, RawMachineLabel* true_val,
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | ast_to_hir.cpp | 6597 ir_rvalue *const true_val = new (ctx) ir_constant(true); in hir() local 6601 true_val)); in hir()
|