OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurArray
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Support/
SmallPtrSet.cpp
23
free(
CurArray
);
30
CurArray
= (const void**)malloc(sizeof(void*) * (CurArraySize+1));
31
assert(
CurArray
&& "Failed to allocate memory?");
32
memset(
CurArray
, -1, CurArraySize*sizeof(void*));
36
CurArray
[CurArraySize] = 0;
107
const void *const *Array =
CurArray
;
136
const void **OldBuckets =
CurArray
;
140
CurArray
= (const void**)malloc(sizeof(void*) * (NewSize+1));
141
assert(
CurArray
&& "Failed to allocate memory?");
143
memset(
CurArray
, -1, NewSize*sizeof(void*))
[
all
...]
/external/llvm/include/llvm/ADT/
SmallPtrSet.h
52
///
CurArray
- This is the current set of buckets. If equal to SmallArray,
54
const void **
CurArray
;
55
/// CurArraySize - The allocated size of
CurArray
, always a power of two.
56
/// Note that
CurArray
points to an array that has CurArraySize+1 elements in
67
SmallArray(SmallStorage),
CurArray
(SmallStorage), CurArraySize(SmallSize) {
72
CurArray
[SmallSize] = 0;
88
memset(
CurArray
, -1, CurArraySize*sizeof(void*));
127
bool isSmall() const { return
CurArray
== SmallArray; }
276
return iterator(
CurArray
);
279
return iterator(
CurArray
+CurArraySize)
[
all
...]
Completed in 395 milliseconds