OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CurArray
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/ADT/
SmallPtrSet.h
56
///
CurArray
- This is the current set of buckets. If equal to SmallArray,
58
const void **
CurArray
;
59
/// CurArraySize - The allocated size of
CurArray
, always a power of two.
62
/// Number of elements in
CurArray
that contain a value or are a tombstone.
63
/// If small, all these elements are at the beginning of
CurArray
and the rest
66
/// Number of tombstones in
CurArray
.
75
: SmallArray(SmallStorage),
CurArray
(SmallStorage),
82
free(
CurArray
);
97
memset(
CurArray
, -1, CurArraySize * sizeof(void *));
113
return isSmall() ?
CurArray
+ NumNonEmpty : CurArray + CurArraySize
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
SmallPtrSet.h
56
///
CurArray
- This is the current set of buckets. If equal to SmallArray,
58
const void **
CurArray
;
59
/// CurArraySize - The allocated size of
CurArray
, always a power of two.
62
/// Number of elements in
CurArray
that contain a value or are a tombstone.
63
/// If small, all these elements are at the beginning of
CurArray
and the rest
66
/// Number of tombstones in
CurArray
.
76
: SmallArray(SmallStorage),
CurArray
(SmallStorage),
84
free(
CurArray
);
103
memset(
CurArray
, -1, CurArraySize * sizeof(void *));
120
return isSmall() ?
CurArray
+ NumNonEmpty : CurArray + CurArraySize
[
all
...]
/external/swiftshader/third_party/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
...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
SmallPtrSet.h
62
///
CurArray
- This is the current set of buckets. If equal to SmallArray,
64
const void **
CurArray
;
65
/// CurArraySize - The allocated size of
CurArray
, always a power of two.
68
/// Number of elements in
CurArray
that contain a value or are a tombstone.
69
/// If small, all these elements are at the beginning of
CurArray
and the rest
72
/// Number of tombstones in
CurArray
.
82
: SmallArray(SmallStorage),
CurArray
(SmallStorage),
90
free(
CurArray
);
108
memset(
CurArray
, -1, CurArraySize * sizeof(void *));
125
return isSmall() ?
CurArray
+ NumNonEmpty : CurArray + CurArraySize
[
all
...]
Completed in 1163 milliseconds