Lines Matching refs:SK_ARRAY_COUNT
377 SK_ARRAY_COUNT(gPoints0),
378 SK_ARRAY_COUNT(gPoints1),
379 SK_ARRAY_COUNT(gPoints2),
380 SK_ARRAY_COUNT(gPoints3),
381 SK_ARRAY_COUNT(gPoints4),
382 SK_ARRAY_COUNT(gPoints5),
383 SK_ARRAY_COUNT(gPoints6),
384 SK_ARRAY_COUNT(gPoints7),
385 SK_ARRAY_COUNT(gPoints8),
386 SK_ARRAY_COUNT(gPoints9),
387 SK_ARRAY_COUNT(gPoints10),
389 static_assert(SK_ARRAY_COUNT(gConvexSizes) == SK_ARRAY_COUNT(gConvexPoints), "array_mismatch");
398 SK_ARRAY_COUNT(gPoints0),
399 SK_ARRAY_COUNT(gPoints1),
400 SK_ARRAY_COUNT(gPoints2),
401 SK_ARRAY_COUNT(gPoints4),
402 SK_ARRAY_COUNT(gPoints5),
403 SK_ARRAY_COUNT(gPoints7),
404 SK_ARRAY_COUNT(gPoints8),
405 SK_ARRAY_COUNT(gPoints11),
406 SK_ARRAY_COUNT(gPoints12),
407 SK_ARRAY_COUNT(gPoints13),
408 SK_ARRAY_COUNT(gPoints14),
409 SK_ARRAY_COUNT(gPoints15),
410 SK_ARRAY_COUNT(gPoints16),
411 SK_ARRAY_COUNT(gPoints17),
412 SK_ARRAY_COUNT(gPoints18),
414 static_assert(SK_ARRAY_COUNT(gSimpleSizes) == SK_ARRAY_COUNT(gSimplePoints), "array_mismatch");
443 if (index < (int)SK_ARRAY_COUNT(PolygonOffsetData::gConvexPoints)) { in GetConvexPolygon()
462 size_t arrayIndex = index - SK_ARRAY_COUNT(PolygonOffsetData::gConvexPoints); in GetConvexPolygon()
463 SkASSERT(arrayIndex < SK_ARRAY_COUNT(numPtsArray)); in GetConvexPolygon()
478 if (index < (int)SK_ARRAY_COUNT(PolygonOffsetData::gSimplePoints)) { in GetSimplePolygon()
497 size_t arrayIndex = index - SK_ARRAY_COUNT(PolygonOffsetData::gSimplePoints); in GetSimplePolygon()
498 arrayIndex = SkTMin(arrayIndex, SK_ARRAY_COUNT(numPtsArray) - 1); in GetSimplePolygon()
499 SkASSERT(arrayIndex < SK_ARRAY_COUNT(numPtsArray)); in GetSimplePolygon()
568 size_t count = fConvexOnly ? SK_ARRAY_COUNT(insets) : SK_ARRAY_COUNT(offsets); in drawPolygon()