HomeSort by relevance Sort by last modified time
    Searched defs:srcAddr (Results 1 - 3 of 3) sorted by null

  /external/skia/src/opts/
SkBitmapProcState_opts_arm.cpp 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 imag
    [all...]
  /external/skia/src/core/
SkBitmapProcState_shaderproc.h 31 const char* SK_RESTRICT srcAddr = (const char*)s.fBitmap->getPixels();
33 row0 = (const SRCTYPE*)(srcAddr + y0 * rb);
34 row1 = (const SRCTYPE*)(srcAddr + y1 * rb);
SkBitmapProcState_sample.h 29 const char* SK_RESTRICT srcAddr = (const char*)s.fBitmap->getPixels();
39 src = ((const SRCTYPE*)(srcAddr + (XY >> 16) * rb))[XY & 0xFFFF];
45 src = ((const SRCTYPE*)(srcAddr + (XY >> 16) * rb))[XY & 0xFFFF];
52 src = ((const SRCTYPE*)(srcAddr + (XY >> 16) * rb))[XY & 0xFFFF];
72 const SRCTYPE* SK_RESTRICT srcAddr = (const SRCTYPE*)s.fBitmap->getPixels();
75 // bump srcAddr to the proper row, since we're told Y never changes
77 srcAddr = (const SRCTYPE*)((const char*)srcAddr +
84 src = srcAddr[0];
92 SRCTYPE x0 = srcAddr[UNPACK_PRIMARY_SHORT(xx0)]
    [all...]

Completed in 47 milliseconds