Searched defs:CurArray (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DSmallPtrSet.h53 /// CurArray - This is the current set of buckets. If equal to SmallArray,
55 const void **CurArray; member in class:llvm::SmallPtrSetImpl
56 /// CurArraySize - The allocated size of CurArray, always a power of two.
57 /// Note that CurArray points to an array that has CurArraySize+1 elements in
68 SmallArray(SmallStorage), CurArray(SmallStorage), CurArraySize(SmallSize) {
73 CurArray[SmallSize] = 0;
89 memset(CurArray, -1, CurArraySize*sizeof(void*));
128 bool isSmall() const { return CurArray == SmallArray; }
278 return iterator(CurArray);
281 return iterator(CurArray
[all...]

Completed in 173 milliseconds