HomeSort by relevance Sort by last modified time
    Searched refs:CurArray (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Support/
SmallPtrSet.cpp 25 free(CurArray);
32 CurArray = (const void**)malloc(sizeof(void*) * (CurArraySize+1));
33 assert(CurArray && "Failed to allocate memory?");
34 memset(CurArray, -1, CurArraySize*sizeof(void*));
38 CurArray[CurArraySize] = 0;
109 const void *const *Array = CurArray;
138 const void **OldBuckets = CurArray;
142 CurArray = (const void**)malloc(sizeof(void*) * (NewSize+1));
143 assert(CurArray && "Failed to allocate memory?");
145 memset(CurArray, -1, NewSize*sizeof(void*))
    [all...]
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 53 /// CurArray - This is the current set of buckets. If equal to SmallArray,
55 const void **CurArray;
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+CurArraySize)
    [all...]

Completed in 21 milliseconds