Home
last modified time | relevance | path

Searched refs:vOffsets (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dclip.h544 const SIMD256::Integer vOffsets = SIMD256::set_epi32(
601 …T::ScaleFactor(1)>(SIMD256::setzero_ps(), reinterpret_cast<const float *>(pBase), vOffsets, vMask);
615 …T::ScaleFactor(1)>(SIMD256::setzero_ps(), reinterpret_cast<const float *>(pBase), vOffsets, vMask);
629 …T::ScaleFactor(1)>(SIMD256::setzero_ps(), reinterpret_cast<const float *>(pBase), vOffsets, vMask);
641 …T::ScaleFactor(1)>(SIMD256::setzero_ps(), reinterpret_cast<const float *>(pBase), vOffsets, vMask);
775 …typename SIMD_T::Integer vOffsets = SIMD_T::mullo_epi32(vIndices, SIMD_T::set1_epi32(simdVertexStr…
778vOffsets = SIMD_T::add_epi32(vOffsets, SIMD_T::set1_epi32(attribStride * attrib + componentStride …
781 vOffsets = SIMD_T::add_epi32(vOffsets, vElemOffset);
783 return vOffsets;
788 typename SIMD_T::Integer vOffsets = ComputeOffsets(attrib, vIndices, component);
[all …]
Dpa.h408 …SIMDSCALARI vOffsets[MAX_NUM_VERTS_PER_PRIM]; // byte offsets for currently assembling s… member
657 … this->vOffsets[v] = _simd16_mullo_epi32(vVertexBatch, _simd16_set1_epi32(vertexStrideBytes)); in ComputeOffsets()
660 … this->vOffsets[v] = _simd_mullo_epi32(vVertexBatch, _simd_set1_epi32(vertexStrideBytes)); in ComputeOffsets()
667 …this->vOffsets[v] = _simd16_add_epi32(this->vOffsets[v], _simd16_mullo_epi32(vVertexIndex, _simd16… in ComputeOffsets()
670 …this->vOffsets[v] = _simd_add_epi32(this->vOffsets[v], _simd_mullo_epi32(vVertexIndex, _simd_set1_… in ComputeOffsets()
695 SIMDSCALARI offsets = this->vOffsets[v]; in Assemble()
746 SIMDSCALARI offsets = this->vOffsets[v]; in Assemble()
778 uint32_t* pOffset = (uint32_t*)&this->vOffsets[v]; in AssembleSingle()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dfetch_jit.cpp1115 Value *vOffsets = EXTRACT_16(vOffsets16, 0); in JitGatherVertices() local
1148 Value* vOffsets = MUL(vCurIndices, vStride); in JitGatherVertices() local
1149 vOffsets = ADD(vOffsets, vAlignmentOffsets); in JitGatherVertices()
1154 vOffsets = ADD(vOffsets, vInstanceStride); in JitGatherVertices()
1168 … CreateGatherOddFormats((SWR_FORMAT)ied.Format, vGatherMask, pStreamBase, vOffsets, pResults); in JitGatherVertices()
1193 … CreateGatherOddFormats((SWR_FORMAT)ied.Format, vGatherMask, pStreamBase, vOffsets, pResults); in JitGatherVertices()
1280 vGatherResult[0] = GATHERPS(gatherSrc, pStreamBase, vOffsets, vGatherMask); in JitGatherVertices()
1293 vGatherResult[1] = GATHERPS(gatherSrc, pStreamBase, vOffsets, vGatherMask); in JitGatherVertices()
1363 Value *vShiftedOffsets = LSHR(vOffsets, 1); in JitGatherVertices()
1404 Value *vOffsetsLo = VEXTRACTI128(vOffsets, C(0)); in JitGatherVertices()
[all …]
Dbuilder_misc.cpp614 Value *vOffsets = MUL(vIndices,vScaleVec); in GATHERPS() local
618 Value *offset = VEXTRACT(vOffsets,C(i)); in GATHERPS()
696 Value *vOffsets = MUL(vIndices, vScaleVec); in GATHERDD() local
700 Value *offset = VEXTRACT(vOffsets, C(i)); in GATHERDD()
779 Value *vOffsets = MUL(vIndices,vScaleVec); in GATHERPD() local
783 Value *offset = VEXTRACT(vOffsets,C(i)); in GATHERPD()
1448 void Builder::SCATTERPS(Value* pDst, Value* vSrc, Value* vOffsets, Value* vMask) in SCATTERPS() argument
1476 STORE(vOffsets, pOffsetsArrayPtr); in SCATTERPS()
Dbuilder_misc.h151 void SCATTERPS(Value* pDst, Value* vSrc, Value* vOffsets, Value* vMask);