/third_party/boost/libs/spirit/classic/phoenix/test/ |
D | binders_tests.cpp | 27 void operator()(int n0) { cout << "got 1 arg " << n0 << " \n"; } in operator ()() 28 void operator()(int n0, int n1) { cout << "got 2 args " << n0 << ", " << n1 << " \n"; } in operator ()() 31 void foo1(int n0) { cout << "print_::foo1 " << n0 << " \n"; } in foo1() 32 void foo2(int n0, int n1) { cout << "print_::foo2 " << n0 << ", " << n1 << " \n"; } in foo2() 49 void foo1(int n0) // a function w/ 1 arg in foo1() argument 50 { cout << "foo1 " << n0 << " \n"; } in foo1() 52 void foo2(int n0, int n1) // a function w/ 2 args in foo2() argument 53 { cout << "foo2 " << n0 << ", " << n1 << " \n"; } in foo2() 55 void foo3_(int n0, int n1, int n2) // a function w/ 3 args in foo3_() argument 56 { cout << "foo3 " << n0 << ", " << n1 << ", " << n2 << " \n"; } in foo3_()
|
/third_party/openssl/crypto/bn/asm/ |
D | armv8-mont.pl | 63 $n0="x4"; # const BN_ULONG *n0, 88 ldr $n0,[$n0] // *n0 98 mul $m1,$lo0,$n0 // "tp[0]"*n0 169 mul $m1,$lo0,$n0 307 ldr $n0,[$n0] // *n0 337 str $n0,[x29,#112] // offload n0 505 mov $n0,$a0 550 mul $t0,$a0,$n0 552 mul $t1,$a1,$n0 554 mul $t2,$a2,$n0 [all …]
|
D | armv4-mont.pl | 80 $n0="r8"; 157 ldr $n0,[$_n0] @ &n0 161 ldr $n0,[$n0] @ *n0 165 str $n0,[$_n0] @ save n0 value 166 mul $n0,$alo,$n0 @ "tp[0]"*n0 168 umlal $alo,$nlo,$nj,$n0 @ np[0]*n0+"t[0]" 178 umlal $nlo,$nhi,$nj,$n0 @ np[j]*n0 188 ldr $n0,[$_n0] @ restore n0 207 mul $n0,$alo,$n0 209 umlal $alo,$nlo,$nj,$n0 @ np[0]*n0+"tp[0]" [all …]
|
D | ppc-mont.pl | 105 $n0="r7"; 168 $LD $n0,0($n0) ; pull n0[0] value 180 $UMULL $m1,$lo0,$n0 ; "tp[0]"*n0 244 $UMULL $m1,$lo0,$n0 ; tp[0]*n0 419 $LD $n0,0($n0) # *n0 461 $UMULL $mi,$acc0,$n0 # t[0]*n0 468 # (*) mul $t0,$m0,$mi # lo(n[0..3]*t[0]*n0) 469 $STU $mi,$SIZE_T($tp) # put aside t[0]*n0 for tail processing 487 $UMULH $t0,$m0,$mi # hi(n[0..3]*t[0]*n0) 510 $LD $mi,$SIZE_T*8($sp) # a[0]*n0 [all …]
|
D | s390x-mont.pl | 77 $n0="%r6"; # const BN_ULONG *n0, 128 lg $n0,0($n0) # pull n0 129 _dswap $n0 138 lgr $mn0,$alo # "tp[0]"*n0 139 msgr $mn0,$n0 191 msgr $mn0,$n0 # tp[0]*n0
|
D | sparcv9-mont.pl | 60 $n0="%i4"; # const BN_ULONG *n0, 104 ld [$n0],$n0 127 mulx $n0,$acc0,$mul1 ! "t[0]"*n0 130 mulx $car1,$mul1,$car1 ! np[0]*"t[0]"*n0 131 mulx $npj,$mul1,$acc1 !prologue! np[1]*"t[0]"*n0 198 mulx $n0,$acc0,$mul1 312 mulx $n0,$acc0,$mul1 ! "t[0]"*n0 316 mulx $car1,$mul1,$car1 ! np[0]*"t[0]"*n0 388 mulx $n0,$tmp0,$mul1 461 mulx $n0,$tmp1,$mul1 [all …]
|
D | x86_64-mont.pl | 88 $n0="%r8"; # const BN_ULONG *n0, 178 mov ($n0),$n0 # pull n0[0] value 185 mov $n0,$m1 190 imulq $lo0,$m1 # "tp[0]"*n0 246 mov $n0,$m1 253 imulq $lo0,$m1 # tp[0]*n0 425 mov ($n0),$n0 # pull n0[0] value 432 mov $n0,$m1 437 imulq $A[0],$m1 # "tp[0]"*n0 569 mov $n0,$m1 [all …]
|
/third_party/openssl/crypto/ |
D | sparcv9cap.c | 29 const BN_ULONG *np, const BN_ULONG *n0, int num) in bn_mul_mont() argument 32 const BN_ULONG *np, const BN_ULONG *n0, int num); in bn_mul_mont() 34 const BN_ULONG *np, const BN_ULONG *n0, int num); in bn_mul_mont() 36 const BN_ULONG *np, const BN_ULONG *n0, int num); in bn_mul_mont() 45 const BN_ULONG *n0); in bn_mul_mont() 48 const BN_ULONG *n0); in bn_mul_mont() 51 const BN_ULONG *n0); in bn_mul_mont() 54 const BN_ULONG *n0); in bn_mul_mont() 57 const BN_ULONG *n0); in bn_mul_mont() 64 if ((*worker) (rp, ap, bp, np, n0)) in bn_mul_mont() [all …]
|
/third_party/boost/libs/beast/test/beast/core/ |
D | _detail_varint.cpp | 23 std::size_t n0 = 0; in testVarint() local 28 BOOST_ASSERT(sizeof(buf) >= varint_size(n0)); in testVarint() 30 varint_write(it, n0); in testVarint() 33 BEAST_EXPECT(n == n0); in testVarint() 34 n = n0 + n1; in testVarint() 37 n0 = n1; in testVarint()
|
/third_party/lwip/src/netif/ppp/ |
D | vj.c | 503 struct pbuf *n0 = *nb; in vj_uncompress_tcp() local 508 cp = (u8_t*)n0->payload; in vj_uncompress_tcp() 593 vjlen = (u16_t)(cp - (u8_t*)n0->payload); in vj_uncompress_tcp() 594 if (n0->len < vjlen) { in vj_uncompress_tcp() 600 n0->len, vjlen)); in vj_uncompress_tcp() 605 tmp = n0->tot_len - vjlen + cs->cs_hlen; in vj_uncompress_tcp() 608 IPH_LEN_SET(&cs->cs_ip, lwip_htons(n0->tot_len - vjlen + cs->cs_hlen)); in vj_uncompress_tcp() 622 if (pbuf_remove_header(n0, vjlen)) { in vj_uncompress_tcp() 628 if(LWIP_MEM_ALIGN(n0->payload) != n0->payload) { in vj_uncompress_tcp() 636 np = pbuf_alloc(PBUF_LINK, n0->len + cs->cs_hlen, PBUF_POOL); in vj_uncompress_tcp() [all …]
|
/third_party/openssl/crypto/bn/ |
D | bn_exp.c | 671 mont->n0[0]); in BN_mod_exp_mont_consttime() 680 RSAZ_512_mod_exp(rr->d, a->d, p->d, m->d, mont->n0[0], mont->RR.d); in BN_mod_exp_mont_consttime() 763 const BN_ULONG *n0, const void *table, in BN_mod_exp_mont_consttime() 766 const BN_ULONG *n0, const void *table, in BN_mod_exp_mont_consttime() 769 const BN_ULONG *n0, const void *table, in BN_mod_exp_mont_consttime() 772 const BN_ULONG *n0, const void *table, in BN_mod_exp_mont_consttime() 775 const BN_ULONG *n0, const void *table, in BN_mod_exp_mont_consttime() 785 const BN_ULONG *n0); in BN_mod_exp_mont_consttime() 787 const BN_ULONG *np, const BN_ULONG *n0); in BN_mod_exp_mont_consttime() 790 const BN_ULONG *n0); in BN_mod_exp_mont_consttime() [all …]
|
D | bn_mont.c | 48 if (bn_mul_mont(r->d, a->d, b->d, mont->N.d, mont->n0, num)) { in bn_mul_mont_fixed_top() 91 BN_ULONG *ap, *np, *rp, n0, v, carry; in bn_from_montgomery_word() local 118 n0 = mont->n0[0]; in bn_from_montgomery_word() 126 v = bn_mul_add_words(rp, np, nl, (rp[0] * n0) & BN_MASK2); in bn_from_montgomery_word() 248 ctx->n0[0] = ctx->n0[1] = 0; in BN_MONT_CTX_init() 338 mont->n0[0] = (Ri->top > 0) ? Ri->d[0] : 0; in BN_MONT_CTX_set() 339 mont->n0[1] = (Ri->top > 1) ? Ri->d[1] : 0; in BN_MONT_CTX_set() 368 mont->n0[0] = (Ri->top > 0) ? Ri->d[0] : 0; in BN_MONT_CTX_set() 369 mont->n0[1] = 0; in BN_MONT_CTX_set() 423 to->n0[0] = from->n0[0]; in BN_MONT_CTX_copy() [all …]
|
D | bn_div.c | 174 # define bn_div_words(n0,n1,d0) \ argument 178 : "a"(n1), "d"(n0), "r"(d0) \ 188 # define bn_div_words(n0,n1,d0) \ argument 192 : "a"(n1), "d"(n0), "r"(d0) \ 348 BN_ULONG n0, n1, rem = 0; in bn_div_fixed_top() local 350 n0 = wnumtop[0]; in bn_div_fixed_top() 352 if (n0 == d0) in bn_div_fixed_top() 360 q = (BN_ULONG)(((((BN_ULLONG) n0) << BN_BITS2) | n1) / d0); in bn_div_fixed_top() 362 q = bn_div_words(n0, n1, d0); in bn_div_fixed_top() 386 q = bn_div_words(n0, n1, d0); in bn_div_fixed_top()
|
/third_party/ffmpeg/libavdevice/tests/ |
D | timefilter.c | 31 double n0, n1; in main() local 36 for (n0 = 0; n0 < 40; n0 = 2 * n0 + 1) { in main() 39 double bestpar0 = n0 ? 1 : 100000; in main() 47 samples[i] = ideal[i] + n0 * (av_lfg_get(&prng) - LFG_MAX / 2) / (LFG_MAX * 10LL); in main()
|
/third_party/boost/boost/random/ |
D | independent_bits.hpp | 149 std::size_t w0, n0; in operator ()() local 152 calc_params(n, range, w0, n0, y0, y1, y0_mask, y1_mask); in operator ()() 156 calc_params(n, range, w0, n0, y0, y1, y0_mask, y1_mask); in operator ()() 159 BOOST_ASSERT(n0*w0 + (n - n0)*(w0 + 1) == w); in operator ()() 165 BOOST_ASSERT(n0 == 1); in operator ()() 174 for(std::size_t k = 0; k < n0; ++k) { in operator ()() 181 for(std::size_t k = 0; k < (n - n0); ++k) { in operator ()() 257 std::size_t& w0, std::size_t& n0, in calc_params() argument 263 n0 = n - w % n; in calc_params()
|
/third_party/mindspore/mindspore/_extends/graph_kernel/expanders/ |
D | conv2d.py | 103 n0, h0, w0, c0 = shape_0 105 if (n0 % N0_CHANNEL_ALIGN) != 0: 106 …raise GKException("N({}) channel of first input should be multiples of {}".format(n0, N0_CHANNEL_A… 113 n0 = ((n0 + N0_CHANNEL_ALIGN - 1) // 127 self.m, self.n, self.k = n0 * h0 * w0, n1, c1 140 if ((n0 * out_h * out_w) % OUT_NHW_ALIGN) != 0: 142 n0, out_h, out_w, OUT_NHW_ALIGN)) 146 self.shape_0_pad = [n0, h0, w0, c0] 152 n0, _, _, c0 = input_0.shape 165 input_0_pad_after[0] = n0_p - n0
|
/third_party/openssl/crypto/ec/ |
D | ecp_smpl.c | 617 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; in ec_GFp_simple_add() local 638 n0 = BN_CTX_get(ctx); in ec_GFp_simple_add() 663 if (!field_sqr(group, n0, b->Z, ctx)) in ec_GFp_simple_add() 665 if (!field_mul(group, n1, a->X, n0, ctx)) in ec_GFp_simple_add() 669 if (!field_mul(group, n0, n0, b->Z, ctx)) in ec_GFp_simple_add() 671 if (!field_mul(group, n2, a->Y, n0, ctx)) in ec_GFp_simple_add() 685 if (!field_sqr(group, n0, a->Z, ctx)) in ec_GFp_simple_add() 687 if (!field_mul(group, n3, b->X, n0, ctx)) in ec_GFp_simple_add() 691 if (!field_mul(group, n0, n0, a->Z, ctx)) in ec_GFp_simple_add() 693 if (!field_mul(group, n4, b->Y, n0, ctx)) in ec_GFp_simple_add() [all …]
|
/third_party/libunwind/tests/ |
D | Gia64-test-stack.c | 58 unw_word_t ip, sp, bsp, v0, v1, v2, v3, n0, n1, n2, n3, cfm, sof, sol, r32; in do_unwind_tests() local 83 n0 = n1 = n2 = n3 = 0; in do_unwind_tests() 86 || (ret = unw_get_reg (&c, UNW_IA64_NAT + reg, &n0)) < 0 in do_unwind_tests() 98 n0 ? '*' : ' ', v0, n1 ? '*' : ' ', v1, in do_unwind_tests() 134 || (ret = unw_get_reg (&c, UNW_IA64_NAT + 33 + l, &n0)) < 0) in do_unwind_tests() 139 if (!n0) in do_unwind_tests() 144 if (n0) in do_unwind_tests()
|
/third_party/mesa3d/src/mesa/program/ |
D | prog_noise.c | 220 float n0, n1; in _mesa_noise1() local 225 n0 = t0 * t0 * grad1(perm[i0 & 0xff], x0); in _mesa_noise1() 233 return 0.25f * (n0 + n1); in _mesa_noise1() 244 float n0, n1, n2; /* Noise contributions from the three corners */ in _mesa_noise2() local 291 n0 = 0.0f; in _mesa_noise2() 294 n0 = t0 * t0 * grad2(perm[ii + perm[jj]], x0, y0); in _mesa_noise2() 315 return 40.0f * (n0 + n1 + n2); /* TODO: The scale factor is preliminary! */ in _mesa_noise2() 327 float n0, n1, n2, n3; /* Noise contributions from the four corners */ in _mesa_noise3() local 433 n0 = 0.0f; in _mesa_noise3() 436 n0 = t0 * t0 * grad3(perm[ii + perm[jj + perm[kk]]], x0, y0, z0); in _mesa_noise3() [all …]
|
/third_party/boost/libs/poly_collection/example/ |
D | perf.cpp | 398 unsigned int n0,unsigned int n1,unsigned int dsav, in insert_perf() argument 404 for(unsigned int s=0,n=n0; in insert_perf() 405 (n=(unsigned int)std::round(n0*std::pow(10.0,s/1000.0)))<=n1; in insert_perf() 444 unsigned int n0,unsigned int n1,unsigned int dsav, in for_each_perf() argument 450 for(unsigned int s=0,n=n0; in for_each_perf() 451 (n=(unsigned int)std::round(n0*std::pow(10.0,s/1000.0)))<=n1; in for_each_perf() 526 unsigned int n0=100,n1=10000000,dsav=50; /* sav for savart */ in main() local 547 if(all||insert_base)insert_perf(n0,n1,dsav,seq,pv,bc); in main() 549 n0,n1,dsav,seq,f,pv,spv,shpv,bc,fbc,rfbc); in main() 571 if(all||insert_function)insert_perf(n0,n1,dsav,seq,fv,fc); in main() [all …]
|
/third_party/mesa3d/src/intel/tools/tests/gen8/ |
D | wait.asm | 1 wait(1) n0<1>UD { align1 WE_all 1N }; 2 wait(1) n0.1<1>UD { align1 WE_all 1N }; 3 wait(1) n0.2<1>UD { align1 WE_all 1N };
|
/third_party/mesa3d/src/intel/tools/tests/gen7/ |
D | wait.asm | 1 wait(1) n0<1>.xUD { align16 WE_all 1N }; 2 wait(1) n0<1>.yUD { align16 WE_all 1N }; 3 wait(1) n0<1>.zUD { align16 WE_all 1N };
|
/third_party/mesa3d/src/intel/tools/tests/gen7.5/ |
D | wait.asm | 1 wait(1) n0<1>.xUD { align16 WE_all 1N }; 2 wait(1) n0<1>.yUD { align16 WE_all 1N }; 3 wait(1) n0<1>.zUD { align16 WE_all 1N };
|
/third_party/mesa3d/src/intel/tools/tests/gen9/ |
D | wait.asm | 1 wait(1) n0<1>UD { align1 WE_all 1N }; 2 wait(1) n0.1<1>UD { align1 WE_all 1N }; 3 wait(1) n0.2<1>UD { align1 WE_all 1N };
|
/third_party/boost/libs/spirit/classic/example/intermediate/ |
D | ipv4.cpp | 129 char prefix_len, n0, n1, n2, n3; member 132 : prefix_len(0),n0(0),n1(0),n2(0),n3(0) {} in ipv4_prefix_data() 172 var(temp.n0) = 0, in definition() 180 anychar_p[var(temp.n0) = arg1] in definition() 230 cout << "n0 = " << as_byte(prefix.n0) << endl; in print_prefix()
|