Home
last modified time | relevance | path

Searched defs:i1 (Results 1 – 25 of 275) sorted by relevance

1234567891011

/llvm-project/clang/test/Analysis/
H A Diterator-modeling.cpp141 auto i1 = v.end(); in copy() local
153 auto i1 = v.begin(); in plus_lhs() local
165 auto i1 = v.begin(); in plus_rhs() local
177 auto i1 in plus_lhs_negative() local
189 auto i1 = v.end(); plus_rhs_negative() local
201 auto i1 = v.end(); minus() local
213 auto i1 = v.begin(); minus_negative() local
225 auto i1 = v.begin(); copy_and_increment1() local
237 auto i1 = v.begin(); copy_and_increment2() local
249 auto i1 = v.end(); copy_and_decrement1() local
261 auto i1 = v.end(); copy_and_decrement2() local
374 auto i0 = L1.cbegin(), i1 = L2.cbegin(), i2 = --L2.cend(), i3 = L2.cend(); list_move_assignment() local
393 auto i0 = V1.cbegin(), i1 = V2.cbegin(), i2 = --V2.cend(), i3 = V2.cend(); vector_move_assignment() local
411 auto i0 = D1.cbegin(), i1 = D2.cbegin(), i2 = --D2.cend(), i3 = D2.cend(); deque_move_assignment() local
430 auto i0 = FL1.cbegin(), i1 = FL2.cbegin(), i2 = FL2.cend(); forward_list_move_assignment() local
458 auto i0 = L.cbegin(), i1 = L.cend(); list_assign() local
465 auto i0 = V.cbegin(), i1 = V.cend(); vector_assign() local
472 auto i0 = D.cbegin(), i1 = D.cend(); deque_assign() local
479 auto i0 = FL.cbegin(), i1 = FL.cend(); forward_list_assign() local
491 auto i0 = L.cbegin(), i1 = L.cend(); list_clear() local
498 auto i0 = V.cbegin(), i1 = V.cend(); vector_clear() local
505 auto i0 = D.cbegin(), i1 = D.cend(); deque_clear() local
512 auto i0 = FL.cbegin(), i1 = FL.cend(); forward_list_clear() local
528 auto i0 = L.cbegin(), i1 = --L.cend(), i2 = L.cend(); list_push_back() local
547 auto i0 = V.cbegin(), i1 = --V.cend(), i2 = V.cend(); vector_push_back() local
566 auto i0 = D.cbegin(), i1 = --D.cend(), i2 = D.cend(); deque_push_back() local
588 auto i0 = L.cbegin(), i1 = --L.cend(), i2 = L.cend(); list_emplace_back() local
607 auto i0 = V.cbegin(), i1 = --V.cend(), i2 = V.cend(); vector_emplace_back() local
626 auto i0 = D.cbegin(), i1 = --D.cend(), i2 = D.cend(); deque_emplace_back() local
648 auto i0 = L.cbegin(), i1 = --L.cend(), i2 = L.cend(); list_pop_back() local
667 auto i0 = V.cbegin(), i1 = --V.cend(), i2 = V.cend(); vector_pop_back() local
686 auto i0 = D.cbegin(), i1 = --D.cend(), i2 = D.cend(); deque_pop_back() local
710 auto i0 = L.cbegin(), i1 = L.cend(); list_push_front() local
728 auto i0 = D.cbegin(), i1 = --D.cend(), i2 = D.cend(); deque_push_front() local
743 auto i0 = FL.cbegin(), i1 = FL.cend(); forward_list_push_front() local
767 auto i0 = L.cbegin(), i1 = L.cend(); list_emplace_front() local
785 auto i0 = D.cbegin(), i1 = --D.cend(), i2 = D.cend(); deque_emplace_front() local
800 auto i0 = FL.cbegin(), i1 = FL.cend(); forward_list_emplace_front() local
824 auto i0 = L.cbegin(), i1 = ++L.cbegin(), i2 = L.cend(); list_pop_front() local
843 auto i0 = D.cbegin(), i1 = ++D.cbegin(), i2 = D.cend(); deque_pop_front() local
862 auto i0 = FL.cbegin(), i1 = ++FL.cbegin(), i2 = FL.cend(); forward_list_pop_front() local
890 auto i0 = L.cbegin(), i1 = L.cend(); list_insert_begin() local
906 auto i0 = L.cbegin(), i1 = ++L.cbegin(), i2 = L.cend(); list_insert_behind_begin() local
926 auto i0 = L.cbegin(), i1 = return_any_iterator(L.cbegin()), i2 = L.cend(); list_insert_unknown() local
945 auto i0 = L.cbegin(), i1 = --L.cend(), i2 = L.cend(); list_insert_ahead_of_end() local
963 auto i0 = L.cbegin(), i1 = --L.cend(), i2 = L.cend(); list_insert_end() local
985 auto i0 = V.cbegin(), i1 = V.cend(); vector_insert_begin() local
999 auto i0 = V.cbegin(), i1 = ++V.cbegin(), i2 = V.cend(); vector_insert_behind_begin() local
1015 auto i0 = V.cbegin(), i1 = return_any_iterator(V.cbegin()), i2 = V.cend(); vector_insert_unknown() local
1032 auto i0 = V.cbegin(), i1 = --V.cend(), i2 = V.cend(); vector_insert_ahead_of_end() local
1048 auto i0 = V.cbegin(), i1 = --V.cend(), i2 = V.cend(); vector_insert_end() local
1068 auto i0 = D.cbegin(), i1 = D.cend(); deque_insert_begin() local
1082 auto i0 = D.cbegin(), i1 = ++D.cbegin(), i2 = D.cend(); deque_insert_behind_begin() local
1097 auto i0 = D.cbegin(), i1 = return_any_iterator(D.cbegin()), i2 = D.cend(); deque_insert_unknown() local
1113 auto i0 = D.cbegin(), i1 = --D.cend(), i2 = D.cend(); deque_insert_ahead_of_end() local
1128 auto i0 = D.cbegin(), i1 = --D.cend(), i2 = D.cend(); deque_insert_end() local
1153 auto i0 = FL.cbegin(), i1 = FL.cend(); forward_list_insert_after_begin() local
1169 auto i0 = FL.cbegin(), i1 = ++FL.cbegin(), i2 = FL.cend(); forward_list_insert_after_behind_begin() local
1187 auto i0 = FL.cbegin(), i1 = return_any_iterator(FL.cbegin()), i2 = FL.cend(); forward_list_insert_after_unknown() local
1218 auto i0 = L.cbegin(), i1 = L.cend(); list_emplace_begin() local
1234 auto i0 = L.cbegin(), i1 = ++L.cbegin(), i2 = L.cend(); list_emplace_behind_begin() local
1254 auto i0 = L.cbegin(), i1 = return_any_iterator(L.cbegin()), i2 = L.cend(); list_emplace_unknown() local
1273 auto i0 = L.cbegin(), i1 = --L.cend(), i2 = L.cend(); list_emplace_ahead_of_end() local
1291 auto i0 = L.cbegin(), i1 = --L.cend(), i2 = L.cend(); list_emplace_end() local
1313 auto i0 = V.cbegin(), i1 = V.cend(); vector_emplace_begin() local
1326 auto i0 = V.cbegin(), i1 = ++V.cbegin(), i2 = V.cend(); vector_emplace_behind_begin() local
1342 auto i0 = V.cbegin(), i1 = return_any_iterator(V.cbegin()), i2 = V.cend(); vector_emplace_unknown() local
1359 auto i0 = V.cbegin(), i1 = --V.cend(), i2 = V.cend(); vector_emplace_ahead_of_end() local
1375 auto i0 = V.cbegin(), i1 = --V.cend(), i2 = V.cend(); vector_emplace_end() local
1395 auto i0 = D.cbegin(), i1 = D.cend(); deque_emplace_begin() local
1408 auto i0 = D.cbegin(), i1 = ++D.cbegin(), i2 = D.cend(); deque_emplace_behind_begin() local
1422 auto i0 = D.cbegin(), i1 = return_any_iterator(D.cbegin()), i2 = D.cend(); deque_emplace_unknown() local
1438 auto i0 = D.cbegin(), i1 = --D.cend(), i2 = D.cend(); deque_emplace_ahead_of_end() local
1453 auto i0 = D.cbegin(), i1 = --D.cend(), i2 = D.cend(); deque_emplace_end() local
1478 auto i0 = FL.cbegin(), i1 = FL.cend(); forward_list_emplace_after_begin() local
1495 auto i0 = FL.cbegin(), i1 = ++FL.cbegin(), i2 = FL.cend(); forward_list_emplace_after_behind_begin() local
1513 auto i0 = FL.cbegin(), i1 = return_any_iterator(FL.cbegin()), i2 = FL.cend(); forward_list_emplace_after_unknown() local
1545 auto i0 = L.cbegin(), i1 = ++L.cbegin(), i2 = L.cend(); list_erase_begin() local
1562 auto i0 = L.cbegin(), i1 = ++L.cbegin(), i2 = L.cend(); list_erase_behind_begin() local
1579 auto i0 = L.cbegin(), i1 = return_any_iterator(L.cbegin()), i2 = L.cend(); list_erase_unknown() local
1597 auto i0 = L.cbegin(), i1 = --L.cend(), i2 = L.cend(); list_erase_ahead_of_end() local
1617 auto i0 = V.cbegin(), i1 = ++V.cbegin(), i2 = V.cend(); vector_erase_begin() local
1632 auto i0 = V.cbegin(), i1 = ++V.cbegin(), i2 = V.cend(); vector_erase_behind_begin() local
1648 auto i0 = V.cbegin(), i1 = return_any_iterator(V.cbegin()), i2 = V.cend(); vector_erase_unknown() local
1665 auto i0 = V.cbegin(), i1 = --V.cend(), i2 = V.cend(); vector_erase_ahead_of_end() local
1689 auto i0 = D.cbegin(), i1 = ++D.cbegin(), i2 = D.cend(); deque_erase_begin() local
1704 auto i0 = D.cbegin(), i1 = ++D.cbegin(), i2 = D.cend(); deque_erase_behind_begin() local
1719 auto i0 = D.cbegin(), i1 = return_any_iterator(D.cbegin()), i2 = D.cend(); deque_erase_unknown() local
1735 auto i0 = D.cbegin(), i1 = --D.cend(), i2 = D.cend(); deque_erase_ahead_of_end() local
1763 auto i0 = FL.cbegin(), i1 = ++FL.cbegin(), i2 = i1, i3 = FL.cend(); forward_list_erase_after_begin() local
1783 auto i0 = FL.cbegin(), i1 = return_any_iterator(FL.cbegin()), i2 = i1, forward_list_erase_after_unknown() local
1846 auto i0 = V.begin(), i1 = V.end(); iter_diff() local
1983 auto i1 = c.begin(); plus_lhs_ptr_iterator() local
1995 auto i1 = c.begin(); plus_rhs_ptr_iterator() local
2007 auto i1 = c.end(); minus_ptr_iterator() local
2019 auto i0 = c.begin(), i1 = c.end(); ptr_iter_diff() local
2042 const auto i1 = V.cend(); print_state() local
[all...]
H A Dstl-algorithm-modeling.cpp16 const auto i1 = return_any_iterator(V.begin()); test_find1() local
35 const auto i1 = return_any_iterator(V.begin()); test_find2() local
56 const auto i1 = return_any_iterator(V.begin()); test_find_if1() local
75 const auto i1 = return_any_iterator(V.begin()); test_find_if2() local
94 const auto i1 = return_any_iterator(V.begin()); test_find_if_not1() local
113 const auto i1 = return_any_iterator(V.begin()); test_find_if_not2() local
133 const auto i1 = return_any_iterator(V1.begin()); test_find_first_of1() local
154 const auto i1 = return_any_iterator(V1.begin()); test_find_first_of2() local
176 const auto i1 = return_any_iterator(V1.begin()); test_find_first_of3() local
197 const auto i1 = return_any_iterator(V1.begin()); test_find_first_of4() local
219 const auto i1 = return_any_iterator(V1.begin()); test_find_end1() local
240 const auto i1 = return_any_iterator(V1.begin()); test_find_end2() local
262 const auto i1 = return_any_iterator(V1.begin()); test_find_end3() local
283 const auto i1 = return_any_iterator(V1.begin()); test_find_end4() local
307 const auto i1 = return_any_iterator(V.begin()); test_lower_bound1() local
326 const auto i1 = return_any_iterator(V.begin()); test_lower_bound2() local
345 const auto i1 = return_any_iterator(V.begin()); test_upper_bound1() local
364 const auto i1 = return_any_iterator(V.begin()); test_upper_bound2() local
383 const auto i1 = return_any_iterator(V1.begin()); test_search1() local
404 const auto i1 = return_any_iterator(V1.begin()); test_search2() local
426 const auto i1 = return_any_iterator(V1.begin()); test_search3() local
447 const auto i1 = return_any_iterator(V1.begin()); test_search4() local
469 const auto i1 = return_any_iterator(V1.begin()); test_search5() local
490 const auto i1 = return_any_iterator(V.begin()); test_search_n1() local
509 const auto i1 = return_any_iterator(V.begin()); test_search_n2() local
530 const auto i1 = return_any_iterator(V.begin()); test_search_n3() local
549 const auto i1 = return_any_iterator(V.begin()); test_search_n4() local
[all...]
H A Dstl-algorithm-modeling-aggressive-std-find-modeling.cpp38 clang_analyzer_iterator_position(i1)); // expected-warning@-1{{FALSE}} in test_find2() local
17 const auto i1 = return_any_iterator(V.begin()); test_find1() local
61 const auto i1 = return_any_iterator(V.begin()); test_find_if1() local
82 const auto i1 = return_any_iterator(V.begin()); test_find_if2() local
103 const auto i1 = return_any_iterator(V.begin()); test_find_if_not1() local
124 const auto i1 = return_any_iterator(V.begin()); test_find_if_not2() local
146 const auto i1 = return_any_iterator(V1.begin()); test_find_first_of1() local
169 const auto i1 = return_any_iterator(V1.begin()); test_find_first_of2() local
193 const auto i1 = return_any_iterator(V1.begin()); test_find_first_of3() local
216 const auto i1 = return_any_iterator(V1.begin()); test_find_first_of4() local
240 const auto i1 = return_any_iterator(V1.begin()); test_find_end1() local
263 const auto i1 = return_any_iterator(V1.begin()); test_find_end2() local
287 const auto i1 = return_any_iterator(V1.begin()); test_find_end3() local
310 const auto i1 = return_any_iterator(V1.begin()); test_find_end4() local
336 const auto i1 = return_any_iterator(V.begin()); test_lower_bound1() local
357 const auto i1 = return_any_iterator(V.begin()); test_lower_bound2() local
378 const auto i1 = return_any_iterator(V.begin()); test_upper_bound1() local
399 const auto i1 = return_any_iterator(V.begin()); test_upper_bound2() local
420 const auto i1 = return_any_iterator(V1.begin()); test_search1() local
443 const auto i1 = return_any_iterator(V1.begin()); test_search2() local
467 const auto i1 = return_any_iterator(V1.begin()); test_search3() local
490 const auto i1 = return_any_iterator(V1.begin()); test_search4() local
514 const auto i1 = return_any_iterator(V1.begin()); test_search5() local
537 const auto i1 = return_any_iterator(V.begin()); test_search_n1() local
558 const auto i1 = return_any_iterator(V.begin()); test_search_n2() local
580 const auto i1 = return_any_iterator(V.begin()); test_search_n3() local
601 const auto i1 = return_any_iterator(V.begin()); test_search_n4() local
[all...]
/llvm-project/flang/test/Lower/PowerPC/
H A Dppc-vec-extract.f909 subroutine vec_extract_testf32(x, i1, i2, i4, i8) argument
58 subroutine vec_extract_testf64(x, i1, i2, i4, i8) argument
108 subroutine vec_extract_testi8(x, i1, i2, i4, i8) argument
157 subroutine vec_extract_testi16(x, i1, i2, i4, i8) argument
206 subroutine vec_extract_testi32(x, i1, i2, i4, i8) argument
255 subroutine vec_extract_testi64(x, i1, i2, i4, i8) argument
H A Dppc-vec-insert.f908 subroutine vec_insert_testf32(v, x, i1, i2, i4, i8) argument
62 subroutine vec_insert_testf64(v, x, i1, i2, i4, i8) argument
116 subroutine vec_insert_testi8(v, x, i1, i2, i4, i8) argument
170 subroutine vec_insert_testi16(v, x, i1, i2, i4, i8) argument
224 subroutine vec_insert_testi32(v, x, i1, i2, i4, i8) argument
278 subroutine vec_insert_testi64(v, x, i1, i2, i4, i8) argument
/llvm-project/flang/test/Semantics/
H A Dresolve121.f9010 integer :: i1 = 1 local
19 integer :: i1 = 1 local
29 integer :: i1 local
41 integer :: i1 = 1 local
H A Ddoconcurrent06.f907 integer :: i1,i2,i3,i4,i5,i6,n local
30 integer :: i1,i2,i3,i4,i5,i6,n local
52 integer :: i1,i2,i3,i4,i5,i6,n local
/llvm-project/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op!=/
H A Dnot_equal.pass.cpp27 std::istreambuf_iterator<char> i1(inf1); in main() local
66 std::istreambuf_iterator<char> i1; in main() local
87 std::istreambuf_iterator<wchar_t> i1(inf1); in main() local
/llvm-project/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op==/
H A Dequal.pass.cpp29 std::istreambuf_iterator<char> i1(inf1); in main() local
68 std::istreambuf_iterator<char> i1; in main() local
89 std::istreambuf_iterator<wchar_t> i1(inf1); in main() local
/llvm-project/clang/test/Sema/
H A Dtentative-decls.c22 int i1 = 1; // expected-note {{previous definition is here}} variable
23 int i1 = 2; // expected-error {{redefinition of 'i1'}} variable
24 int i1; variable
25 int i1; variable
H A Dunused-expr-system-header.c3 void f(int i1, int i2) { in f()
/llvm-project/clang/test/SemaCXX/
H A Doverload-call-copycon.cpp15 int& i1 = copycon(x); in test_copycon() local
35 int& i1 = copycon2(b); in test_copycon2() local
46 int& i1 = copycon3(b); in test_copycon3() local
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bitvector.h130 for (uptr i1 = 0; i1 < BV::kSize; i1++) in setAll() local
146 uptr i1 = idx1(idx); in setBit() local
161 uptr i1 = idx1(idx); in clearBit() local
175 uptr i1 = idx1(idx); in getBit() local
184 uptr i1 = l1_[i0].getAndClearFirstOne(); in getAndClearFirstOne() local
202 uptr i1 = t.getAndClearFirstOne(); in setUnion() local
221 uptr i1 = t.getAndClearFirstOne(); in setIntersection() local
239 uptr i1 = t.getAndClearFirstOne(); in setDifference() local
260 uptr i1 = t.getAndClearFirstOne(); in intersectsWith() local
/llvm-project/clang/test/Layout/
H A Daix-power-natural-interaction.cpp12 int i1; member
52 int i1; member
85 int i1; member
117 int i1; member
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/misc/
H A Dmisplaced-const.c12 const plain_i *i1 = 0; in func() local
26 void func2(const plain_i *i1, in func2()
35 const plain_i *i1; member
/llvm-project/flang/unittests/Runtime/
H A DDerived.cpp18 auto i1{ in TEST() local
57 auto i1{ in TEST() local
/llvm-project/clang/test/CodeGenCXX/LoongArch/
H A Dabi-lp64d-struct-inherit.cpp10 int32_t i1; member
23 int32_t i1; member
40 int64_t i1; member
65 int32_t i1; member
/llvm-project/clang/test/CodeGen/RISCV/
H A Driscv-abi.cpp22 int32_t i1; member
42 int32_t i1; member
74 int64_t i1; member
125 int32_t i1; member
/llvm-project/libcxx/test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
H A Dequal.pass.cpp33 std::istream_iterator<int> i1(inf1); in main() local
64 std::istream_iterator<int> i1; in main() local
/llvm-project/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_equal/
H A Dequal.pass.cpp26 std::istreambuf_iterator<char> i1(inf1); in main() local
66 std::istreambuf_iterator<wchar_t> i1(inf1); in main() local
/llvm-project/clang/test/CodeGen/X86/
H A Dx86_32-arguments-iamcu.c41 void paddedStruct(int i1, st5_t st, st4_t st4) {} in paddedStruct()
47 void largeStructMiddle(int i1, st12_t st, int i2, int i3) {} in largeStructMiddle()
50 void largeStructEnd(int i1, int i2, int i3, st12_t st) {} in largeStructEnd()
62 st12_t retLargeStruct(int i1, st12_t r) { return r; } in retLargeStruct()
65 int varArgs(int i1, ...) { return i1; } in varArgs()
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.lazy.split/range.lazy.split.inner/
H A Diter_swap.pass.cpp88 auto i1 = segment.begin(); in test() local
106 auto i1 = segment.begin(); in test() local
130 auto i1 = segment.begin(); in test() local
150 auto i1 = val1.begin(); in test() local
167 const auto i1 = segment.begin(); in test() local
/llvm-project/flang/test/Lower/
H A Dequivalence-with-host-assoc.f905 integer :: i1 = 1 local
88 integer :: i1 = 1 local
143 integer :: i1 local
/llvm-project/compiler-rt/test/orc/TestCases/Windows/x86-64/Inputs/
H A Dstandalone-dylib.c13 __declspec(allocate(".CRT$XIV")) int (*i1)(void) = Ctor; variable
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/portability/
H A Dsimd-intrinsics-ppc.cpp17 vector int i0, i1; in PPC() local

1234567891011