/external/libnetfilter_conntrack/src/expect/ |
D | compare.c | 14 const struct nf_expect *exp1, in exp_cmp() argument 17 int (*cmp)(const struct nf_expect *exp1, in exp_cmp() argument 21 int a = test_bit(attr, exp1->set); in exp_cmp() 25 return cmp(exp1, exp2, flags); in exp_cmp() 29 test_bit(attr, exp1->set)) { in exp_cmp() 38 cmp_exp_master(const struct nf_expect *exp1, const struct nf_expect *exp2, in cmp_exp_master() argument 41 return __cmp_orig((struct nf_conntrack *)&exp1->master, in cmp_exp_master() 46 cmp_exp_expected(const struct nf_expect *exp1, const struct nf_expect *exp2, in cmp_exp_expected() argument 49 return __cmp_orig((struct nf_conntrack *)&exp1->expected, in cmp_exp_expected() 54 cmp_exp_mask(const struct nf_expect *exp1, const struct nf_expect *exp2, in cmp_exp_mask() argument [all …]
|
D | api.c | 126 int nfexp_cmp(const struct nf_expect *exp1, const struct nf_expect *exp2, in nfexp_cmp() argument 129 assert(exp1 != NULL); in nfexp_cmp() 132 return __cmp_expect(exp1, exp2, flags); in nfexp_cmp()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_cse_test.cc | 227 auto exp1 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local 234 builder.AddInstruction(HloInstruction::CreateTuple({exp1, exp2, exp3})); in TEST_F() 240 EXPECT_THAT(tuple, op::Tuple(exp1, exp2, exp3)); in TEST_F() 247 EXPECT_THAT(first_operand, ::testing::AnyOf(exp1, exp2, exp3)); in TEST_F() 431 auto exp1 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local 433 *exp1->mutable_shape()->mutable_layout() = LayoutUtil::MakeLayout({0, 1}); in TEST_F() 440 builder.AddInstruction(HloInstruction::CreateTuple({exp1, exp2})); in TEST_F() 446 EXPECT_THAT(tuple, op::Tuple(exp1, exp2)); in TEST_F() 452 EXPECT_THAT(tuple, op::Tuple(exp1, exp2)); in TEST_F() 462 auto exp1 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local [all …]
|
D | hlo_instruction_test.cc | 188 auto exp1 = builder.AddInstruction( in TEST_F() local 199 EXPECT_EQ(0, exp1->user_count()); in TEST_F() 668 auto exp1 = builder.AddInstruction( in TEST_F() local 671 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, exp1)); in TEST_F() 678 {exp3, exp2, exp1}, HloInstruction::FusionKind::kLoop); in TEST_F() 689 auto exp1 = builder.AddInstruction( in TEST_F() local 692 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, exp1)); in TEST_F() 695 exp1->set_metadata(metadata); in TEST_F() 701 {exp2, exp1}, HloInstruction::FusionKind::kLoop); in TEST_F()
|
/external/llvm-project/polly/lib/External/isl/ |
D | isl_lp.c | 259 int *exp1 = NULL; in isl_basic_set_opt_lp_val_aligned() local 286 exp1 = isl_alloc_array(ctx, int, bset_n_div); in isl_basic_set_opt_lp_val_aligned() 288 if (!bset_div || (bset_n_div && !exp1) || (obj_n_div && !exp2)) in isl_basic_set_opt_lp_val_aligned() 291 div = isl_merge_divs(bset_div, obj->ls->div, exp1, exp2); in isl_basic_set_opt_lp_val_aligned() 293 bset = isl_basic_set_expand_divs(bset, isl_mat_copy(div), exp1); in isl_basic_set_opt_lp_val_aligned() 300 free(exp1); in isl_basic_set_opt_lp_val_aligned() 309 free(exp1); in isl_basic_set_opt_lp_val_aligned()
|
D | isl_ilp.c | 363 int *exp1 = NULL; in isl_basic_set_opt() local 394 exp1 = isl_alloc_array(ctx, int, bset_n_div); in isl_basic_set_opt() 396 if (!bset_div || (bset_n_div && !exp1) || (obj_n_div && !exp2)) in isl_basic_set_opt() 399 div = isl_merge_divs(bset_div, obj->ls->div, exp1, exp2); in isl_basic_set_opt() 401 bset = isl_basic_set_expand_divs(bset, isl_mat_copy(div), exp1); in isl_basic_set_opt() 408 free(exp1); in isl_basic_set_opt() 417 free(exp1); in isl_basic_set_opt()
|
D | isl_local_space.c | 737 __isl_keep isl_mat *div2, int *exp1, int *exp2) in isl_merge_divs() argument 755 expand_row(div, k, div1, i, exp1); in isl_merge_divs() 760 exp1[i++] = k; in isl_merge_divs() 763 exp1[i++] = k; in isl_merge_divs() 770 expand_row(div, k, div1, i, exp1); in isl_merge_divs() 771 exp1[i] = k; in isl_merge_divs() 812 int *exp1 = NULL; in isl_local_space_intersect() local 835 exp1 = isl_alloc_array(ctx, int, ls1->div->n_row); in isl_local_space_intersect() 837 if (!exp1 || !exp2) in isl_local_space_intersect() 840 div = isl_merge_divs(ls1->div, ls2->div, exp1, exp2); in isl_local_space_intersect() [all …]
|
D | isl_local_space_private.h | 35 __isl_keep isl_mat *div2, int *exp1, int *exp2);
|
/external/python/rsa/rsa/ |
D | key.py | 399 self.exp1 = int(d % (p - 1)) 411 return self.n, self.e, self.d, self.p, self.q, self.exp1, self.exp2, self.coef 415 self.n, self.e, self.d, self.p, self.q, self.exp1, self.exp2, self.coef = state 429 self.exp1 == other.exp1 and 437 return hash((self.n, self.e, self.d, self.p, self.q, self.exp1, self.exp2, self.coef)) 513 exp1, exp2, coef = map(int, priv[6:9]) 515 if (key.exp1, key.exp2, key.coef) != (exp1, exp2, coef): 556 asn_key.setComponentByName('exponent1', self.exp1)
|
/external/antlr/runtime/ObjC/Framework/ |
D | UnwantedTokenException.m | 70 NSString *exp1 = [NSString stringWithFormat:@", expected %d", expecting]; 72 exp1 = @""; 75 return [NSString stringWithFormat:@"UnwantedTokenException(found=%@)", exp1]; 77 return [NSString stringWithFormat:@"UnwantedTokenException(found=%@ %@", token.text, exp1];
|
/external/libtextclassifier/native/utils/math/ |
D | fastexp.h | 40 int32 exp1[1 << kBits]; member 49 | cache_.exp1[x & kMask1]; in VeryFastExp2()
|
/external/libtextclassifier/native/lang_id/common/math/ |
D | fastexp.h | 42 int32 exp1[1 << kBits]; member 51 | cache_.exp1[x & kMask1]; in VeryFastExp2()
|
/external/ltp/testcases/realtime/func/pi-tests/ |
D | parse-testpi1.py | 37 exp1= re.compile("pthread pol 0 pri 0") 42 if exp1.search(line) and exp2.search(prev_line)and exp3.search(prev_line):
|
D | parse-testpi2.py | 38 exp1= re.compile("pthread pol 2 pri 10") 45 if exp1.search(line) and exp2.search(prev_line) and exp3.search(prev_line):
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | cpu_instruction_fusion_test.cc | 76 HloInstruction* exp1 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local 79 MakeDot(ShapeUtil::MakeShape(F32, {1024}), arg0, exp1)); in TEST_F() 138 HloInstruction* exp1 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local 141 MakeDot(ShapeUtil::MakeShape(F32, {256}), arg0, exp1)); in TEST_F() 157 HloInstruction* exp1 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local 160 MakeDot(ShapeUtil::MakeShape(F32, {2, 1024}), arg0, exp1)); in TEST_F() 319 HloInstruction* exp1 = builder.AddInstruction( in TEST_F() local 322 builder.AddInstruction(HloInstruction::CreateReshape(result_shape, exp1)); in TEST_F() 413 HloInstruction* exp1 = builder.AddInstruction( in TEST_F() local 416 HloInstruction::CreateUnary(param_shape, HloOpcode::kNegate, exp1)); in TEST_F() [all …]
|
/external/mesa3d/src/compiler/nir/ |
D | nir_lower_flrp.c | 274 int exp1; in sources_are_constants_with_similar_magnitudes() local 277 frexpf(val1[swizzle1[i]].f32, &exp1); in sources_are_constants_with_similar_magnitudes() 285 if (abs(exp0 - exp1) > (23 / 2)) in sources_are_constants_with_similar_magnitudes() 291 int exp1; in sources_are_constants_with_similar_magnitudes() local 294 frexp(val1[swizzle1[i]].f64, &exp1); in sources_are_constants_with_similar_magnitudes() 302 if (abs(exp0 - exp1) > (52 / 2)) in sources_are_constants_with_similar_magnitudes()
|
/external/python/rsa/tests/ |
D | test_load_save_keys.py | 83 self.assertEqual(key.exp1, 55063) 113 self.assertEqual(key.exp1, 55063) 154 self.assertEqual(key.exp1, 55063)
|
D | test_key.py | 56 self.assertEqual(pk.exp1, 55063)
|
/external/lua/src/ |
D | lobject.c | 198 int exp1 = 0; /* exponent value */ in lua_strx2number() local 205 exp1 = exp1 * 10 + *(s++) - '0'; in lua_strx2number() 206 if (neg1) exp1 = -exp1; in lua_strx2number() 207 e += exp1; in lua_strx2number()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | instruction_fusion_test.cc | 39 HloInstruction* exp1 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local 43 ShapeUtil::MakeShape(F32, {1}), exp1, {})); in TEST_F() 79 HloInstruction* exp1 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local 82 HloInstruction::CreateReshape(ShapeUtil::MakeShape(F32, {}), exp1)); in TEST_F() 98 HloInstruction* exp1 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local 101 HloInstruction::CreateTranspose(ShapeUtil::MakeShape(F32, {}), exp1, {})); in TEST_F()
|
/external/llvm-project/libclc/amdgpu/lib/math/ |
D | sqrt.cl | 50 unsigned exp1 = vcc ? 0xffffff80 : 0; 65 v23 = ldexp(v23, exp1);
|
/external/rust/crates/quiche/src/ |
D | octets.rs | 1099 let mut exp1 = b"hello".to_vec(); in split_at() localVariable 1100 assert_eq!(first.as_ref(), &mut exp1[..]); in split_at() 1110 let mut exp1 = b"helloworld".to_vec(); in split_at() localVariable 1111 assert_eq!(first.as_ref(), &mut exp1[..]); in split_at() 1121 let mut exp1 = b"helloworl".to_vec(); in split_at() localVariable 1122 assert_eq!(first.as_ref(), &mut exp1[..]); in split_at()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/ |
D | cpu_fusion_test.cc | 304 auto exp1 = builder.AddInstruction( in TEST_F() local 307 HloInstruction::CreateUnary(shape, HloOpcode::kNegate, exp1)); in TEST_F()
|
/external/libnetfilter_conntrack/include/internal/ |
D | prototypes.h | 53 int __cmp_expect(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags);
|
/external/llvm-project/llvm/test/Transforms/SLPVectorizer/X86/ |
D | call.ll | 87 %exp1 = tail call double @exp2(double %a0) nounwind readnone 89 store double %exp1, double* %b, align 8
|