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

1 2 3 4 5 6 7 8 9

  /external/llvm/test/MC/ARM/
cmp-immediate-fixup-error.s 4 cmp r0, #(l1 - unknownLabel + 4) >> 2
7 l1: label
cmp-immediate-fixup-error2.s 4 cmp r0, #(l1 - unknownLabel)
7 l1: label
cmp-immediate-fixup.s 7 cmp r2, #(l2 - l1 + 4) >> 2
8 l1: label
cmp-immediate-fixup2.s 7 cmp r2, #(l2 - l1)
8 l1: label
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
cmp-immediate-fixup-error.s 4 cmp r0, #(l1 - unknownLabel + 4) >> 2
7 l1: label
cmp-immediate-fixup-error2.s 4 cmp r0, #(l1 - unknownLabel)
7 l1: label
cmp-immediate-fixup.s 7 cmp r2, #(l2 - l1 + 4) >> 2
8 l1: label
cmp-immediate-fixup2.s 7 cmp r2, #(l2 - l1)
8 l1: label
  /external/libcxx/test/std/containers/sequences/list/list.modifiers/
insert_iter_rvalue.pass.cpp 25 std::list<MoveOnly> l1; local
26 l1.insert(l1.cend(), MoveOnly(1));
27 assert(l1.size() == 1);
28 assert(l1.front() == MoveOnly(1));
29 l1.insert(l1.cbegin(), MoveOnly(2));
30 assert(l1.size() == 2);
31 assert(l1.front() == MoveOnly(2));
32 assert(l1.back() == MoveOnly(1))
35 std::list<MoveOnly, min_allocator<MoveOnly>> l1; local
    [all...]
push_back_rvalue.pass.cpp 25 std::list<MoveOnly> l1; local
26 l1.push_back(MoveOnly(1));
27 assert(l1.size() == 1);
28 assert(l1.front() == MoveOnly(1));
29 l1.push_back(MoveOnly(2));
30 assert(l1.size() == 2);
31 assert(l1.front() == MoveOnly(1));
32 assert(l1.back() == MoveOnly(2));
35 std::list<MoveOnly, min_allocator<MoveOnly>> l1; local
36 l1.push_back(MoveOnly(1))
    [all...]
push_front_rvalue.pass.cpp 25 std::list<MoveOnly> l1; local
26 l1.push_front(MoveOnly(1));
27 assert(l1.size() == 1);
28 assert(l1.front() == MoveOnly(1));
29 l1.push_front(MoveOnly(2));
30 assert(l1.size() == 2);
31 assert(l1.front() == MoveOnly(2));
32 assert(l1.back() == MoveOnly(1));
35 std::list<MoveOnly, min_allocator<MoveOnly>> l1; local
36 l1.push_front(MoveOnly(1))
    [all...]
insert_iter_iter_iter.pass.cpp 27 List l1; local
28 typename List::iterator i = l1.insert(l1.begin(), a1, a1+3);
29 assert(i == l1.begin());
30 assert(l1.size() == 3);
31 assert(distance(l1.begin(), l1.end()) == 3);
32 i = l1.begin();
39 i = l1.insert(i, a2, a2+3);
41 assert(l1.size() == 6)
    [all...]
  /external/llvm/test/MC/AArch64/
optional-hash.s 16 l1: label
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/
optional-hash.s 16 l1: label
  /device/linaro/bootloader/arm-trusted-firmware/lib/locks/exclusive/aarch64/
spinlock.S 75 l1: wfe label
77 cbnz w1, l1
  /external/clang/test/CodeGen/
le32-libcall-pow.c 18 double l1 = pow(a1, a1); local
  /external/libcxx/test/std/containers/sequences/array/array.cons/
deduct.pass.cpp 46 const long l1 = 42; local
47 std::array arr{1L, 4L, 9L, l1}; // array(T, U...)
53 assert(arr[3] == l1);
  /external/llvm/test/MC/ELF/
subsection.s 20 l1: label
23 .subsection l2-l1
24 .byte l1-l0
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ELF/
subsection.s 20 l1: label
23 .subsection l2-l1
24 .byte l1-l0
  /external/clang/test/Sema/
attr-used.c 4 __private_extern__ int l1 __attribute__((used)); // expected-warning {{'used' attribute ignored}} variable
  /external/libcxx/test/libcxx/containers/sequences/list/list.cons/
db_copy.pass.cpp 25 std::list<int> l1; local
26 l1.push_back(1); l1.push_back(2); l1.push_back(3);
27 std::list<int>::iterator i = l1.begin();
28 std::list<int> l2 = l1;
db_move.pass.cpp 31 std::list<int> l1 = {1, 2, 3}; local
32 std::list<int>::iterator i = l1.begin();
33 std::list<int> l2 = std::move(l1);
  /external/libcxx/test/std/containers/sequences/list/list.ops/
splice_pos_list.pass.cpp 25 std::list<int> l1; local
27 l1.splice(l1.end(), l2);
28 assert(l1.size() == 0);
29 assert(distance(l1.begin(), l1.end()) == 0);
34 std::list<int> l1; local
36 l1.splice(l1.end(), l2);
37 assert(l1.size() == 1)
45 std::list<int> l1; local
58 std::list<int> l1; local
405 std::list<int, min_allocator<int>> l1; local
414 std::list<int, min_allocator<int>> l1; local
425 std::list<int, min_allocator<int>> l1; local
438 std::list<int, min_allocator<int>> l1; local
    [all...]
splice_pos_list_iter.pass.cpp 25 std::list<int> l1; local
27 l1.splice(l1.end(), l2, l2.begin());
28 assert(l1.size() == 1);
29 assert(distance(l1.begin(), l1.end()) == 1);
32 std::list<int>::const_iterator i = l1.begin();
36 std::list<int> l1; local
38 l1.splice(l1.end(), l2, l2.begin())
49 std::list<int> l1; local
62 std::list<int> l1; local
77 std::list<int> l1; local
92 std::list<int> l1; local
162 l1.splice(next(l1.begin()), l1, l1.begin()); local
172 l1.splice(next(l1.begin()), l1, next(l1.begin())); local
182 std::list<int, min_allocator<int>> l1; local
193 std::list<int, min_allocator<int>> l1; local
206 std::list<int, min_allocator<int>> l1; local
219 std::list<int, min_allocator<int>> l1; local
234 std::list<int, min_allocator<int>> l1; local
249 std::list<int, min_allocator<int>> l1; local
319 l1.splice(next(l1.begin()), l1, l1.begin()); local
329 l1.splice(next(l1.begin()), l1, next(l1.begin())); local
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/
p1.cpp 28 auto l1 = [](int n [[carries_dependency]]) {}; variable

Completed in 2149 milliseconds

1 2 3 4 5 6 7 8 9