Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dfetch_jit.cpp64 Value* GetSimdValid32bitIndices(Value* vIndices, Value* pLastIndex);
65 Value* GetSimdValid16bitIndices(Value* vIndices, Value* pLastIndex);
66 Value* GetSimdValid8bitIndices(Value* vIndices, Value* pLastIndex);
183 Value* pLastIndex = LOAD(mpFetchInfo,{0, SWR_FETCH_CONTEXT_pLastIndex}); in Create() local
184 pLastIndex->setName("pLastIndex"); in Create()
210 pLastIndex = BITCAST(pLastIndex, Type::getInt8PtrTy(JM()->mContext, 0)); in Create()
211 vIndices = GetSimdValid8bitIndices(indices, pLastIndex); in Create()
213 pLastIndex = BITCAST(pLastIndex, Type::getInt8PtrTy(JM()->mContext, 0)); in Create()
214 vIndices2 = GetSimdValid8bitIndices(indices2, pLastIndex); in Create()
234 pLastIndex = BITCAST(pLastIndex, Type::getInt16PtrTy(JM()->mContext, 0)); in Create()
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dfrontend.cpp1664 …fetchInfo_lo.pLastIndex = (const int32_t*)(((uint8_t*)state.indexBuffer.pIndices) + state.indexBuf… in ProcessDraw()
1665 if (pLastRequestedIndex < fetchInfo_lo.pLastIndex) in ProcessDraw()
1667 fetchInfo_lo.pLastIndex = pLastRequestedIndex; in ProcessDraw()
1729 fetchInfo_lo.pLastIndex = fetchInfo_lo.pIndices; in ProcessDraw()
1733 fetchInfo_lo.pLastIndex += offset; in ProcessDraw()
1735 fetchInfo_lo.pLastIndex += std::min(offset, (uint32_t) KNOB_SIMD_WIDTH); in ProcessDraw()
1738 fetchInfo_hi.pLastIndex = fetchInfo_hi.pIndices; in ProcessDraw()
1739 fetchInfo_hi.pLastIndex += offset2; in ProcessDraw()
1947 …fetchInfo.pLastIndex = (const int32_t*)(((uint8_t*)state.indexBuffer.pIndices) + state.indexBuffer… in ProcessDraw()
1948 if (pLastRequestedIndex < fetchInfo.pLastIndex) in ProcessDraw()
[all …]
Dstate.h585 …const int32_t* pLastIndex; // IN: pointer to end of index buffer, used for bounds… member