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

1 2 3 4 5

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
jmp64-1.asm 4 jc l3
5 l3: label
jmp64-2.asm 4 jc short l3
5 l3: label
jmp64-3.asm 4 jc short l3
6 l3: label
jmp64-4.asm 4 jc l3
6 l3: label
jmp64-5.asm 4 jc l3
6 l3: label
jmp64-6.asm 5 jc short l3
7 l3: label
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
default-arguments.cpp 19 auto l3 = [](int i = foo) {}; // expected-error{{default argument references local variable 'foo' of enclosing function}} local
  /external/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/valgrind/main/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...]