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

  /external/webkit/Source/JavaScriptCore/wtf/wince/
FastMallocWinCE.h 83 typedef unsigned long long AllocAlignmentInteger;
117 const AllocAlignmentInteger* type = static_cast<const AllocAlignmentInteger*>(p) - 1;
122 inline AllocAlignmentInteger* fastMallocMatchValidationValue(void* p)
124 return reinterpret_cast<AllocAlignmentInteger*>(static_cast<char*>(p) - sizeof(AllocAlignmentInteger));
130 AllocAlignmentInteger* type = static_cast<AllocAlignmentInteger*>(p) - 1;
131 *type = static_cast<AllocAlignmentInteger>(allocType);
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h 94 typedef unsigned long long AllocAlignmentInteger;
127 const AllocAlignmentInteger* type = static_cast<const AllocAlignmentInteger*>(p) - 1;
132 inline AllocAlignmentInteger* fastMallocMatchValidationValue(void* p)
134 return reinterpret_cast<AllocAlignmentInteger*>(static_cast<char*>(p) - sizeof(AllocAlignmentInteger));
140 AllocAlignmentInteger* type = static_cast<AllocAlignmentInteger*>(p) - 1;
141 *type = static_cast<AllocAlignmentInteger>(allocType);
FastAllocBase.h 211 // AllocAlignmentInteger m_size;
217 AllocAlignmentInteger* size;
259 void* p = fastMalloc(sizeof(AllocAlignmentInteger) + (sizeof(T) * count));
260 ArraySize<T> a = { static_cast<AllocAlignmentInteger*>(p) };
279 void* p = fastMalloc(sizeof(AllocAlignmentInteger) + (sizeof(T) * count));
280 ArraySize<T> a = { static_cast<AllocAlignmentInteger*>(p) };
FastMalloc.cpp 222 if (std::numeric_limits<size_t>::max() - sizeof(AllocAlignmentInteger) <= n) // If overflow would occur...
225 void* result = malloc(n + sizeof(AllocAlignmentInteger));
229 *static_cast<AllocAlignmentInteger*>(result) = Internal::AllocTypeMalloc;
230 result = static_cast<AllocAlignmentInteger*>(result) + 1;
270 if (n_elements > 1 && element_size && (totalBytes / element_size) != n_elements || (std::numeric_limits<size_t>::max() - sizeof(AllocAlignmentInteger) <= totalBytes))
273 totalBytes += sizeof(AllocAlignmentInteger);
279 *static_cast<AllocAlignmentInteger*>(result) = Internal::AllocTypeMalloc;
280 result = static_cast<AllocAlignmentInteger*>(result) + 1;
321 AllocAlignmentInteger* header = Internal::fastMallocMatchValidationValue(p);
336 if (std::numeric_limits<size_t>::max() - sizeof(AllocAlignmentInteger) <= n) // If overflow would occur..
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
ParserArena.h 114 return (size + sizeof(WTF::AllocAlignmentInteger) - 1) & ~(sizeof(WTF::AllocAlignmentInteger) - 1);
  /external/webkit/Source/WebCore/platform/
Arena.h 46 // FIXME: We'd always like to use AllocAlignmentInteger for Arena alignment
49 #define ARENA_ALIGN_MASK (sizeof(WTF::AllocAlignmentInteger) - 1)

Completed in 3668 milliseconds