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
25
free(
CurArray
);
32
CurArray
= (const void**)malloc(sizeof(void*) * CurArraySize);
33
assert(
CurArray
&& "Failed to allocate memory?");
34
memset(
CurArray
, -1, CurArraySize*sizeof(void*));
105
const void *const *Array =
CurArray
;
134
const void **OldBuckets =
CurArray
;
138
CurArray
= (const void**)malloc(sizeof(void*) * NewSize);
139
assert(
CurArray
&& "Failed to allocate memory?");
141
memset(
CurArray
, -1, NewSize*sizeof(void*));
172
CurArray
= SmallArray
[
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.
66
SmallArray(SmallStorage),
CurArray
(SmallStorage), CurArraySize(SmallSize) {
84
memset(
CurArray
, -1, CurArraySize*sizeof(void*));
123
bool isSmall() const { return
CurArray
== SmallArray; }
277
return iterator(
CurArray
,
CurArray
+CurArraySize);
280
return iterator(
CurArray
+CurArraySize,
CurArray
+CurArraySize)
[
all
...]
Completed in 591 milliseconds