HomeSort by relevance Sort by last modified time
    Searched refs:ARENA_ALIGN (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/platform/
Arena.h 78 #define ARENA_ALIGN(n) (((uword)(n) + ARENA_ALIGN_MASK) & ~ARENA_ALIGN_MASK)
84 unsigned int _nb = ARENA_ALIGN(nb); \
95 unsigned int _incr = ARENA_ALIGN(incr); \
98 if (_p == (uword)(p) + ARENA_ALIGN(size) && \
124 _a->avail = (uword)ARENA_ALIGN(_m); \
Arena.cpp 100 (uword)ARENA_ALIGN(&pool->first + 1);
132 nb = (uword)ARENA_ALIGN(nb); /* force alignment */
184 a->base = a->avail = (uword)ARENA_ALIGN(a + 1);
  /external/webkit/Source/WebCore/rendering/
RenderArena.cpp 58 static const size_t debugHeaderSize = ARENA_ALIGN(sizeof(RenderArenaDebugHeader));

Completed in 227 milliseconds