OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AlignedMemory
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/base/memory/
aligned_memory_unittest.cc
14
using base::
AlignedMemory
;
17
static
AlignedMemory
<8, 8> raw8;
18
static
AlignedMemory
<8, 16> raw16;
19
static
AlignedMemory
<8, 256> raw256;
20
static
AlignedMemory
<8, 4096> raw4096;
34
AlignedMemory
<8, 8> raw8;
35
AlignedMemory
<8, 16> raw16;
36
AlignedMemory
<8, 128> raw128;
53
AlignedMemory
<8, 256> raw256;
59
AlignedMemory
<8, 4096> raw4096
[
all
...]
aligned_memory.h
5
//
AlignedMemory
is a POD type that gives you a portable way to specify static
9
// destruction), use
AlignedMemory
:
11
// static
AlignedMemory
<sizeof(MyClass), ALIGNOF(MyClass)> my_class;
49
//
AlignedMemory
is specialized for all supported alignments.
52
struct
AlignedMemory
{};
56
class
AlignedMemory
<Size, byte_alignment> { \
singleton_unittest.cc
270
using base::
AlignedMemory
;
277
AlignedTestSingleton<
AlignedMemory
<32, 32> >* align32 =
278
AlignedTestSingleton<
AlignedMemory
<32, 32> >::GetInstance();
279
AlignedTestSingleton<
AlignedMemory
<128, 128> >* align128 =
280
AlignedTestSingleton<
AlignedMemory
<128, 128> >::GetInstance();
281
AlignedTestSingleton<
AlignedMemory
<4096, 4096> >* align4096 =
282
AlignedTestSingleton<
AlignedMemory
<4096, 4096> >::GetInstance();
singleton.h
130
static base::
AlignedMemory
<sizeof(Type), ALIGNOF(Type)> buffer_;
135
template <typename Type> base::
AlignedMemory
<sizeof(Type), ALIGNOF(Type)>
manual_constructor.h
117
AlignedMemory
<sizeof(Type), __alignof(Type)> space_;
119
AlignedMemory
<sizeof(Type), __alignof__(Type)> space_;
/external/webrtc/src/system_wrappers/source/
aligned_malloc.cc
40
// interpret the first sizeof(
AlignedMemory
) bytes as
41
// an
AlignedMemory
struct.
42
struct
AlignedMemory
61
AlignedMemory
* returnValue = new
AlignedMemory
();
69
// A pointer to
AlignedMemory
must be stored so that it can be retreived for
91
// Store the address to the
AlignedMemory
struct in the header so that a
111
// Read out the address of the
AlignedMemory
struct from the header.
113
AlignedMemory
* deleteMemory = (
AlignedMemory
*) *headerPtr
[
all
...]
/external/chromium_org/base/
lazy_instance.h
192
base::
AlignedMemory
<sizeof(Type), ALIGNOF(Type)> private_buf_;
lazy_instance_unittest.cc
151
base::
AlignedMemory
<alignment, alignment> data_;
/external/chromium_org/base/containers/
stack_container.h
58
base::
AlignedMemory
<sizeof(T[stack_capacity]), ALIGNOF(T)> stack_buffer_;
stack_container_unittest.cc
109
base::
AlignedMemory
<alignment, alignment> data_;
Completed in 919 milliseconds