Home
last modified time | relevance | path

Searched refs:AtLeast (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/gnu/llvm/llvm/include/llvm/ADT/
DDenseMap.h536 void grow(unsigned AtLeast) { in grow() argument
537 static_cast<DerivedT *>(this)->grow(AtLeast); in grow()
802 void grow(unsigned AtLeast) { in grow() argument
806 allocateBuckets(std::max<unsigned>(64, static_cast<unsigned>(NextPowerOf2(AtLeast-1)))); in grow()
1043 void grow(unsigned AtLeast) { in grow() argument
1044 if (AtLeast > InlineBuckets) in grow()
1045 AtLeast = std::max<unsigned>(64, NextPowerOf2(AtLeast-1)); in grow()
1073 if (AtLeast > InlineBuckets) { in grow()
1075 new (getLargeRep()) LargeRep(allocateBuckets(AtLeast)); in grow()
1083 if (AtLeast <= InlineBuckets) { in grow()
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_dense_map.h392 void grow(unsigned AtLeast) { static_cast<DerivedT *>(this)->grow(AtLeast); } in grow() argument
644 void grow(unsigned AtLeast) { in grow() argument
648 allocateBuckets(RoundUpToPowerOfTwo(Max<unsigned>(64, AtLeast))); in grow()
/openbsd/src/gnu/llvm/llvm/lib/Target/ARC/Disassembler/
DARCDisassembler.cpp182 static const uint64_t AtLeast = 2; in DecodeSymbolicOperand() local
184 Inst, Value, Address, true, 0, AtLeast, 0)); in DecodeSymbolicOperand()
/openbsd/src/gnu/llvm/llvm/lib/Target/AMDGPU/
DAMDGPUCodeGenPrepare.cpp173 unsigned AtLeast, bool Signed) const;
887 unsigned AtLeast, bool IsSigned) const { in getDivNumBits() argument
890 if (LHSSignBits < AtLeast) in getDivNumBits()
894 if (RHSSignBits < AtLeast) in getDivNumBits()