HomeSort by relevance Sort by last modified time
    Searched defs:AlignedMemory (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/base/memory/
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> { \
  /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...]

Completed in 434 milliseconds