Home
last modified time | relevance | path

Searched refs:SmallSize (Results 1 – 3 of 3) sorted by relevance

/external/llvm/include/llvm/ADT/
DSmallPtrSet.h66 explicit SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize) : in SmallPtrSetImpl() argument
67 SmallArray(SmallStorage), CurArray(SmallStorage), CurArraySize(SmallSize) { in SmallPtrSetImpl()
68 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 && in SmallPtrSetImpl()
72 CurArray[SmallSize] = 0; in SmallPtrSetImpl()
234 template<class PtrType, unsigned SmallSize>
237 enum { SmallSizePowTwo = RoundUpToPowerOfTwo<SmallSize>::Val };
285 const SmallPtrSet<PtrType, SmallSize>&
286 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
292 void swap(SmallPtrSet<PtrType, SmallSize> &RHS) {
DSmallBitVector.h273 size_t SmallSize = getSmallSize(); in reserve() local
274 BitVector *BV = new BitVector(SmallSize); in reserve()
275 for (size_t i = 0; i < SmallSize; ++i) in reserve()
/external/llvm/include/llvm/Transforms/IPO/
DInlinerPass.h26 template<class PtrType, unsigned SmallSize>