OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:atomSize
(Results
1 - 4
of
4
) 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
;
/frameworks/base/media/libstagefright/
MPEG4Extractor.cpp
[
all
...]
Completed in 55 milliseconds