Home
last modified time | relevance | path

Searched defs:It (Results 1 – 25 of 970) sorted by relevance

12345678910>>...39

/aosp_15_r20/external/clang/test/OpenMP/
H A Dfor_codegen.cpp436 struct It { struct
437 It() : p(0) {} in It() argument
443 ~It() {} in ~It() argument
445 It(T *p) : p(p) {} in It() argument
451 It &operator++() { ++p; return *this; } in operator ++() argument
452 It &operator--() { --p; return *this; } in operator --() argument
453 It &operator+=(unsigned n) { p += n; return *this; } in operator +=() argument
454 It &operator-=(unsigned n) { p -= n; return *this; } in operator -=() argument
460 It<T> operator+(It<T> a, typename It<T>::difference_type n) { return a.p + n; } in operator +() argument
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/iterators/predef.iterators/move.iterators/move.sentinel/
H A Dconcept_conformance.compile.pass.cpp24 using It = int*; in test() typedef
35 using It = cpp17_input_iterator<int*>; in test() typedef
44 using It = cpp20_input_iterator<int*>; in test() typedef
53 using It = forward_iterator<int*>; in test() typedef
64 using It = bidirectional_iterator<int*>; in test() typedef
75 using It = random_access_iterator<int*>; in test() typedef
86 using It = contiguous_iterator<int*>; in test() typedef
97 using It = three_way_contiguous_iterator<int*>; in test() typedef
/aosp_15_r20/external/llvm/lib/Target/AMDGPU/
H A DAMDILCFGStructurizer.cpp342 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in getSCCNum() local
350 LoopLandInfoMap::const_iterator It = LLInfoMap.find(LoopRep); in getLoopLandInfo() local
365 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in isRetiredBlock() local
401 int AMDGPUCFGStructurizer::countActiveBlock(MBBVector::const_iterator It, in countActiveBlock()
565 MachineBasicBlock::succ_iterator It = MBB->succ_begin(); in getFalseBranch() local
596 for (MachineBasicBlock::iterator It = MBB->begin(); It != MBB->end(); in getLastDebugLocInBB() local
607 MachineBasicBlock::reverse_iterator It = MBB->rbegin(); in getNormalBlockBranchInstr() local
616 for (MachineBasicBlock::reverse_iterator It = MBB->rbegin(), E = MBB->rend(); in getLoopendBlockBranchInstr() local
631 MachineBasicBlock::reverse_iterator It = MBB->rbegin(); in getReturnInstr() local
654 for (MachineBasicBlock::succ_iterator It = SrcMBB->succ_begin(), in cloneSuccessorList() local
[all …]
H A DR600OptimizeVectorRegisters.cpp52 for (MachineRegisterInfo::def_instr_iterator It = MRI.def_instr_begin(Reg), in isImplicitlyDef() local
150 for (DenseMap<unsigned, unsigned>::iterator It = ToMerge->RegToChan.begin(), in tryMergeVector() local
190 for (DenseMap<unsigned, unsigned>::iterator It = RSI->RegToChan.begin(), in RebuildVector() local
219 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in RebuildVector() local
236 for (InstructionSetMap::iterator It = PreviousRegSeqByReg.begin(), in RemoveMI() local
241 for (InstructionSetMap::iterator It = PreviousRegSeqByUndefCount.begin(), in RemoveMI() local
267 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in areAllUsesSwizzeable() local
310 It = RSI.RegToChan.begin(), E = RSI.RegToChan.end(); It != E; ++It) { in trackRSI() local
339 It = MRI->def_instr_begin(Reg), E = MRI->def_instr_end(); in runOnMachineFunction() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDILCFGStructurizer.cpp346 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in getSCCNum() local
354 LoopLandInfoMap::const_iterator It = LLInfoMap.find(LoopRep); in getLoopLandInfo() local
369 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in isRetiredBlock() local
406 int AMDGPUCFGStructurizer::countActiveBlock(MBBVector::const_iterator It, in countActiveBlock()
568 MachineBasicBlock::succ_iterator It = MBB->succ_begin(); in getFalseBranch() local
599 for (MachineBasicBlock::iterator It = MBB->begin(); It != MBB->end(); in getLastDebugLocInBB() local
610 MachineBasicBlock::reverse_iterator It = MBB->rbegin(); in getNormalBlockBranchInstr() local
619 for (MachineBasicBlock::reverse_iterator It = MBB->rbegin(), E = MBB->rend(); in getLoopendBlockBranchInstr() local
634 MachineBasicBlock::reverse_iterator It = MBB->rbegin(); in getReturnInstr() local
656 for (MachineBasicBlock::succ_iterator It = SrcMBB->succ_begin(), in cloneSuccessorList() local
[all …]
/aosp_15_r20/external/libcxx/test/std/containers/sequences/list/list.cons/
H A Dinput_iterator.pass.cpp92 using It = random_access_iterator<int*>; in test_emplacable_concept() typedef
110 using It = input_iterator<int*>; in test_emplacable_concept() typedef
139 using It = random_access_iterator<int*>; in test_emplacable_concept_with_alloc() typedef
158 using It = input_iterator<int*>; in test_emplacable_concept_with_alloc() typedef
186 using It = forward_iterator<int*>; in test_ctor_under_alloc() typedef
198 using It = input_iterator<int*>; in test_ctor_under_alloc() typedef
217 using It = forward_iterator<int*>; in test_ctor_under_alloc_with_alloc() typedef
231 using It = input_iterator<int*>; in test_ctor_under_alloc_with_alloc() typedef
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/sequences/list/list.cons/
H A Dinput_iterator.pass.cpp92 using It = random_access_iterator<int*>; in test_emplacable_concept() typedef
110 using It = cpp17_input_iterator<int*>; in test_emplacable_concept() typedef
139 using It = random_access_iterator<int*>; in test_emplacable_concept_with_alloc() typedef
158 using It = cpp17_input_iterator<int*>; in test_emplacable_concept_with_alloc() typedef
186 using It = forward_iterator<int*>; in test_ctor_under_alloc() typedef
198 using It = cpp17_input_iterator<int*>; in test_ctor_under_alloc() typedef
217 using It = forward_iterator<int*>; in test_ctor_under_alloc_with_alloc() typedef
231 using It = cpp17_input_iterator<int*>; in test_ctor_under_alloc_with_alloc() typedef
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/filesystems/class.path/path.member/path.assign/
H A Dsource.pass.cpp141 using It = cpp17_input_iterator<const CharT*>; in RunTestCase() typedef
154 using It = cpp17_input_iterator<const CharT*>; in RunTestCase() typedef
165 using It = cpp17_input_iterator<const CharT*>; in RunTestCase() typedef
188 using It = const char* const; in test_sfinae() typedef
193 using It = cpp17_input_iterator<const char*>; in test_sfinae() typedef
205 using It = cpp17_input_iterator<const char*, Traits>; in test_sfinae() typedef
210 using It = cpp17_output_iterator<const char*>; in test_sfinae() typedef
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h87 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; ++It) in count() local
108 for (auto It = Other.Intervals.begin(), End = Other.Intervals.end(); in set() local
121 const auto It = Intervals.find(Index); in test() local
136 auto It = Intervals.find(Index); in reset() local
165 for (auto It = RHS.Intervals.begin(), End = RHS.Intervals.end(); variable
201 auto It = Intervals.find(OlapStart); in intersectWithComplement() local
358 auto It = const_iterator(UnderlyingIt); in find() local
378 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; in print() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ADT/
DCoalescingBitVector.h87 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; ++It) in count() local
108 for (auto It = Other.Intervals.begin(), End = Other.Intervals.end(); in set() local
121 const auto It = Intervals.find(Index); in test() local
136 auto It = Intervals.find(Index); in reset() local
165 for (auto It = RHS.Intervals.begin(), End = RHS.Intervals.end(); variable
201 auto It = Intervals.find(OlapStart); in intersectWithComplement() local
358 auto It = const_iterator(UnderlyingIt); in find() local
378 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; in print() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ADT/
DCoalescingBitVector.h87 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; ++It) in count() local
108 for (auto It = Other.Intervals.begin(), End = Other.Intervals.end(); in set() local
121 const auto It = Intervals.find(Index); in test() local
136 auto It = Intervals.find(Index); in reset() local
165 for (auto It = RHS.Intervals.begin(), End = RHS.Intervals.end(); variable
201 auto It = Intervals.find(OlapStart); in intersectWithComplement() local
358 auto It = const_iterator(UnderlyingIt); in find() local
378 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; in print() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ADT/
DCoalescingBitVector.h87 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; ++It) in count() local
108 for (auto It = Other.Intervals.begin(), End = Other.Intervals.end(); in set() local
121 const auto It = Intervals.find(Index); in test() local
136 auto It = Intervals.find(Index); in reset() local
165 for (auto It = RHS.Intervals.begin(), End = RHS.Intervals.end(); variable
201 auto It = Intervals.find(OlapStart); in intersectWithComplement() local
358 auto It = const_iterator(UnderlyingIt); in find() local
378 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; in print() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ADT/
DCoalescingBitVector.h87 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; ++It) in count() local
108 for (auto It = Other.Intervals.begin(), End = Other.Intervals.end(); in set() local
121 const auto It = Intervals.find(Index); in test() local
136 auto It = Intervals.find(Index); in reset() local
165 for (auto It = RHS.Intervals.begin(), End = RHS.Intervals.end(); variable
201 auto It = Intervals.find(OlapStart); in intersectWithComplement() local
358 auto It = const_iterator(UnderlyingIt); in find() local
378 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; in print() local
/aosp_15_r20/external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/
H A Dsource.pass.cpp136 using It = input_iterator<const CharT*>; in RunTestCase() typedef
149 using It = input_iterator<const CharT*>; in RunTestCase() typedef
160 using It = input_iterator<const CharT*>; in RunTestCase() typedef
183 using It = const char* const; in test_sfinae() typedef
188 using It = input_iterator<const char*>; in test_sfinae() typedef
200 using It = input_iterator<const char*, Traits>; in test_sfinae() typedef
205 using It = output_iterator<const char*>; in test_sfinae() typedef
/aosp_15_r20/external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/
H A Dsource.pass.cpp69 using It = input_iterator<const CharT*>; in RunTestCaseImpl() typedef
75 using It = input_iterator<const CharT*>; in RunTestCaseImpl() typedef
93 using It = const char* const; in test_sfinae() typedef
97 using It = input_iterator<const char*>; in test_sfinae() typedef
108 using It = input_iterator<const char*, Traits>; in test_sfinae() typedef
112 using It = output_iterator<const char*>; in test_sfinae() typedef
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/filesystems/class.path/path.member/path.construct/
H A Dsource.pass.cpp72 using It = cpp17_input_iterator<const CharT*>; in RunTestCaseImpl() typedef
78 using It = cpp17_input_iterator<const CharT*>; in RunTestCaseImpl() typedef
99 using It = const char* const; in test_sfinae() typedef
103 using It = cpp17_input_iterator<const char*>; in test_sfinae() typedef
114 using It = cpp17_input_iterator<const char*, Traits>; in test_sfinae() typedef
118 using It = cpp17_output_iterator<const char*>; in test_sfinae() typedef
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/XRay/
DGraph.h213 auto It = NL.find(A); in begin() local
220 auto It = NL.find(A); in cbegin() local
229 auto It = NL.find(A); in end() local
235 auto It = NL.find(A); in cend() local
399 auto It = Vertices.find(I); in at() local
408 auto It = Vertices.find(I); in at() local
418 auto It = Edges.find(I); in at() local
427 auto It = Edges.find(I); in at() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/XRay/
H A DGraph.h213 auto It = NL.find(A); in begin() local
220 auto It = NL.find(A); in cbegin() local
229 auto It = NL.find(A); in end() local
235 auto It = NL.find(A); in cend() local
399 auto It = Vertices.find(I); in at() local
408 auto It = Vertices.find(I); in at() local
418 auto It = Edges.find(I); in at() local
427 auto It = Edges.find(I); in at() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/XRay/
DGraph.h213 auto It = NL.find(A); in begin() local
220 auto It = NL.find(A); in cbegin() local
229 auto It = NL.find(A); in end() local
235 auto It = NL.find(A); in cend() local
399 auto It = Vertices.find(I); in at() local
408 auto It = Vertices.find(I); in at() local
418 auto It = Edges.find(I); in at() local
427 auto It = Edges.find(I); in at() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
H A DGraph.h213 auto It = NL.find(A); in begin() local
220 auto It = NL.find(A); in cbegin() local
229 auto It = NL.find(A); in end() local
235 auto It = NL.find(A); in cend() local
399 auto It = Vertices.find(I); in at() local
408 auto It = Vertices.find(I); in at() local
418 auto It = Edges.find(I); in at() local
427 auto It = Edges.find(I); in at() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/XRay/
DGraph.h213 auto It = NL.find(A); in begin() local
220 auto It = NL.find(A); in cbegin() local
229 auto It = NL.find(A); in end() local
235 auto It = NL.find(A); in cend() local
399 auto It = Vertices.find(I); in at() local
408 auto It = Vertices.find(I); in at() local
418 auto It = Edges.find(I); in at() local
427 auto It = Edges.find(I); in at() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/XRay/
DGraph.h213 auto It = NL.find(A); in begin() local
220 auto It = NL.find(A); in cbegin() local
229 auto It = NL.find(A); in end() local
235 auto It = NL.find(A); in cend() local
399 auto It = Vertices.find(I); in at() local
408 auto It = Vertices.find(I); in at() local
418 auto It = Edges.find(I); in at() local
427 auto It = Edges.find(I); in at() local
/aosp_15_r20/external/libcxx/test/std/containers/unord/
H A Diterator_difference_type.pass.cpp23 typedef typename Map::iterator It; in testUnorderedMap() typedef
30 typedef typename Map::const_iterator It; in testUnorderedMap() typedef
37 typedef typename Map::local_iterator It; in testUnorderedMap() typedef
44 typedef typename Map::const_local_iterator It; in testUnorderedMap() typedef
61 typedef typename Set::iterator It; in testUnorderedSet() typedef
69 typedef typename Set::local_iterator It; in testUnorderedSet() typedef
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/unord/
H A Diterator_difference_type.pass.cpp22 typedef typename Map::iterator It; in testUnorderedMap() typedef
29 typedef typename Map::const_iterator It; in testUnorderedMap() typedef
36 typedef typename Map::local_iterator It; in testUnorderedMap() typedef
43 typedef typename Map::const_local_iterator It; in testUnorderedMap() typedef
60 typedef typename Set::iterator It; in testUnorderedSet() typedef
68 typedef typename Set::local_iterator It; in testUnorderedSet() typedef
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AMDGPU/
H A DR600OptimizeVectorRegisters.cpp153 for (auto &It : ToMerge->RegToChan) { in tryMergeVector() local
192 for (const auto &It : RSI->RegToChan) { in RebuildVector() local
218 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in RebuildVector() local
235 for (auto &It : PreviousRegSeqByReg) { in RemoveMI() local
239 for (auto &It : PreviousRegSeqByUndefCount) { in RemoveMI() local
264 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in areAllUsesSwizzeable() local
307 It = RSI.RegToChan.begin(), E = RSI.RegToChan.end(); It != E; ++It) { in trackRSI() local
334 It = MRI->def_instr_begin(Reg), E = MRI->def_instr_end(); in runOnMachineFunction() local

12345678910>>...39