Home | History | Annotate | Download | only in opts

Lines Matching refs:srcAddr

33     const uint8_t* SK_RESTRICT srcAddr = (const uint8_t*)s.fBitmap->getPixels();
36 // bump srcAddr to the proper row, since we're told Y never changes
38 srcAddr = (const uint8_t*)((const char*)srcAddr +
44 src = srcAddr[0];
62 "ldrb r4, [%[srcAddr], r4] \n\t" // load pixel 0 from image
64 "ldrb r5, [%[srcAddr], r5] \n\t" // load pixel 1 from image
66 "ldrb r6, [%[srcAddr], r6] \n\t" // load pixel 2 from image
68 "ldrb r7, [%[srcAddr], r7] \n\t" // load pixel 3 from image
70 "ldrb r8, [%[srcAddr], r8] \n\t" // load pixel 4 from image
72 "ldrb r9, [%[srcAddr], r9] \n\t" // load pixel 5 from image
74 "ldrb r10, [%[srcAddr], r10] \n\t" // load pixel 6 from image
76 "ldrb r11, [%[srcAddr], r11] \n\t" // load pixel 7 from image
98 : [table] "r" (table), [srcAddr] "r" (srcAddr)
103 src = srcAddr[*xx++]; *colors++ = table[src];
124 const uint8_t* SK_RESTRICT srcAddr = (const uint8_t*)s.fBitmap->getPixels();
127 // bump srcAddr to the proper row, since we're told Y never changes
129 srcAddr = (const uint8_t*)((const char*)srcAddr + xy[0] * s.fBitmap->rowBytes());
132 uint8_t src = srcAddr[0];
147 "ldrb r4, [%[srcAddr], r4] \n\t" // load pixel 0 from image
149 "ldrb r5, [%[srcAddr], r5] \n\t" // load pixel 1 from image
151 "ldrb r6, [%[srcAddr], r6] \n\t" // load pixel 2 from image
153 "ldrb r7, [%[srcAddr], r7] \n\t" // load pixel 3 from image
155 "ldrb r8, [%[srcAddr], r8] \n\t" // load pixel 4 from image
156 "ldrb r9, [%[srcAddr], r9] \n\t" // load pixel 5 from image
157 "ldrb r10, [%[srcAddr], r10] \n\t" // load pixel 6 from image
158 "ldrb r11, [%[srcAddr], r11] \n\t" // load pixel 7 from image
176 "ldrb r5, [%[srcAddr], r4] \n\t" // load pixel from image
182 : [table] "r" (table), [srcAddr] "r" (srcAddr)