Home | History | Annotate | Download | only in opts

Lines Matching refs:srcAddr

34     const uint8_t* SK_RESTRICT srcAddr = (const uint8_t*)s.fBitmap->getPixels();
37 // bump srcAddr to the proper row, since we're told Y never changes
39 srcAddr = (const uint8_t*)((const char*)srcAddr +
45 src = srcAddr[0];
63 "ldrb r4, [%[srcAddr], r4] \n\t" // load pixel 0 from image
65 "ldrb r5, [%[srcAddr], r5] \n\t" // load pixel 1 from image
67 "ldrb r6, [%[srcAddr], r6] \n\t" // load pixel 2 from image
69 "ldrb r7, [%[srcAddr], r7] \n\t" // load pixel 3 from image
71 "ldrb r8, [%[srcAddr], r8] \n\t" // load pixel 4 from image
73 "ldrb r9, [%[srcAddr], r9] \n\t" // load pixel 5 from image
75 "ldrb r10, [%[srcAddr], r10] \n\t" // load pixel 6 from image
77 "ldrb r11, [%[srcAddr], r11] \n\t" // load pixel 7 from image
99 : [table] "r" (table), [srcAddr] "r" (srcAddr)
104 src = srcAddr[*xx++]; *colors++ = table[src];
125 const uint8_t* SK_RESTRICT srcAddr = (const uint8_t*)s.fBitmap->getPixels();
128 // bump srcAddr to the proper row, since we're told Y never changes
130 srcAddr = (const uint8_t*)((const char*)srcAddr + xy[0] * s.fBitmap->rowBytes());
133 uint8_t src = srcAddr[0];
148 "ldrb r4, [%[srcAddr], r4] \n\t" // load pixel 0 from image
150 "ldrb r5, [%[srcAddr], r5] \n\t" // load pixel 1 from image
152 "ldrb r6, [%[srcAddr], r6] \n\t" // load pixel 2 from image
154 "ldrb r7, [%[srcAddr], r7] \n\t" // load pixel 3 from image
156 "ldrb r8, [%[srcAddr], r8] \n\t" // load pixel 4 from image
157 "ldrb r9, [%[srcAddr], r9] \n\t" // load pixel 5 from image
158 "ldrb r10, [%[srcAddr], r10] \n\t" // load pixel 6 from image
159 "ldrb r11, [%[srcAddr], r11] \n\t" // load pixel 7 from image
177 "ldrb r5, [%[srcAddr], r4] \n\t" // load pixel from image
183 : [table] "r" (table), [srcAddr] "r" (srcAddr)