Lines Matching defs:width

19 static void copy(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
25 memcpy(dst, src + offset, width * bpp);
28 static void sample1(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
32 for (int x = 0; x < width; x++) {
38 static void sample2(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
42 for (int x = 0; x < width; x++) {
48 static void sample4(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
52 for (int x = 0; x < width; x++) {
58 static void sample6(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
62 for (int x = 0; x < width; x++) {
69 static void sample8(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
73 for (int x = 0; x < width; x++) {
287 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
296 SkOpts::gray_to_RGB1((uint32_t*) dst, src + offset, width);
314 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
319 for (int x = 0; x < width; x++) {
326 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
335 SkOpts::grayA_to_RGBA((uint32_t*) dst, src + offset, width);
339 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
344 for (int x = 0; x < width; x++) {
352 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
361 SkOpts::grayA_to_rgbA((uint32_t*) dst, src + offset, width);
364 static void swizzle_grayalpha_to_a8(void* dst, const uint8_t* src, int width, int bpp,
368 for (int x = 0; x < width; ++x) {
415 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc,
422 SkOpts::RGB_to_RGB1((uint32_t*) dst, src + offset, width);
426 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc,
433 SkOpts::RGB_to_BGR1((uint32_t*) dst, src + offset, width);
475 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc,
482 SkOpts::RGBA_to_rgbA((uint32_t*) dst, (const uint32_t*)(src + offset), width);
486 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc,
493 SkOpts::RGBA_to_bgrA((uint32_t*) dst, (const uint32_t*)(src + offset), width);
510 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
517 SkOpts::RGBA_to_BGRA((uint32_t*) dst, (const uint32_t*)(src + offset), width);
523 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
531 for (int x = 0; x < width; x++) {
538 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
546 for (int x = 0; x < width; x++) {
553 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
561 for (int x = 0; x < width; x++) {
568 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
576 for (int x = 0; x < width; x++) {
583 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
591 for (int x = 0; x < width; x++) {
598 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
606 for (int x = 0; x < width; x++) {
613 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
621 for (int x = 0; x < width; x++) {
705 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
712 SkOpts::inverted_CMYK_to_RGB1((uint32_t*) dst, (const uint32_t*)(src + offset), width);
716 void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset,
723 SkOpts::inverted_CMYK_to_BGR1((uint32_t*) dst, (const uint32_t*)(src + offset), width);
744 void* dst, const uint8_t* src, int width,
753 while (width > 0 && *src16 == 0x0000) {
754 width--;
758 proc(dst32, (const uint8_t*)src16, width, bpp, deltaSrc, 0, ctable);
1151 int srcWidth = dstInfo.width();
1159 srcWidth = options.fSubset->width();
1163 srcWidth = frame->width();
1200 // larger than the width of the image (or subset, if applicable), it
1201 // doesn't account for the width of a subset frame (i.e. gif). As a
1204 // frame width to ensure that fSrcOffsetUnits is sensible.