OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Allocator
(Results
26 - 30
of
30
) sorted by null
1
2
/external/llvm/lib/CodeGen/
StrongPHIElimination.cpp
149
BumpPtrAllocator
Allocator
;
399
Allocator
.Reset();
412
RegNodeMap[Reg] = new (
Allocator
) Node(Reg);
[
all
...]
RegAllocLinearScan.cpp
1
//===-- RegAllocLinearScan.cpp - Linear Scan register
allocator
-----------===//
10
// This file implements a linear scan register
allocator
.
70
linearscanRegAlloc("linearscan", "linear scan register
allocator
",
198
return "Linear Scan Register
Allocator
";
391
"Linear Scan Register
Allocator
", false, false)
401
"Linear Scan Register
Allocator
", false, false)
677
// register
allocator
had to spill other registers in its register class.
909
const RALinScan &
Allocator
;
912
WeightCompare(const RALinScan &Alloc) :
Allocator
(Alloc) {}
[
all
...]
/external/llvm/include/llvm/ADT/
ImmutableSet.h
17
#include "llvm/Support/
Allocator
.h"
373
uintptr_t
Allocator
;
378
return
Allocator
& 0x1 ? false : true;
382
return *reinterpret_cast<BumpPtrAllocator*>(
Allocator
& ~0x1);
391
:
Allocator
(reinterpret_cast<uintptr_t>(new BumpPtrAllocator())) {}
394
:
Allocator
(reinterpret_cast<uintptr_t>(&Alloc) | 0x1) {}
[
all
...]
/external/bluetooth/glib/glib/
gslice.c
1
/* GLIB sliced memory - fast concurrent memory chunk
allocator
48
/* the GSlice
allocator
is split up into 4 layers, roughly modelled after the slab
49
*
allocator
and magazine extensions as outlined in:
50
* + [Bonwick94] Jeff Bonwick, The slab
allocator
: An object-caching kernel
51
* memory
allocator
. USENIX 1994, http://citeseer.ist.psu.edu/bonwick94slab.html
53
* slab
allocator
to many cpu's and arbitrary resources.
68
* - the slab
allocator
. this
allocator
allocates slabs (blocks of memory) close
77
* - the page
allocator
. on most modern systems, posix_memalign(3) or
83
*
allocator
with alloc-only behaviour is used
199
static Allocator
allocator
[1] = { { 0, }, };
variable
[
all
...]
/external/clang/lib/Sema/
SemaCodeComplete.cpp
121
/// \brief The
allocator
used to allocate new code-completion strings.
122
CodeCompletionAllocator &
Allocator
;
165
explicit ResultBuilder(Sema &SemaRef, CodeCompletionAllocator &
Allocator
,
168
: SemaRef(SemaRef),
Allocator
(
Allocator
), Filter(Filter),
249
/// \brief Retrieve the
allocator
used to allocate code completion strings.
250
CodeCompletionAllocator &getAllocator() const { return
Allocator
; }
[
all
...]
Completed in 797 milliseconds
1
2