Searched refs:s_blockMask (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DHandleBlock.h56 static const size_t s_blockMask = ~(blockSize - 1); member in class:JSC::HandleBlock
63 return reinterpret_cast<HandleBlock*>(reinterpret_cast<size_t>(node) & s_blockMask);
H A DCopiedSpace.h122 static const size_t s_blockMask = ~(CopiedBlock::blockSize - 1); member in class:JSC::CopiedSpace
H A DCopiedSpaceInlines.h174 return reinterpret_cast<CopiedBlock*>(reinterpret_cast<size_t>(ptr) & s_blockMask);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFETurbulence.h75 static const int s_blockMask = s_blockSize - 1; member in class:WebCore::FETurbulence
H A DFETurbulence.cpp243 noiseX.noisePositionIntegerValue &= s_blockMask;
244 noiseY.noisePositionIntegerValue &= s_blockMask;
246 int nextLatticeIndex = paintingData.latticeSelector[(noiseX.noisePositionIntegerValue + 1) & s_blockMask];
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gpu/opencl/
H A DOpenCLFETurbulence.cpp42 __constant int s_blockMask = 255;
82 noiseX.noisePositionIntegerValue &= s_blockMask;
83 noiseY.noisePositionIntegerValue &= s_blockMask;
85 int nextLatticeIndex = latticeSelector[(noiseX.noisePositionIntegerValue + 1) & s_blockMask];

Completed in 72 milliseconds