Home
last modified time | relevance | path

Searched refs:l3 (Results 1 – 25 of 60) sorted by relevance

123

/external/valgrind/main/none/tests/s390x/
Dclcle.c15 register unsigned long l3 asm ("5") = *_l3; in clcle()
23 :"=d" (cc), "+d" (a1),"+d" (l1), "+d" (a3), "+d" (l3) in clcle()
29 *_l3 = l3; in clcle()
37 unsigned long a1,a3,l1,l3; in testrun() local
40 a1 = (unsigned long) _a1; l1 = _l1; a3 = (unsigned long) _a3; l3 = _l3; in testrun()
41 cc = clcle(&a1, &l1, &a3, &l3, pad); in testrun()
43 cc, l1, _l1, l3, _l3, a1-(unsigned long) _a1, a3-(unsigned long) _a3); in testrun()
47 void multiplex(unsigned long l1, unsigned long l3, char pad) in multiplex() argument
49 testrun(b1, l1, b1, l3, pad); in multiplex()
50 testrun(b1, l1, b2, l3, pad); in multiplex()
[all …]
/external/dropbear/libtomcrypt/testprof/
Dpkcs_1_test.c9 unsigned long x, y, l1, l2, l3, i1, i2, lparamlen, saltlen, modlen; in pkcs_1_test() local
27 l3 = (rand() & 31) + 8; in pkcs_1_test()
28 for (y = 0; y < l3; y++) buf[0][y] = rand() & 255; in pkcs_1_test()
41 …DO(pkcs_1_oaep_encode(buf[0], l3, lparam, lparamlen, modlen, &yarrow_prng, prng_idx, hash_idx, buf… in pkcs_1_test()
47 if (res1 != 1 || l2 != l3 || memcmp(buf[2], buf[0], l3) != 0) { in pkcs_1_test()
48 …hould have been %lu, res1 = %d, lparamlen = %lu, msg contents follow.\n", l2, l3, res1, lparamlen); in pkcs_1_test()
50 for (x = 0; x < l3; x++) { in pkcs_1_test()
63 … DO(pkcs_1_pss_encode(buf[0], l3, saltlen, &yarrow_prng, prng_idx, hash_idx, modlen, buf[1], &l1)); in pkcs_1_test()
64 DO(pkcs_1_pss_decode(buf[0], l3, buf[1], l1, saltlen, hash_idx, modlen, &res1)); in pkcs_1_test()
66 buf[0][i1 = abs(rand()) % l3] ^= 1; in pkcs_1_test()
[all …]
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
DPropertyChangeSupportTest.java76 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", in testAddPropertyChangeListener_PropertyChangeListener_Normal() local
79 l3); in testAddPropertyChangeListener_PropertyChangeListener_Normal()
87 sup.addPropertyChangeListener(l3); in testAddPropertyChangeListener_PropertyChangeListener_Normal()
91 assertNotSame(l3, sup.getPropertyChangeListeners()[0]); in testAddPropertyChangeListener_PropertyChangeListener_Normal()
97 assertNotSame(l3, ((PropertyChangeListenerProxy) sup in testAddPropertyChangeListener_PropertyChangeListener_Normal()
147 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", in testAddPropertyChangeListener_PropertyChangeListener_String_Normal() local
159 sup.addPropertyChangeListener("myProp3", l3); in testAddPropertyChangeListener_PropertyChangeListener_String_Normal()
163 assertNotSame(l3, ((PropertyChangeListenerProxy) listeners[0]) in testAddPropertyChangeListener_PropertyChangeListener_String_Normal()
165 assertNotSame(l3, listeners[0]); in testAddPropertyChangeListener_PropertyChangeListener_String_Normal()
177 assertNotSame(l3, ((PropertyChangeListenerProxy) listeners[0]) in testAddPropertyChangeListener_PropertyChangeListener_String_Normal()
[all …]
/external/eigen/bench/
Dcheck_cache_queries.cpp22 int l1, l2, l3; in main() local
23 internal::queryCacheSizes(l1, l2, l3); in main()
24 cout << "Eigen's L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
43 internal::queryCacheSizes_intel_codes(l1, l2, l3); in main()
44 cout << "Eigen's intel codes L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
47 internal::queryCacheSizes_intel_direct(l1, l2, l3); in main()
48 cout << "Eigen's intel direct L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
50 internal::queryCacheSizes_amd(l1, l2, l3); in main()
51 cout << "Eigen's amd L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
57 l1 = l2 = l3 = 0; in main()
/external/eigen/Eigen/src/Core/util/
DMemory.h763 inline void queryCacheSizes_intel_direct(int& l1, int& l2, int& l3)
766 l1 = l2 = l3 = 0;
787 case 3: l3 = cache_size; break;
795 inline void queryCacheSizes_intel_codes(int& l1, int& l2, int& l3)
799 l1 = l2 = l3 = 0;
819 …case 0x22: l3 = 512; break; // code and data L3 cache, 512 KB, 4 ways (!), 64 byte lines, dual-s…
820 …case 0x23: l3 = 1024; break; // code and data L3 cache, 1024 KB, 8 ways, 64 byte lines, dual-sec…
821 …case 0x25: l3 = 2048; break; // code and data L3 cache, 2048 KB, 8 ways, 64 byte lines, dual-sec…
822 …case 0x29: l3 = 4096; break; // code and data L3 cache, 4096 KB, 8 ways, 64 byte lines, dual-sec…
835 case 0x46: l3 = 4096; break; // code and data L3 cache, 4096 KB, 4 ways, 64 byte lines
[all …]
/external/clang/test/SemaCXX/
Dexceptions.cpp39 goto l3; // expected-error {{goto into protected scope}} in jumps()
46 goto l3; // expected-error {{goto into protected scope}} in jumps()
50 l3: in jumps()
53 goto l3; in jumps()
60 goto l3; // expected-error {{goto into protected scope}} in jumps()
67 goto l3; // expected-error {{goto into protected scope}} in jumps()
/external/clang/test/CodeGenObjC/
Dproperty-complex.m46 _Complex float l3 = a0->iv0;
55 printf("l3: %.2f + %.2fi\n", __real l3, __imag l3);
Dassign.m28 int l3 = (a.x0 += 1);
/external/openssl/crypto/sha/asm/
Dsha512-sparcv9.pl100 $D="%l3";
169 ld [$inp+12],%l3
195 ld [%sp+`$bias+$frame+(($i+1+1)%16)*$SZ+4`],%l3
340 or %l3,$tmp0,$tmp0
345 ld [%sp+`$bias+$frame+(($i+1+1)%16)*$SZ+4`],%l3
529 ld [$ctx+`1*$SZ+4`],%l3
538 or %l3,$tmp1,$tmp1
555 ld [$ctx+`5*$SZ+4`],%l3
564 or %l3,$tmp1,$tmp1
/external/llvm/test/Transforms/LoopUnroll/
Dscevunroll.ll104 ; CHECK: l3:
111 %iv1 = phi i32 [ 0, %entry ], [ %inc1, %l3 ]
112 %iv2 = phi i32 [ 0, %entry ], [ %inc2, %l3 ]
121 br i1 %cmp2, label %l3, label %exit2
122 l3:
/external/libsepol/include/sepol/policydb/
Dmls_types.h86 #define mls_level_between(l1, l2, l3) \ argument
87 (mls_level_dom((l1), (l2)) && mls_level_dom((l3), (l1)))
/external/libvpx/libvpx/vp8/encoder/x86/
Ddenoising_sse2.c42 const __m128i l3 = _mm_set1_epi8( in vp8_denoiser_filter_sse2() local
76 adj = _mm_sub_epi8(l3, adj2); in vp8_denoiser_filter_sse2()
/external/openssl/crypto/aes/asm/
Daes-sparcv9.pl54 $acc12="%l3";
545 ldub [%i0+3],%l3
552 or %l3,%l2,%l2
567 ldub [%i0+11],%l3
574 or %l3,%l2,%l2
1091 ldub [%i0+3],%l3
1098 or %l3,%l2,%l2
1113 ldub [%i0+11],%l3
1120 or %l3,%l2,%l2
/external/llvm/unittests/ADT/
DHashingTest.cpp403 const LargeTestInteger l3 = { { in TEST() local
413 hash_combine(bigarr[0], bigarr[1], l3)); in TEST()
417 hash_combine(li, bigarr[0], bigarr[1], l3)); in TEST()
419 hash_combine(bigarr[0], l2, bigarr[9], l3)); in TEST()
421 hash_combine(bigarr[0], l2, bigarr[9], l3, bigarr[18], bigarr[19])); in TEST()
/external/v8/test/mjsunit/
Dbreak.js76 l1: l2: l3: break l2; // nop
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Ddefault-arguments.cpp19 …auto l3 = [](int i = foo) {}; // expected-error{{default argument references local variable 'foo' … in defargs_errors() local
/external/opencv/cvaux/src/
Dcvlmeds.cpp408 double l1, l2, l3, d1, d2, value; in icvMedian() local
425 l3 = F[6] * mr[i3] + F[7] * mr[i3 + 1] + F[8]; in icvMedian()
427 d1 = (l1 * ml[i3] + l2 * ml[i3 + 1] + l3) / sqrt( l1 * l1 + l2 * l2 ); in icvMedian()
431 l3 = F[2] * ml[i3] + F[5] * ml[i3 + 1] + F[8]; in icvMedian()
433 d2 = (l1 * mr[i3] + l2 * mr[i3 + 1] + l3) / sqrt( l1 * l1 + l2 * l2 ); in icvMedian()
491 double l1, l2, l3, d1, d2, sigma; in icvBoltingPoints() local
511 l3 = F[6] * mr[i] + F[7] * mr[i + 1] + F[8]; in icvBoltingPoints()
513 d1 = (l1 * ml[i] + l2 * ml[i + 1] + l3) / sqrt( l1 * l1 + l2 * l2 ); in icvBoltingPoints()
517 l3 = F[2] * ml[i] + F[5] * ml[i + 1] + F[8]; in icvBoltingPoints()
519 d2 = (l1 * mr[i] + l2 * mr[i + 1] + l3) / sqrt( l1 * l1 + l2 * l2 ); in icvBoltingPoints()
/external/kernel-headers/original/linux/
Datmsap.h135 } l3; member
/external/iproute2/include/linux/
Datmsap.h135 } l3; member
/external/valgrind/main/callgrind/
Dmain.c1700 void branchsim_printstat(int l1, int l2, int l3) in branchsim_printstat() argument
1715 l1, l2, l3); in branchsim_printstat()
1731 VG_(percentify)(Bi_total_mp, Bi_total_b, 1, l3+1, buf3); in branchsim_printstat()
1741 Int l1, l2, l3; in finish() local
1838 l2 = l3 = 0; in finish()
1841 l3 = ULong_width( total[fullOffset(EG_DW)] ); in finish()
1847 if (l3b > l3) l3 = l3b; in finish()
1857 (*CLG_(cachesim).printstat)(l1, l2, l3); in finish()
1860 branchsim_printstat(l1, l2, l3); in finish()
Dsim.c1521 void cachesim_printstat(Int l1, Int l2, Int l3) in cachesim_printstat() argument
1571 commify(total[fullOffset(EG_DW)], l3, buf3); in cachesim_printstat()
1577 commify(total[fullOffset(EG_DW)+1], l3, buf3); in cachesim_printstat()
1583 commify(total[fullOffset(EG_DW)+2], l3, buf3); in cachesim_printstat()
1597 total[fullOffset(EG_DW)], p, l3+1, buf3); in cachesim_printstat()
1605 total[fullOffset(EG_DW)], p, l3+1, buf3); in cachesim_printstat()
1624 commify(LL_total_w, l3, buf3); in cachesim_printstat()
1638 commify(LL_total_mw, l3, buf3); in cachesim_printstat()
1648 total[fullOffset(EG_DW)], p, l3+1, buf3); in cachesim_printstat()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/
Dfr-FR_nk0_kdt_lfz5.pkb35 …+ޅ����<-y��ס�0�6+%�¶�����[d������H>Ն`�q-� 6��p�AW��iY=�q(��w�Y�;᲻8��l3�q�kB@ f,*PZ�ä�d*s^…
/external/valgrind/main/cachegrind/
Dcg_main.c1472 Int l1, l2, l3; in cg_fini() local
1486 l3 = ULong_width(CG_MAX(Dw_total.a, Bi_total.b)); in cg_fini()
1516 l1, l2, l3); in cg_fini()
1530 VG_(percentify)(Dw_total.m1, Dw_total.a, 1, l3+1, buf3); in cg_fini()
1535 VG_(percentify)(Dw_total.mL, Dw_total.a, 1, l3+1, buf3); in cg_fini()
1555 VG_(percentify)(LL_total_mw, Dw_total.a, 1, l3+1, buf3); in cg_fini()
1563 l1, l2, l3); in cg_fini()
1579 VG_(percentify)(Bi_total.mp, Bi_total.b, 1, l3+1, buf3); in cg_fini()
/external/mksh/src/
Deval.c1780 int l1, l2, l3; in alt_expand() local
1788 l3 = end - brace_end; in alt_expand()
1789 news = alloc(l1 + l2 + l3 + 1, ATEMP); in alt_expand()
1792 memcpy(news + l1 + l2, brace_end, l3); in alt_expand()
1793 news[l1 + l2 + l3] = '\0'; in alt_expand()
1795 news + l1 + l2 + l3, fdo); in alt_expand()
/external/llvm/docs/HistoricalNotes/
D2001-02-09-AdveCommentsResponse.txt214 { uint %14, label %l3 } ]
223 { uint %14, label %l3 }
231 { uint %14, label %l3 } ]

123