Home
last modified time | relevance | path

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

/external/antlr/runtime/C/src/
Dantlr3collections.c2656 pANTLR3_UINT32 vIndex; in sortVector() local
2690 vIndex = (pANTLR3_UINT32)ANTLR3_MALLOC(topo->limit * sizeof(ANTLR3_UINT32)); in sortVector()
2691 if (vIndex == NULL) in sortVector()
2701 vIndex[i] = i; in sortVector()
2716 if (vIndex[topo->sorted[i]] == i) in sortVector()
2726 ind = vIndex[topo->sorted[i]]; in sortVector()
2734 vIndex[topo->sorted[i]] = i; in sortVector()
2735 vIndex[i] = ind; in sortVector()
2740 ANTLR3_FREE(vIndex); in sortVector()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dfrontend.cpp1683 simd16scalari vIndex; in ProcessDraw() local
1692 vIndex = _simd16_add_epi32(_simd16_set1_epi32(work.startVertexID), vScale); in ProcessDraw()
1694 fetchInfo_lo.pIndices = (const int32_t *)&vIndex; in ProcessDraw()
1695 … fetchInfo_hi.pIndices = (const int32_t *)&vIndex + KNOB_SIMD_WIDTH; // 1/2 of KNOB_SIMD16_WIDTH in ProcessDraw()
1924 vIndex = _simd16_add_epi32(vIndex, _simd16_set1_epi32(KNOB_SIMD16_WIDTH)); in ProcessDraw()
1963 simdscalari vIndex; in ProcessDraw() local
1972 vIndex = _simd_add_epi32(_simd_set1_epi32(work.startVertexID), vScale); in ProcessDraw()
1973 fetchInfo.pIndices = (const int32_t*)&vIndex; in ProcessDraw()
2112 vIndex = _simd_add_epi32(vIndex, _simd_set1_epi32(KNOB_SIMD_WIDTH)); in ProcessDraw()
/external/skia/src/pathops/
DSkPathOpsDebug.cpp1164 for (int vIndex = 1; vIndex <= SkPathOpsVerbToPoints(fVerb); ++vIndex) { in debugShowActiveSpans() local
1165 str->appendf(" %1.9g,%1.9g", pts[vIndex].fX, pts[vIndex].fY); in debugShowActiveSpans()
1195 for (int vIndex = 1; vIndex <= SkPathOpsVerbToPoints(fVerb); ++vIndex) { in debugShowNewWinding() local
1196 SkDebugf(" %1.9g,%1.9g", fPts[vIndex].fX, fPts[vIndex].fY); in debugShowNewWinding()
1219 for (int vIndex = 1; vIndex <= SkPathOpsVerbToPoints(fVerb); ++vIndex) { in debugShowNewWinding() local
1220 SkDebugf(" %1.9g,%1.9g", fPts[vIndex].fX, fPts[vIndex].fY); in debugShowNewWinding()
/external/skqp/src/pathops/
DSkPathOpsDebug.cpp1164 for (int vIndex = 1; vIndex <= SkPathOpsVerbToPoints(fVerb); ++vIndex) { in debugShowActiveSpans() local
1165 str->appendf(" %1.9g,%1.9g", pts[vIndex].fX, pts[vIndex].fY); in debugShowActiveSpans()
1195 for (int vIndex = 1; vIndex <= SkPathOpsVerbToPoints(fVerb); ++vIndex) { in debugShowNewWinding() local
1196 SkDebugf(" %1.9g,%1.9g", fPts[vIndex].fX, fPts[vIndex].fY); in debugShowNewWinding()
1219 for (int vIndex = 1; vIndex <= SkPathOpsVerbToPoints(fVerb); ++vIndex) { in debugShowNewWinding() local
1220 SkDebugf(" %1.9g,%1.9g", fPts[vIndex].fX, fPts[vIndex].fY); in debugShowNewWinding()
/external/antlr/runtime/Cpp/include/
Dantlr3collections.inl865 ANTLR_UINT32* vIndex; local
899 vIndex = AllocPolicyType::alloc(m_limit * sizeof(ANTLR_UINT32));
905 vIndex[i] = i;
911 // original element entry n is now located via vIndex[n].
920 if (vIndex[m_sorted[i]] == i)
930 ind = vIndex[m_sorted[i]];
938 vIndex[m_sorted[i]] = i;
939 vIndex[i] = ind;
944 AllocPolicyType::free(vIndex);