HomeSort by relevance Sort by last modified time
    Searched refs:l3 (Results 1 - 25 of 192) sorted by null

1 2 3 4 5 6 7 8

  /art/test/475-simplify-mul-zero/src/
Main.java 19 long l3 = 2207693990L; local
23 i12 ^= (int)(-((-(-(l3 - l3))) * i));
  /external/valgrind/none/tests/s390x/
clcle.c 15 register unsigned long l3 asm ("5") = *_l3;
23 :"=d" (cc), "+d" (a1),"+d" (l1), "+d" (a3), "+d" (l3)
29 *_l3 = l3;
37 unsigned long a1,a3,l1,l3; local
40 a1 = (unsigned long) _a1; l1 = _l1; a3 = (unsigned long) _a3; l3 = _l3;
41 cc = clcle(&a1, &l1, &a3, &l3, pad);
42 printf("cc: %d, l1: %lu(%lu) l3: %lu(%lu) diff1: %lu diff3: %lu\n",
43 cc, l1, _l1, l3, _l3, a1-(unsigned long) _a1, a3-(unsigned long) _a3);
47 void multiplex(unsigned long l1, unsigned long l3, char pad)
49 testrun(b1, l1, b1, l3, pad)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
elf-rel13-mips16.s 7 lw $4,%got(l3)($2)
8 lw $4,%got(l3)($2)
12 addiu $4,%lo(l3)
24 l3: .word 2 label
elf-rel13.s 5 lw $4,%got(l3)($gp)
6 lw $4,%got(l3)($gp)
10 addiu $4,$4,%lo(l3)
22 l3: .word 2 label
branch-misc-1.s 8 l3: label
14 bal l3
elf-rel9-mips16.s 38 lw $4,%gprel(l3)($2)
39 lw $4,%gprel(l3 + 4)($2)
56 l3: .word 1 label
elf-rel9.s 36 lw $4,%gp_rel(l3)($28)
37 lw $4,%gp_rel(l3 + 4)($28)
54 l3: .word 1 label
  /external/clang/test/Sema/
switch-1.c 59 unsigned long long l3 = 65536 * 65536ULL; variable
  /external/eigen/bench/
check_cache_queries.cpp 21 cout << "Eigen's L2/L3 = " << internal::queryTopLevelCacheSize() << endl;
22 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
    [all...]
  /external/clang/test/CodeGen/
partial-reinitialization2.c 12 struct LLP3 { struct LP3 l3; }; member in struct:LLP3
13 union ULP3 { struct LP3 l3; }; member in union:ULP3
78 // .l3 = g3
81 // .l3.p1 = { [0] = g1 } implicitly sets [1] to zero
86 // .l3.p1[1].x[1] = 'x'
89 struct LLP3 var = { .l3 = g3, .l3.p1 = { [0] = g1 }, .l3.p1[1].x[1] = 'x' };
debug-info-packed-struct.c 91 struct layout3 l3; variable in typeref:struct:layout3
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
RuleTest.java 56 Limit l3 = new Limit(); local
57 rule.setLimits(Arrays.asList(l1, l2, l3));
58 assertEquals(Arrays.asList(l1, l2, l3), rule.getLimits());
66 Limit l3 = rule.createLimit(); local
67 assertEquals(Arrays.asList(l1, l2, l3), rule.getLimits());
  /external/libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/
lock.pass.cpp 14 // template <class L1, class L2, class... L3>
15 // void lock(L1&, L2&, L3&...);
383 L0 l3; local
384 std::lock(l0, l1, l2, l3);
388 assert(l3.locked());
394 L1 l3; local
395 std::lock(l0, l1, l2, l3);
399 assert(l3.locked());
405 L0 l3; local
406 std::lock(l0, l1, l2, l3);
416 L0 l3; local
427 L0 l3; local
438 L2 l3; local
456 L0 l3; local
474 L0 l3; local
492 L0 l3; local
    [all...]
try_lock.pass.cpp 14 // template <class L1, class L2, class... L3>
15 // int try_lock(L1&, L2&, L3&...);
464 L0 l3; local
465 assert(std::try_lock(l0, l1, l2, l3) == -1);
469 assert(l3.locked());
475 L0 l3; local
476 assert(std::try_lock(l0, l1, l2, l3) == 0);
480 assert(!l3.locked());
486 L0 l3; local
487 assert(std::try_lock(l0, l1, l2, l3) == 1)
497 L0 l3; local
508 L1 l3; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock.algorithm/
lock.pass.cpp 12 // template <class L1, class L2, class... L3>
13 // void lock(L1&, L2&, L3&...);
381 L0 l3; local
382 std::lock(l0, l1, l2, l3);
386 assert(l3.locked());
392 L1 l3; local
393 std::lock(l0, l1, l2, l3);
397 assert(l3.locked());
403 L0 l3; local
404 std::lock(l0, l1, l2, l3);
414 L0 l3; local
425 L0 l3; local
436 L2 l3; local
454 L0 l3; local
472 L0 l3; local
490 L0 l3; local
    [all...]
try_lock.pass.cpp 12 // template <class L1, class L2, class... L3>
13 // int try_lock(L1&, L2&, L3&...);
462 L0 l3; local
463 assert(std::try_lock(l0, l1, l2, l3) == -1);
467 assert(l3.locked());
473 L0 l3; local
474 assert(std::try_lock(l0, l1, l2, l3) == 0);
478 assert(!l3.locked());
484 L0 l3; local
485 assert(std::try_lock(l0, l1, l2, l3) == 1)
495 L0 l3; local
506 L1 l3; local
    [all...]
  /external/clang/test/SemaCXX/
exceptions.cpp 39 goto l3; // expected-error {{cannot jump}}
46 goto l3; // expected-error {{cannot jump}}
50 l3:
53 goto l3;
60 goto l3; // expected-error {{cannot jump}}
67 goto l3; // expected-error {{cannot jump}}
  /external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
PropertyChangeSupportTest.java 77 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
80 l3);
88 sup.addPropertyChangeListener(l3);
92 assertNotSame(l3, sup.getPropertyChangeListeners()[0]);
98 assertNotSame(l3, ((PropertyChangeListenerProxy) sup
148 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
160 sup.addPropertyChangeListener("myProp3", l3);
164 assertNotSame(l3, ((PropertyChangeListenerProxy) listeners[0])
166 assertNotSame(l3, listeners[0]);
178 assertNotSame(l3, ((PropertyChangeListenerProxy) listeners[0]
214 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
233 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
271 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
363 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
425 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
455 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
480 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp2", local
513 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
534 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
612 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
641 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
670 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
699 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
728 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
756 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
802 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
834 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
866 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
898 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
930 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
961 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
1018 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
1047 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
1075 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
1115 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
1144 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
1173 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
relax1-n.d 42 40018: 4437ffff bp \$55,80014 <l3>
46 0000000000080014 <l3>:
49 8001c: 46580000 bod \$88,8001c <l3\+0x8>
51 80020: f0000000 jmp 80020 <l3\+0xc>
56 80028: 436ffffb bz \$111,80014 <l3>
  /external/eigen/Eigen/src/Core/util/
Memory.h 785 inline void queryCacheSizes_intel_direct(int& l1, int& l2, int& l3)
788 l1 = l2 = l3 = 0;
809 case 3: l3 = cache_size; break;
817 inline void queryCacheSizes_intel_codes(int& l1, int& l2, int& l3)
821 l1 = l2 = l3 = 0;
841 case 0x22: l3 = 512; break; // code and data L3 cache, 512 KB, 4 ways (!), 64 byte lines, dual-sectored
842 case 0x23: l3 = 1024; break; // code and data L3 cache, 1024 KB, 8 ways, 64 byte lines, dual-sectored
843 case 0x25: l3 = 2048; break; // code and data L3 cache, 2048 KB, 8 ways, 64 byte lines, dual-sectore
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_pytree.py 82 l3 = pytree.Leaf(101, "foo")
84 self.assertNotEqual(l1, l3)
133 l3 = pytree.Leaf(100, "bar", prefix="c")
134 n2 = pytree.Node(1000, [n1, l3])
136 self.assertEqual(n1.get_suffix(), l3.prefix)
137 self.assertEqual(l3.get_suffix(), "")
153 l3 = pytree.Leaf(100, "bar")
154 n3 = pytree.Node(1000, [l3])
160 l3 = pytree.Leaf(100, "bar")
161 n1 = pytree.Node(1000, [l1, l2, l3])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_pytree.py 82 l3 = pytree.Leaf(101, "foo")
84 self.assertNotEqual(l1, l3)
133 l3 = pytree.Leaf(100, "bar", prefix="c")
134 n2 = pytree.Node(1000, [n1, l3])
136 self.assertEqual(n1.get_suffix(), l3.prefix)
137 self.assertEqual(l3.get_suffix(), "")
153 l3 = pytree.Leaf(100, "bar")
154 n3 = pytree.Node(1000, [l3])
160 l3 = pytree.Leaf(100, "bar")
161 n1 = pytree.Node(1000, [l1, l2, l3])
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3-generic-lambda-1y.cpp 27 auto l3 = [](auto &&ur, local
43 l3(3, lval, d, lval, &lval, &A::i, &A::f, 'c', &d, arr);
68 auto l3 = [](char (auto::*pmf)()) { }; //expected-error{{'auto' not allowed}}\ local
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
cbcond.s 17 cxbleu %l2, %l3, 1f
19 cwbcs %l3, %l4, 1f
20 cwbcs %l3, 10, 1f
57 cxbvc %l2, %l3, 1f
59 cwbz %l3, %l4, 1f
60 cwbz %l3, 28, 1f
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sparc/
tlssunbinpic32.s 102 sethi %tldo_hix22(sl1), %l3
104 xor %l3, %tldo_lox10(sl1), %l4
110 xor %l2, %tldo_lox10(sl2 + 2), %l3
112 lduh [%o0 + %l3], %l6, %tldo_add(sl2 + 2)
117 sethi %tldo_hix22(sh1), %l3
121 xor %l3, %tldo_lox10(sh1), %l4
123 xor %l2, %tldo_lox10(sh2 + 1), %l3
125 ldub [%o0 + %l3], %l6, %tldo_add(sh2 + 1)
148 ld [%l7 + %l1], %l3, %tie_ld(sl1)
149 add %g7, %l3, %l3, %tie_add(sl1
    [all...]

Completed in 753 milliseconds

1 2 3 4 5 6 7 8