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

  /external/webkit/Source/JavaScriptCore/heap/
MarkedBlock.h 41 static const size_t atomSize = sizeof(double); // Ensures natural alignment for all built-in types.
83 static const size_t atomMask = ~(atomSize - 1); // atomSize must be a power of two.
85 static const size_t atomsPerBlock = blockSize / atomSize;
87 typedef char Atom[atomSize];
95 WTF::Bitmap<blockSize / atomSize> m_marks;
104 return WTF::roundUpToMultipleOf<atomSize>(sizeof(MarkedBlock)) / atomSize;
169 return m_atomsPerCell * atomSize;
195 return (reinterpret_cast<uintptr_t>(p) - reinterpret_cast<uintptr_t>(this)) / atomSize;
    [all...]
MarkedBlock.cpp 58 m_atomsPerCell = (cellSize + atomSize - 1) / atomSize;
MarkedSpace.h 84 static const size_t preciseStep = MarkedBlock::atomSize;

Completed in 426 milliseconds