Home | History | Annotate | Download | only in opts

Lines Matching refs:colors

23     uint16_t* SK_RESTRICT colors) SK_ATTRIBUTE_OPTIMIZE_O1;
27 int count, uint16_t* SK_RESTRICT colors) {
28 SkASSERT(count > 0 && colors != NULL);
46 sk_memset16(colors, dstValue, count);
94 "stmia %[colors]!, {r5, r6, r8, r10} \n\t" // store last 8 pixels
97 : [xx] "+r" (xx), [count8] "+r" (count8), [colors] "+r" (colors)
103 src = srcAddr[*xx++]; *colors++ = table[src];
114 SkPMColor* SK_RESTRICT colors) SK_ATTRIBUTE_OPTIMIZE_O1;
118 int count, SkPMColor* SK_RESTRICT colors) {
119 SkASSERT(count > 0 && colors != NULL);
134 sk_memset32(colors, dstValue, count);
168 "stmia %[colors]!, {r4-r11} \n\t" // store 8 pixels
178 "str r6, [%[colors]], #4 \n\t" // store pixel, update ptr
181 : [xx] "+r" (xx), [count] "+r" (count), [colors] "+r" (colors)