Searched defs:atomSize (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/heap/
H A DMarkedBlock.h41 static const size_t atomSize = sizeof(double); // Ensures natural alignment for all built-in types. member in class:JSC::MarkedBlock
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...]

Completed in 126 milliseconds