Home
last modified time | relevance | path

Searched refs:oobMask (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dstreamout_jit.cpp200 Value* oobMask = C(false); in buildStream() local
203 oobMask = OR(oobMask, oob(state, pSoCtx, buffer)); in buildStream()
209 COND_BR(oobMask, returnBB, validBB); in buildStream()
/external/swiftshader/src/Pipeline/
DSpirvShaderImage.cpp727 SIMD::Int oobMask = As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(texelData.u), width)); in GetNonUniformTexelAddress() local
732 oobMask |= As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(texelData.v), height)); in GetNonUniformTexelAddress()
739 oobMask |= As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(texelData.w), depth)); in GetNonUniformTexelAddress()
745 oobMask |= As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(sample), sampleCount)); in GetNonUniformTexelAddress()
751 …texelData.ptrOffset = (texelData.ptrOffset & ~oobMask) | (oobMask & SIMD::Int(OOB_OFFSET)); // oo… in GetNonUniformTexelAddress()
787 SIMD::Int oobMask = As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(texelData.u), width)); in GetTexelAddress() local
792 oobMask |= As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(texelData.v), height)); in GetTexelAddress()
799 oobMask |= As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(texelData.w), SIMD::UInt(depth))); in GetTexelAddress()
805 oobMask |= As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(sample), sampleCount)); in GetTexelAddress()
811 …texelData.ptrOffset = (texelData.ptrOffset & ~oobMask) | (oobMask & SIMD::Int(OOB_OFFSET)); // oo… in GetTexelAddress()