Home
last modified time | relevance | path

Searched refs:find_next (Results 1 – 25 of 74) sorted by relevance

123

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DBitVectorTest.cpp77 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) { in TYPED_TEST()
107 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) { in TYPED_TEST()
201 EXPECT_EQ(13, A.find_next(12)); in TYPED_TEST()
202 EXPECT_EQ(75, A.find_next(13)); in TYPED_TEST()
203 EXPECT_EQ(-1, A.find_next(75)); in TYPED_TEST()
226 EXPECT_EQ(99, A.find_next(98)); in TYPED_TEST()
243 EXPECT_EQ(3, A.find_next(1)); in TYPED_TEST()
244 EXPECT_EQ(4, A.find_next(3)); in TYPED_TEST()
245 EXPECT_EQ(16, A.find_next(4)); in TYPED_TEST()
246 EXPECT_EQ(-1, A.find_next(16)); in TYPED_TEST()
/external/llvm/lib/Target/Hexagon/
DHexagonGenInsert.cpp90 unsigned find_next(unsigned Prev) const { in find_next() function
91 int Next = BitVector::find_next(v2x(Prev)); in find_next()
170 for (unsigned R = P.RS.find_first(); R; R = P.RS.find_next(R)) in operator <<()
917 for (unsigned VR = InsDefs.find_first(); VR; VR = InsDefs.find_next(VR)) { in collectInBlock()
935 for (unsigned VR = InsDefs.find_first(); VR; VR = InsDefs.find_next(VR)) in collectInBlock()
948 for (unsigned VR = BlockDefs.find_first(); VR; VR = BlockDefs.find_next(VR)) in collectInBlock()
968 for (unsigned R = Regs[S].find_first(); R; R = Regs[S].find_next(R)) { in findRemovableRegisters()
1234 for (unsigned R = Rs.find_first(); R; R = Rs.find_next(R)) { in stats()
1262 for (unsigned R = TT.find_first(); R; R = TT.find_next(R)) in selectCandidates()
1267 for (unsigned R = AllRMs.find_first(); R; R = AllRMs.find_next(R)) { in selectCandidates()
[all …]
DHexagonFrameLowering.cpp1231 for (int x = Regs.find_first(); x >= 0; x = Regs.find_next(x)) { in dump_registers()
1266 for (int x = Reserved.find_first(); x >= 0; x = Reserved.find_next(x)) { in assignCalleeSavedSpillSlots()
1279 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
1284 for (int x = TmpSup.find_first(); x >= 0; x = TmpSup.find_next(x)) { in assignCalleeSavedSpillSlots()
1301 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
1333 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
1362 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
2295 int N = Regs.find_next(F); in shouldInlineCSR()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonGenInsert.cpp106 unsigned find_next(unsigned Prev) const { in find_next() function
107 int Next = BitVector::find_next(v2x(Prev)); in find_next()
189 for (unsigned R = P.RS.find_first(); R; R = P.RS.find_next(R)) in operator <<()
954 for (unsigned VR = InsDefs.find_first(); VR; VR = InsDefs.find_next(VR)) { in collectInBlock()
975 for (unsigned VR = InsDefs.find_first(); VR; VR = InsDefs.find_next(VR)) in collectInBlock()
985 for (unsigned VR = BlockDefs.find_first(); VR; VR = BlockDefs.find_next(VR)) in collectInBlock()
1004 for (unsigned R = Regs[S].find_first(); R; R = Regs[S].find_next(R)) { in findRemovableRegisters()
1268 for (unsigned R = Rs.find_first(); R; R = Rs.find_next(R)) { in stats()
1295 for (unsigned R = TT.find_first(); R; R = TT.find_next(R)) in selectCandidates()
1300 for (unsigned R = AllRMs.find_first(); R; R = AllRMs.find_next(R)) { in selectCandidates()
[all …]
DRDFRegisters.cpp337 U = Units.find_next(U); in makeRegRef()
345 U = Units.find_next(U); in makeRegRef()
367 for (int U = Units.find_first(); U >= 0; U = Units.find_next(U)) in print()
375 for (int U = RG.Units.find_first(); U >= 0; U = RG.Units.find_next(U)) { in rr_iterator()
DHexagonFrameLowering.cpp323 for (int x = CSR.find_first(); x >= 0; x = CSR.find_next(x)) { in needsStackFrame()
1389 for (int x = Regs.find_first(); x >= 0; x = Regs.find_next(x)) { in dump_registers()
1423 for (int x = Reserved.find_first(); x >= 0; x = Reserved.find_next(x)) { in assignCalleeSavedSpillSlots()
1438 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
1443 for (int x = TmpSup.find_first(); x >= 0; x = TmpSup.find_next(x)) { in assignCalleeSavedSpillSlots()
1462 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
1496 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
1526 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
2413 int N = Regs.find_next(F); in shouldInlineCSR()
/external/swiftshader/third_party/subzero/src/
DIceBitVector.h101 int find_next(unsigned Prev) const { return find_next<0>(Prev); } in find_next() function
210 find_next(unsigned) const { in find_next() function
216 Pos<BitsElements, int>::type find_next(unsigned Prev) const {
226 return find_next<Pos + 1>(Prev);
397 int find_next(unsigned Prev) const { in find_next() function
/external/swiftshader/third_party/LLVM/unittests/ADT/
DBitVectorTest.cpp67 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) { in TEST()
97 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) { in TEST()
DSmallBitVectorTest.cpp64 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) { in TEST()
94 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) { in TEST()
/external/llvm/lib/CodeGen/
DStackSlotColoring.cpp245 Color = UsedColors.find_next(Color); in ColorSlot()
255 NextColor = AllColors.find_next(NextColor); in ColorSlot()
339 NextColor = AllColors.find_next(NextColor); in ColorSlots()
DSpillPlacement.cpp313 for (int n = ActiveNodes->find_first(); n>=0; n = ActiveNodes->find_next(n)) { in scanActiveBundles()
368 for (int n = ActiveNodes->find_first(); n>=0; n = ActiveNodes->find_next(n)) in finish()
DSafeStackColoring.h135 idx = V.find_next(idx);
DGlobalMerge.cpp437 for (j = i; j != -1; j = GlobalSet.find_next(j)) { in doMerge()
454 for (ssize_t k = i, idx = 0; k != j; k = GlobalSet.find_next(k), ++idx) { in doMerge()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DStackSlotColoring.cpp285 Color = UsedColors[StackID].find_next(Color); in ColorSlot()
300 NextColors[StackID] = AllColors[StackID].find_next(NextColors[StackID]); in ColorSlot()
387 NextColor = AllColors[StackID].find_next(NextColor); in ColorSlots()
DSafeStackColoring.h151 idx = V.find_next(idx);
DGlobalMerge.cpp462 for (j = i; j != -1; j = GlobalSet.find_next(j)) { in doMerge()
521 for (ssize_t k = i, idx = 0; k != j; k = GlobalSet.find_next(k), ++idx) { in doMerge()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DSpillPlacement.cpp284 for (int n = ActiveNodes->find_first(); n>=0; n = ActiveNodes->find_next(n)) { in scanActiveBundles()
362 for (int n = ActiveNodes->find_first(); n>=0; n = ActiveNodes->find_next(n)) in finish()
DStackSlotColoring.cpp338 Color = UsedColors.find_next(Color); in ColorSlot()
348 NextColor = AllColors.find_next(NextColor); in ColorSlot()
438 NextColor = AllColors.find_next(NextColor); in ColorSlots()
DMachineRegisterInfo.cpp247 i = UsedPhysRegs.find_next(i)) in closePhysRegsUsed()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DSmallBitVector.h222 int find_next(unsigned Prev) const { in find_next() function
235 return getPointer()->find_next(Prev); in find_next()
/external/llvm/lib/Analysis/
DDependenceAnalysis.cpp2986 for (int LI = Loops.find_first(); LI >= 0; LI = Loops.find_next(LI)) { in propagate()
3268 for (int VI = BV.find_first(); VI >= 0; VI = BV.find_next(VI)) { in dumpSmallBitVector()
3270 if (BV.find_next(VI) >= 0) in dumpSmallBitVector()
3508 for (int SI = Separable.find_first(); SI >= 0; SI = Separable.find_next(SI)) { in depends()
3547 for (int SI = Coupled.find_first(); SI >= 0; SI = Coupled.find_next(SI)) { in depends()
3554 for (int SJ = Group.find_first(); SJ >= 0; SJ = Group.find_next(SJ)) { in depends()
3566 for (int SJ = Sivs.find_first(); SJ >= 0; SJ = Sivs.find_next(SJ)) { in depends()
3590 for (int SJ = Mivs.find_first(); SJ >= 0; SJ = Mivs.find_next(SJ)) { in depends()
3624 for (int SJ = Mivs.find_first(); SJ >= 0; SJ = Mivs.find_next(SJ)) { in depends()
3637 for (int SJ = Mivs.find_first(); SJ >= 0; SJ = Mivs.find_next(SJ)) { in depends()
[all …]
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyRegColoring.cpp144 C = UsedColors.find_next(C)) { in runOnMachineFunction()
/external/llvm/unittests/ADT/
DBitVectorTest.cpp77 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) { in TYPED_TEST()
107 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) { in TYPED_TEST()
/external/llvm/include/llvm/ADT/
DSmallBitVector.h221 int find_next(unsigned Prev) const { in find_next() function
230 return getPointer()->find_next(Prev); in find_next()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DSmallBitVector.h275 int find_next(unsigned Prev) const { in find_next() function
284 return getPointer()->find_next(Prev); in find_next()

123