Searched defs:l2 (Results 1 - 25 of 156) sorted by relevance

1234567

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dfwdequ64.asm3 inc dword [l2]
4 l2 equ 4-(l1-$$) define
H A Djmp64-1.asm3 mov dword [l2], l2
6 l2 equ $-l1 define
H A Djmp64-2.asm3 mov dword [l2], l2
6 l2 equ $-l1 define
H A Djmp64-3.asm3 mov dword [l2], l2
7 l2 equ $-l1 define
H A Djmp64-4.asm3 mov dword [l2], l2
7 l2 equ $-l1 define
H A Djmp64-5.asm3 mov dword [l2], l2
7 l2 equ $-l1 define
/external/llvm/test/MC/ELF/
H A Dsubsection.s22 l2: label
23 .subsection l2-l1
/external/clang/test/CodeGen/
H A Dle32-libcall-pow.c21 long double l2 = powl(a2, a2); local
H A Dlibcalls.c21 long double l2 = sqrtl(a2); local
44 long double l2 = powl(a2, a2); local
67 long double l2 = fmal(a2, a2, a2); local
/external/dropbear/libtomcrypt/testprof/
H A Dbase64_test.c6 unsigned long x, l1, l2; local
12 l2 = sizeof(tmp);
13 DO(base64_decode(out, l1, tmp, &l2));
14 if (l2 != x || memcmp(tmp, in, x)) {
15 fprintf(stderr, "base64 failed %lu %lu %lu", x, l1, l2);
H A Dpkcs_1_test.c9 unsigned long x, y, l1, l2, l3, i1, i2, lparamlen, saltlen, modlen; local
44 l2 = sizeof(buf[2]);
45 DO(pkcs_1_oaep_decode(buf[1], l1, lparam, lparamlen, modlen, hash_idx, buf[2], &l2, &res1));
47 if (res1 != 1 || l2 != l3 || memcmp(buf[2], buf[0], l3) != 0) {
48 fprintf(stderr, "Outsize == %lu, should have been %lu, res1 = %d, lparamlen = %lu, msg contents follow.\n", l2, l3, res1, lparamlen);
54 for (x = 0; x < l2; x++) {
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/
H A Dp1.cpp32 auto l2 = []() [[carries_dependency]] {}; // expected-error {{'carries_dependency' attribute cannot be applied to types}} variable
/external/libffi/testsuite/libffi.call/
H A Dreturn_sl.c9 static long return_sl(long l1, long l2) argument
11 return l1 - l2;
20 unsigned long l1, l2; local
25 values[1] = &l2;
31 l2 = 1073741824L;
34 printf("res: %ld, %ld\n", (long)res, l1 - l2);
/external/tcpdump/
H A Dprint-beep.c42 l_strnstart(const char *tstr1, u_int tl1, const char *str2, u_int l2) argument
45 if (tl1 > l2)
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Ddefault-arguments.cpp16 auto l2 = [](int i, int j = i) {}; // expected-error{{default argument references parameter 'i'}} local
H A Dp23.cpp41 auto l2 = [Values...] {}; // expected-error{{'Values' in capture list does not name a variable}} local
/external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
H A Dp3-0x.cpp17 float &l2 = g2(f2()); member in namespace:std_example
/external/eigen/test/
H A Dproduct_large.cpp42 std::ptrdiff_t l2 = internal::random<int>(1000000,2000000); local
43 setCpuCacheSizes(l1,l2);
45 VERIFY(l2==l2CacheSize());
/external/libvpx/libvpx/vp9/common/
H A Dvp9_scan.c270 int n, l2 = l * l; local
271 for (n = 0; n < l2; n++) {
282 int l2 = l * l; local
289 for (n = 1; n < l2; n++) {
332 neighbors[MAX_NEIGHBORS * l2 + 0] = 0;
333 neighbors[MAX_NEIGHBORS * l2 + 1] = 0;
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_mop.cc27 MemLoc l1, l2; local
29 t2.Write1(l2);
/external/eigen/bench/
H A Dcheck_cache_queries.cpp22 int l1, l2, l3; local
23 internal::queryCacheSizes(l1, l2, l3);
24 cout << "Eigen's L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl;
43 internal::queryCacheSizes_intel_codes(l1, l2, l3);
44 cout << "Eigen's intel codes L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl;
47 internal::queryCacheSizes_intel_direct(l1, l2, l3);
48 cout << "Eigen's intel direct L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl;
50 internal::queryCacheSizes_amd(l1, l2, l3);
51 cout << "Eigen's amd L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl;
57 l1 = l2
[all...]
/external/ceres-solver/examples/
H A Dsnavely_reprojection_error.h79 const T& l2 = camera[8]; local
81 T distortion = T(1.0) + r2 * (l1 + l2 * r2);
116 const T& l2 = camera_translation_and_intrinsics[5]; local
136 T distortion = T(1.0) + r2 * (l1 + l2 * r2);
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dstreamparams_unittest.cc113 cricket::StreamParams l2 = cricket::StreamParams::CreateLegacy(2); local
122 cricket::StreamParams sps[] = {l1, l2, sg1, sg2, sg3, sg4};
/external/chromium_org/third_party/openssl/openssl/crypto/x509/
H A Dx509_obj.c70 int n,lold,l,l1,l2,num,j,type; local
148 for (l2=j=0; j<num; j++)
151 l2++;
153 if ((q[j] < ' ') || (q[j] > '~')) l2+=3;
156 (os_toascii[q[j]] > os_toascii['~'])) l2+=3;
161 l+=1+l1+1+l2;
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_list_test.cc128 List l1, l2; local
130 l2.clear();
132 l1.append_front(&l2);
134 CHECK(l2.empty());
136 l1.append_back(&l2);
138 CHECK(l2.empty());
144 SetList(&l2, a, b, c);
145 l1.append_back(&l2);
147 CHECK(l2.empty());
150 SetList(&l2);
161 List l2; local
[all...]

Completed in 692 milliseconds

1234567