/external/skia/tests/ |
D | VerticesTest.cpp | 53 int vCount = 5; in DEF_TEST() local 62 SkVertices::Builder builder(SkVertices::kTriangles_VertexMode, vCount, iCount, flags); in DEF_TEST() 64 for (int i = 0; i < vCount; ++i) { in DEF_TEST() 75 builder.indices()[i] = i % vCount; in DEF_TEST()
|
D | PathTest.cpp | 2561 int32_t* vCount = (int32_t*)&buffer[16]; in test_corrupt_flattening() local 2562 SkASSERT(*vCount == 5); in test_corrupt_flattening() 2573 *vCount += 1; in test_corrupt_flattening() 2575 *vCount -= 1; // restore in test_corrupt_flattening()
|
/external/skia/src/core/ |
D | SkVertState.h | 27 VertState(int vCount, const uint16_t indices[], int indexCount) in VertState() 33 fCount = vCount; in VertState()
|
D | SkPicturePlayback.cpp | 670 int vCount = reader->readInt(); in handleOp() local 671 const SkPoint* verts = (const SkPoint*)reader->skip(vCount * sizeof(SkPoint)); in handleOp() 677 texs = (const SkPoint*)reader->skip(vCount * sizeof(SkPoint)); in handleOp() 680 colors = (const SkColor*)reader->skip(vCount * sizeof(SkColor)); in handleOp() 696 canvas->drawVertices(SkVertices::MakeCopy(vmode, vCount, verts, texs, colors, in handleOp()
|
D | SkPathRef.cpp | 191 static bool deduce_pts_conics(const uint8_t verbs[], int vCount, int* ptCountPtr, in deduce_pts_conics() argument 194 if (0 < vCount && verbs[vCount-1] != SkPath::kMove_Verb) { in deduce_pts_conics() 200 for (int i = 0; i < vCount; ++i) { in deduce_pts_conics()
|
/external/skia/src/gpu/ops/ |
D | GrAAConvexPathRenderer.cpp | 119 int* vCount, in compute_vectors() argument 132 *vCount = 0; in compute_vectors() 149 *vCount += 5; in compute_vectors() 152 *vCount += 6; in compute_vectors() 166 *vCount += 4; in compute_vectors() 265 int* vCount, in get_segments() argument 326 compute_vectors(segments, fanPt, dir, vCount, iCount); in get_segments() 370 int vCount = 4; in create_vertices() local 372 vCount += 5; in create_vertices() 374 vCount += 6; in create_vertices() [all …]
|
D | GrAAHairLinePathRenderer.cpp | 703 bool check_bounds(const SkMatrix& viewMatrix, const SkRect& devBounds, void* vertices, int vCount) in check_bounds() argument 718 for (int i = 0; i < vCount; ++i) { in check_bounds()
|
/external/skia/include/core/ |
D | SkVertices.h | 118 static sk_sp<SkVertices> Alloc(int vCount, int iCount, uint32_t builderFlags,
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/ |
D | simdintrin.h | 150 __m256i _simdemu_srlv_epi32(__m256i vA, __m256i vCount) in _simdemu_srlv_epi32() argument 155 __m128i vCountHi = _mm_castps_si128(_mm256_extractf128_ps(_mm256_castsi256_ps(vCount), 1)); in _simdemu_srlv_epi32() 156 __m128i vCountLow = _mm_castps_si128(_mm256_extractf128_ps(_mm256_castsi256_ps(vCount), 0)); in _simdemu_srlv_epi32() 206 __m256i _simdemu_sllv_epi32(__m256i vA, __m256i vCount) in _simdemu_sllv_epi32() argument 211 __m128i vCountHi = _mm_castps_si128(_mm256_extractf128_ps(_mm256_castsi256_ps(vCount), 1)); in _simdemu_sllv_epi32() 212 __m128i vCountLow = _mm_castps_si128(_mm256_extractf128_ps(_mm256_castsi256_ps(vCount), 0)); in _simdemu_sllv_epi32()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateIntervalFormat.java | 1362 int vCount = 0; in getDateTimeSkeleton() local 1424 ++vCount; in getDateTimeSkeleton() 1482 if ( vCount != 0 ) { in getDateTimeSkeleton()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | DateIntervalFormat.java | 1349 int vCount = 0; in getDateTimeSkeleton() local 1411 ++vCount; in getDateTimeSkeleton() 1469 if ( vCount != 0 ) { in getDateTimeSkeleton()
|
/external/icu/icu4c/source/i18n/ |
D | dtitvfmt.cpp | 790 int32_t vCount = 0; in getDateTimeSkeleton() local 853 ++vCount; in getDateTimeSkeleton() 913 if ( vCount != 0 ) { in getDateTimeSkeleton()
|
/external/skia/bench/ |
D | PathBench.cpp | 345 int vCount = fVerbCnts[(fCurrPath++) & (kNumVerbCnts - 1)]; in makePath() local 346 for (int v = 0; v < vCount; ++v) { in makePath()
|