Home
last modified time | relevance | path

Searched refs:false_val (Results 1 – 8 of 8) sorted by relevance

/external/wpa_supplicant_8/src/utils/
Dconst_time.h101 unsigned int false_val) in const_time_select() argument
103 return (mask & true_val) | (~mask & false_val); in const_time_select()
115 int false_val) in const_time_select_int() argument
118 (unsigned int) false_val); in const_time_select_int()
129 static inline u8 const_time_select_u8(u8 mask, u8 true_val, u8 false_val) in const_time_select_u8() argument
131 return (u8) const_time_select(mask, true_val, false_val); in const_time_select_u8()
142 static inline s8 const_time_select_s8(u8 mask, s8 true_val, s8 false_val) in const_time_select_s8() argument
145 (unsigned int) false_val); in const_time_select_s8()
162 const u8 *false_val, size_t len, in const_time_select_bin() argument
168 dst[i] = const_time_select_u8(mask, true_val[i], false_val[i]); in const_time_select_bin()
Dutils_module_tests.c981 unsigned int false_val; in const_time_tests() member
998 int false_val; in const_time_tests() member
1013 u8 false_val; in const_time_tests() member
1028 s8 false_val; in const_time_tests() member
1041 u8 *false_val; in const_time_tests() member
1131 test->false_val) != test->expected) { in const_time_tests()
1134 test->mask, test->true_val, test->false_val); in const_time_tests()
1144 test->false_val) != test->expected) { in const_time_tests()
1147 test->mask, test->true_val, test->false_val); in const_time_tests()
1157 test->false_val) != test->expected) { in const_time_tests()
[all …]
/external/tensorflow/tensorflow/python/autograph/operators/
Dconditional_expressions.py38 false_val = []
42 if true_val and false_val:
43 control_flow.verify_single_cond_var(expr_repr, true_val[0], false_val[0])
47 false_val.append(if_false())
48 if true_val and false_val:
49 control_flow.verify_single_cond_var(expr_repr, true_val[0], false_val[0])
50 return false_val[0]
/external/openssh/
Dssh-pkcs11.c1313 CK_BBOOL true_val = CK_TRUE, false_val = CK_FALSE; in pkcs11_rsa_generate_private_key() local
1329 FILL_ATTR(tpub, npub, CKA_ENCRYPT, &false_val, sizeof(false_val)); in pkcs11_rsa_generate_private_key()
1331 FILL_ATTR(tpub, npub, CKA_VERIFY_RECOVER, &false_val, in pkcs11_rsa_generate_private_key()
1332 sizeof(false_val)); in pkcs11_rsa_generate_private_key()
1333 FILL_ATTR(tpub, npub, CKA_WRAP, &false_val, sizeof(false_val)); in pkcs11_rsa_generate_private_key()
1334 FILL_ATTR(tpub, npub, CKA_DERIVE, &false_val, sizeof(false_val)); in pkcs11_rsa_generate_private_key()
1344 FILL_ATTR(tpriv, npriv, CKA_DECRYPT, &false_val, sizeof(false_val)); in pkcs11_rsa_generate_private_key()
1346 FILL_ATTR(tpriv, npriv, CKA_SIGN_RECOVER, &false_val, in pkcs11_rsa_generate_private_key()
1347 sizeof(false_val)); in pkcs11_rsa_generate_private_key()
1348 FILL_ATTR(tpriv, npriv, CKA_UNWRAP, &false_val, sizeof(false_val)); in pkcs11_rsa_generate_private_key()
[all …]
/external/llvm-project/mlir/test/Dialect/SCF/
Dbufferize.mlir17 func @if(%pred: i1, %true_val: tensor<?xf32>, %false_val: tensor<?xf32>) -> tensor<?xf32> {
21 scf.yield %false_val : tensor<?xf32>
/external/llvm/lib/Target/Hexagon/
DHexagonSelectCCInfo.td77 // Convert Rd = selectcc(p0, p1, true_val, false_val, SETEQ) into:
79 // Rd = mux(pt, true_val, false_val)
/external/tensorflow/tensorflow/python/kernel_tests/
Dcond_v2_test.py685 false_val = sess.run(cond_grad, {pred: False})
686 self.assertEqual(false_val, [1.0])
691 false_val = sess.run(cond_grad_grad, {pred: False})
693 self.assertEqual(false_val, [0.0])
725 false_val = sess.run(cond_grad, {pred: False})
726 self.assertEqual(false_val, [1.0])
731 false_val = sess.run(cond_grad_grad, {pred: False})
733 self.assertEqual(false_val, [0.0])
/external/mesa3d/src/compiler/glsl/
Dast_to_hir.cpp6703 ir_rvalue *const false_val = new (ctx) ir_constant(false); in hir() local
6707 false_val)); in hir()