OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Alloc
(Results
1 - 7
of
7
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
tsan_dense_alloc_test.cc
25
typedef DenseSlabAlloc<int, 128, 128>
Alloc
;
26
typedef
Alloc
::Cache Cache;
27
typedef
Alloc
::IndexT IndexT;
30
Alloc
alloc
;
local in function:__tsan::TEST
32
alloc
.InitCache(&cache);
37
IndexT idx =
alloc
.
Alloc
(&cache);
40
int *v =
alloc
.Map(idx);
46
int *v =
alloc
.Map(idx)
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_flag_parser.h
120
static LowLevelAllocator
Alloc
;
135
FlagHandler<T> *fh = new (FlagParser::
Alloc
) FlagHandler<T>(var); // NOLINT
sanitizer_flag_parser.cc
23
LowLevelAllocator FlagParser::
Alloc
;
53
char *s2 = (char*)
Alloc
.Allocate(len + 1);
168
flags_ = (Flag *)
Alloc
.Allocate(sizeof(Flag) * kMaxFlags);
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_dense_alloc.h
47
// Check that it makes sense to use the dense
alloc
.
62
IndexT
Alloc
(Cache *c) {
/src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_allocator.h
181
void *
Alloc
() XRAY_NEVER_INSTRUMENT {
278
Block Allocate() XRAY_NEVER_INSTRUMENT { return {
Alloc
()}; }
xray_segmented_array.h
165
AllocatorType *
Alloc
;
253
auto SegmentBlock =
Alloc
->Allocate();
298
:
Alloc
(&A),
304
Array() XRAY_NEVER_INSTRUMENT :
Alloc
(nullptr),
313
Array(Array &&O) XRAY_NEVER_INSTRUMENT :
Alloc
(O.
Alloc
),
318
O.
Alloc
= nullptr;
326
Alloc
= O.
Alloc
;
327
O.
Alloc
= nullptr
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
segmented_array_test.cc
315
PtrArray::AllocatorType
Alloc
(16384);
316
Array<int *> A(
Alloc
);
332
PtrArray::AllocatorType
Alloc
(4096);
333
Array<int *> A(
Alloc
);
Completed in 148 milliseconds
Indexes created Sat Sep 20 22:09:52 GMT 2025