OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SMALLARRAYCAP
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
array.h
22
#define
SMALLARRAYCAP
1
23
TYPE smallarray[
SMALLARRAYCAP
]; // inline storage for small arrays
87
if (nentries <=
SMALLARRAYCAP
)
89
data.length =
SMALLARRAYCAP
;
90
data.ptr =
SMALLARRAYCAP
? &smallarray[0] : NULL;
98
else if (data.length ==
SMALLARRAYCAP
)
array.d
36
enum
SMALLARRAYCAP
= 1;
37
T[
SMALLARRAYCAP
] smallarray; // inline storage for small arrays
149
if (nentries <=
SMALLARRAYCAP
)
151
data =
SMALLARRAYCAP
? smallarray[] : null;
159
else if (data.length ==
SMALLARRAYCAP
)
Completed in 16 milliseconds
Indexes created Sat Sep 12 00:25:55 UTC 2026