Home
last modified time | relevance | path

Searched refs:pBase (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dpa.h704 float* pBase = (float*)this->pStreamBase; in Assemble() local
708 simd16scalar temp = _simd16_i32gather_ps(pBase, offsets, 1); in Assemble()
714 verts[v].v[c] = _simd_i32gather_ps(pBase, offsets, 1); in Assemble()
718 pBase += SIMD_WIDTH; in Assemble()
755 float* pBase = (float*)this->pStreamBase; in Assemble() local
759 verts[v].v[c] = _simd16_i32gather_ps(pBase, offsets, 1); in Assemble()
761 … verts[v].v[c] = _simd16_insert_ps(_simd16_setzero_ps(), _simd_i32gather_ps(pBase, offsets, 1), 0); in Assemble()
765 pBase += SIMD_WIDTH; in Assemble()
1252 const float* pBase = pBaseAttrib; in Assemble() local
1258 pBase, in Assemble()
[all …]
Dclip.h592 …uint8_t *pBase = reinterpret_cast<uint8_t *>(&vertices[0].attrib[VERTEX_POSITION_SLOT]) + sizeof(f…
596 static const float *dummy = reinterpret_cast<const float *>(pBase);
601 …T::ScaleFactor(1)>(SIMD256::setzero_ps(), reinterpret_cast<const float *>(pBase), vOffsets, vMask);
603 pBase += sizeof(typename SIMD_T::Float);
607pBase = reinterpret_cast<uint8_t *>(&vertices[0].attrib[backendState.vertexAttribOffset]) + sizeof…
615 …T::ScaleFactor(1)>(SIMD256::setzero_ps(), reinterpret_cast<const float *>(pBase), vOffsets, vMask);
617 pBase += sizeof(typename SIMD_T::Float);
625pBase = reinterpret_cast<uint8_t *>(&vertices[0].attrib[vertexClipCullSlot]) + sizeof(float) * inp…
629 …T::ScaleFactor(1)>(SIMD256::setzero_ps(), reinterpret_cast<const float *>(pBase), vOffsets, vMask);
631 pBase += sizeof(typename SIMD_T::Float);
[all …]
Dfrontend.cpp923 uint8_t* pBase = pInstanceBase + instance * pState->allocationSize; in GeometryShaderStage() local
924 …uint8_t* pCutBase = pState->controlDataSize == 0 ? &sNullBuffer[0] : pBase + pState->controlDataOf… in GeometryShaderStage()
925 uint8_t* pVertexBaseAOS = pBase + pState->outputVertexOffset; in GeometryShaderStage()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_misc.h137 Value *GATHERPS(Value *src, Value *pBase, Value *indices, Value *mask, uint8_t scale = 1);
138 Value *GATHERPS_16(Value *src, Value *pBase, Value *indices, Value *mask, uint8_t scale = 1);
143 Value *GATHERDD(Value* src, Value* pBase, Value* indices, Value* mask, uint8_t scale = 1);
144 Value *GATHERDD_16(Value *src, Value *pBase, Value *indices, Value *mask, uint8_t scale = 1);
149 Value *GATHERPD(Value* src, Value* pBase, Value* indices, Value* mask, uint8_t scale = 1);
Dbuilder_misc.cpp592 … Value *Builder::GATHERPS(Value *vSrc, Value *pBase, Value *vIndices, Value *vMask, uint8_t scale) in GATHERPS() argument
602 vGather = VGATHERPS(vSrc, pBase, vIndices, mask, C(scale)); in GATHERPS()
620 Value *loadAddress = GEP(pBase,offset); in GATHERPS()
637 …Value *Builder::GATHERPS_16(Value *vSrc, Value *pBase, Value *vIndices, Value *vMask, uint8_t scal… in GATHERPS_16() argument
647 vGather = VGATHERPS_16(vSrc, pBase, vIndices, mask, C((uint32_t)scale)); in GATHERPS_16()
660 Value *gather0 = GATHERPS(src0, pBase, indices0, mask0, scale); in GATHERPS_16()
661 Value *gather1 = GATHERPS(src1, pBase, indices1, mask1, scale); in GATHERPS_16()
677 … Value *Builder::GATHERDD(Value* vSrc, Value* pBase, Value* vIndices, Value* vMask, uint8_t scale) in GATHERDD() argument
684 vGather = VGATHERDD(vSrc, pBase, vIndices, VMASK(vMask), C(scale)); in GATHERDD()
702 Value *loadAddress = GEP(pBase, offset); in GATHERDD()
[all …]
Dfetch_jit.cpp127 …void CreateGatherOddFormats(SWR_FORMAT format, Value* pMask, Value* pBase, Value* offsets, Value* …
742 void FetchJit::CreateGatherOddFormats(SWR_FORMAT format, Value* pMask, Value* pBase, Value* pOffset… in CreateGatherOddFormats() argument
752 pGather = GATHERDD(VIMMED1(0), pBase, pOffsets, pMask); in CreateGatherOddFormats()
760 pBase = BITCAST(pBase, PointerType::get(mInt8Ty, 0)); in CreateGatherOddFormats()
773 Value* pSrc = BITCAST(GEP(pBase, index), PointerType::get(mInt8Ty, 0)); in CreateGatherOddFormats()
781 Value* pSrc = BITCAST(GEP(pBase, index), PointerType::get(mInt16Ty, 0)); in CreateGatherOddFormats()
791 Value* pSrc = BITCAST(GEP(pBase, index), PointerType::get(mInt16Ty, 0)); in CreateGatherOddFormats()
/external/sqlite/dist/orig/
Dsqlite3.c53402 sqlite3_pcache_page *pBase;
53410 pBase = sqlite3PcacheFetch(pPager->pPCache, pgno, 3);
53411 if( pBase==0 ){
53413 rc = sqlite3PcacheFetchStress(pPager->pPCache, pgno, &pBase);
53415 if( pBase==0 ){
53420 pPg = *ppPage = sqlite3PcacheFetchFinish(pPager->pPCache, pgno, pBase);
131778 static void transferJoinMarkings(Expr *pDerived, Expr *pBase){
131780 pDerived->flags |= pBase->flags & EP_FromJoin;
131781 pDerived->iRightJoinTable = pBase->iRightJoinTable;
/external/sqlite/dist/
Dsqlite3.c53418 sqlite3_pcache_page *pBase;
53426 pBase = sqlite3PcacheFetch(pPager->pPCache, pgno, 3);
53427 if( pBase==0 ){
53429 rc = sqlite3PcacheFetchStress(pPager->pPCache, pgno, &pBase);
53431 if( pBase==0 ){
53436 pPg = *ppPage = sqlite3PcacheFetchFinish(pPager->pPCache, pgno, pBase);
131794 static void transferJoinMarkings(Expr *pDerived, Expr *pBase){
131796 pDerived->flags |= pBase->flags & EP_FromJoin;
131797 pDerived->iRightJoinTable = pBase->iRightJoinTable;