Searched refs:lower_bound (Results 76 - 100 of 131) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRMemoryMap.cpp169 AllocationMap::iterator iter = m_allocations.lower_bound(addr);
187 AllocationMap::const_iterator iter = m_allocations.lower_bound(addr);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenInsert.cpp444 iterator L = llvm::lower_bound(Seq, VR, Ord);
457 iterator L = llvm::lower_bound(Seq, VR, Ord);
838 iterator NewB = std::lower_bound(B, E, VR, RCB);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp87 // Support lower_bound between info and an option name.
349 Start = std::lower_bound(Start, End, Name.data());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DSourceMgr.cpp98 // llvm::lower_bound gives the number of EOL before PtrOffset. Add 1 to get
100 return llvm::lower_bound(*Offsets, PtrOffset) - Offsets->begin() + 1;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DDiagnosticIDs.cpp294 std::map<DiagDesc, unsigned>::iterator I = DiagIDs.lower_bound(D);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp313 std::lower_bound(edges.begin(), edges.end(), return_pc,
H A DLineTable.cpp182 entry_collection::const_iterator pos = lower_bound(
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistry.cpp68 return llvm::lower_bound(Collection, CheckerOrPackage(FullName),
484 // Since lower_bound would look for the first element *not less* than "cor",
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/
H A DReplacement.cpp267 auto I = Replaces.lower_bound(AtEnd);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp475 auto It = llvm::lower_bound(Idx, SubstringAndIndex{Key, 0});
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp66 auto I = llvm::lower_bound(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsConstantIslandPass.cpp838 water_iterator IP = llvm::lower_bound(WaterList, NewBB, CompareMBBNumbers);
888 water_iterator IP = llvm::lower_bound(WaterList, OrigBB, CompareMBBNumbers);
H A DMips16ISelLowering.cpp459 llvm::lower_bound(Mips16IntrinsicHelper, IntrinsicFind);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dregex.c3844 int lower_bound = -1, upper_bound = -1;
3853 GET_UNSIGNED_NUMBER (lower_bound);
3863 upper_bound = lower_bound;
3865 if (! (0 <= lower_bound && lower_bound <= upper_bound))
3933 , lower_bound);
3944 + 2 * OFFSET_ADDRESS_SIZE, lower_bound, b);
3831 int lower_bound = -1, upper_bound = -1; local
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dregex.c3844 int lower_bound = -1, upper_bound = -1;
3853 GET_UNSIGNED_NUMBER (lower_bound);
3863 upper_bound = lower_bound;
3865 if (! (0 <= lower_bound && lower_bound <= upper_bound))
3933 , lower_bound);
3944 + 2 * OFFSET_ADDRESS_SIZE, lower_bound, b);
3831 int lower_bound = -1, upper_bound = -1; local
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveIntervals.cpp914 ArrayRef<SlotIndex>::iterator SlotI = llvm::lower_bound(Slots, LiveI->start);
1398 llvm::lower_bound(LIS.RegMaskSlots, OldIdx);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp452 std::lower_bound(DwarfRegNums.begin(), DwarfRegNums.end(), Alias,
459 std::lower_bound(DwarfRegNums.begin(), DwarfRegNums.end(), Reg,
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransformActions.cpp525 Inserts.lower_bound(newRange.End));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp3119 uint64_t lower_bound = 0; local
3160 lower_bound = form_value.Unsigned();
3186 if (upper_bound_valid && upper_bound >= lower_bound)
3187 num_elements = upper_bound - lower_bound + 1;
H A DDWARFUnit.cpp544 lower_bound(m_die_array.cbegin(), end, die_offset, CompareDIEOffset);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp747 std::lower_bound(begin, end, stack_id, CompareStackID);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp97 auto I = std::lower_bound(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp513 return std::lower_bound(Pointers.begin(), Pointers.end(), AddressSpace,
545 // the lower_bound will point to when it fails an exact match.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp715 UseMap::iterator Begin = Uses.lower_bound(RA);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp429 for (auto I = CTAEntries.lower_bound(std::make_pair(CTAName, 0)),

Completed in 408 milliseconds

123456