HomeSort by relevance Sort by last modified time
    Searched refs:true_val (Results 1 - 20 of 20) sorted by null

  /external/wpa_supplicant_8/src/utils/
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,
103 return (mask & true_val) | (~mask & false_val);
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,
117 return (int) const_time_select(mask, (unsigned int) true_val,
125 * @true_val: Value to select for the true case
127 * Returns: true_val if mask == -1, false_val if mask ==
    [all...]
utils_module_tests.c 979 unsigned int true_val; member in struct:const_time_select_test
996 int true_val; member in struct:const_time_select_int_test
1011 u8 true_val; member in struct:const_time_select_u8_test
1026 s8 true_val; member in struct:const_time_select_s8_test
1039 u8 *true_val; member in struct:const_time_select_bin_test
1129 if (const_time_select(test->mask, test->true_val,
1133 test->mask, test->true_val, test->false_val);
1142 if (const_time_select_int(test->mask, test->true_val,
1146 test->mask, test->true_val, test->false_val);
1155 if (const_time_select_u8(test->mask, test->true_val,
    [all...]
  /external/epid-sdk/epid/member/tiny/math/
fq.h 134 \param[in] true_val value to set if condition is true.
138 void FqCondSet(FqElem* result, FqElem const* true_val, FqElem const* false_val,
fq2.h 121 \param[in] true_val value to set if condition is true.
125 void Fq2CondSet(Fq2Elem* result, Fq2Elem const* true_val,
fq6.h 123 \param[in] true_val value to set if condition is true.
127 void Fq6CondSet(Fq6Elem* result, Fq6Elem const* true_val,
efq.h 208 \param[in] true_val value to set if condition is true.
212 void EFqCondSet(EccPointJacobiFq* result, EccPointJacobiFq const* true_val,
vli.h 91 \param[in] true_val value to set if condition is true.
95 void VliCondSet(VeryLargeInt* result, VeryLargeInt const* true_val,
  /external/epid-sdk/epid/member/tiny/math/src/
fq.c 85 void FqCondSet(FqElem* result, FqElem const* true_val, FqElem const* false_val,
87 VliCondSet(&result->limbs, &true_val->limbs, &false_val->limbs, truth_val);
efq2.c 27 EccPointJacobiFq2 const* true_val,
29 Fq2CondSet(&result->X, &true_val->X, &false_val->X, truth_val);
30 Fq2CondSet(&result->Y, &true_val->Y, &false_val->Y, truth_val);
31 Fq2CondSet(&result->Z, &true_val->Z, &false_val->Z, truth_val);
fq6.c 182 void Fq6CondSet(Fq6Elem* result, Fq6Elem const* true_val,
184 Fq2CondSet(&result->y0, &true_val->y0, &false_val->y0, truth_val);
185 Fq2CondSet(&result->y1, &true_val->y1, &false_val->y1, truth_val);
186 Fq2CondSet(&result->y2, &true_val->y2, &false_val->y2, truth_val);
fq2.c 126 void Fq2CondSet(Fq2Elem* result, Fq2Elem const* true_val,
128 FqCondSet(&(result->x0), &(true_val->x0), &(false_val->x0), truth_val);
129 FqCondSet(&(result->x1), &(true_val->x1), &(false_val->x1), truth_val);
fq12.c 48 static void Fq12CondSet(Fq12Elem* result, Fq12Elem const* true_val,
50 Fq6CondSet(&result->z0, &true_val->z0, &false_val->z0, truth_val);
51 Fq6CondSet(&result->z1, &true_val->z1, &false_val->z1, truth_val);
efq.c 344 void EFqCondSet(EccPointJacobiFq* result, EccPointJacobiFq const* true_val,
346 FqCondSet(&result->X, &true_val->X, &false_val->X, truth_val);
347 FqCondSet(&result->Y, &true_val->Y, &false_val->Y, truth_val);
348 FqCondSet(&result->Z, &true_val->Z, &false_val->Z, truth_val);
vli.c 126 void VliCondSet(VeryLargeInt* result, VeryLargeInt const* true_val,
131 (truth_val != 0) * true_val->word[i];
  /external/epid-sdk/epid/member/tiny/math/unittests/
vli-test.cc 179 VeryLargeInt true_val = {{0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, local
183 VliCondSet(&result, &true_val, &false_val, 1);
184 EXPECT_EQ(true_val, result);
188 VeryLargeInt true_val = {{0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, local
192 VliCondSet(&result, &true_val, &false_val, 0);
  /external/openssh/
ssh-pkcs11.c 231 CK_BBOOL true_val = CK_TRUE; local
238 {CKA_SIGN, NULL, sizeof(true_val) }
244 key_filter[2].pValue = &true_val;
  /external/tensorflow/tensorflow/python/kernel_tests/
cond_v2_test.py 595 true_val = sess.run(cond_grad, {pred: True})
596 self.assertEqual(true_val, [27.0])
601 true_val = sess.run(cond_grad_grad, {pred: True})
603 self.assertEqual(true_val, [18.0])
635 true_val = sess.run(cond_grad, {pred: True})
636 self.assertEqual(true_val, [27.0])
641 true_val = sess.run(cond_grad_grad, {pred: True})
643 self.assertEqual(true_val, [18.0])
    [all...]
  /external/v8/src/compiler/
raw-machine-assembler.cc 98 void RawMachineAssembler::Branch(Node* condition, RawMachineLabel* true_val,
104 schedule()->AddBranch(CurrentBlock(), branch, Use(true_val), Use(false_val));
raw-machine-assembler.h     [all...]
  /external/mesa3d/src/compiler/glsl/
ast_to_hir.cpp 6274 ir_rvalue *const true_val = new (ctx) ir_constant(true); local
    [all...]

Completed in 624 milliseconds