Home
last modified time | relevance | path

Searched refs:WTF_ALIGN_OF (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
DAlignment.h31 #define WTF_ALIGN_OF(type) __alignof__(type) macro
34 #define WTF_ALIGN_OF(type) __alignof(type)
DSizeLimits.cpp76 AlignedBuffer<inlineCapacity * sizeof(T), WTF_ALIGN_OF(T)> inlineBuffer;
DListHashSet.h349 AlignedBuffer<sizeof(NodeBase) * m_poolSize, WTF_ALIGN_OF(NodeBase)> m_pool;
DVector.h501 AlignedBuffer<m_inlineBufferSize, WTF_ALIGN_OF(T)> m_inlineBuffer;
/external/chromium_org/third_party/WebKit/Source/platform/
DPODArena.h121 return WTF_ALIGN_OF(T); in minAlignment()