Lines Matching refs:index
554 this table shows the index of the smaller of the remaining points:
568 Given three indices (outer_1 outer_2 mid_1) from 0..3, the remaining index is:
576 for (int index = 0; index < 3; ++index) {
577 for (int inner = index + 1; inner < 4; ++inner) {
578 SkVector testDiff = cubic[inner] - cubic[index];
581 outer1 = index;
607 the missing index equals: outer_1 ^ outer_2 ^ 3
613 for (int index = 0; index < 2; ++index) {
614 for (int inner = index + 1; inner < 3; ++inner) {
615 SkVector testDiff = quad[inner] - quad[index];
618 outer1 = index;
656 for (int index = 0; index < count; ++index) {
657 SkScalar t = tValues[index];
1317 for (int index = 0; index <= count; ++index) {
1318 SkScalar nextT = index < count ? tValues[index] : 1;