Home
last modified time | relevance | path

Searched refs:_simd_cmpgt_ps (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Ddepthstencil.h151 case ZFUNC_GT: depthResult = _simd_cmpgt_ps(interpZ, zbuf); break; in DepthStencilTest()
202 case ZFUNC_GT: stencilMask = _simd_cmpgt_ps(stencilRef, stencilWithMask); break; in DepthStencilTest()
Dclip.h82 vRes = _simd_cmpgt_ps(vertex.x, vertex.w); in ComputeClipCodes()
86 vRes = _simd_cmpgt_ps(vertex.y, vertex.w); in ComputeClipCodes()
104 vRes = _simd_cmpgt_ps(vertex.z, vertex.w); in ComputeClipCodes()
124 vRes = _simd_cmpgt_ps(vertex.x, gbMult); in ComputeClipCodes()
129 vRes = _simd_cmpgt_ps(vertex.y, gbMult); in ComputeClipCodes()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Dsimdintrin.h77 #define _simd_cmpgt_ps(a, b) _mm256_cmp_ps(a, b, _CMP_GT_OQ) macro