Lines Matching refs:dst32
51 uint32_t* dst32 = (uint32_t*) dst; in sample4() local
53 dst32[x] = *((const uint32_t*) src); in sample4()
318 SkPMColor* dst32 = (SkPMColor*) dst; in swizzle_grayalpha_to_n32_unpremul() local
320 dst32[x] = SkPackARGB32NoCheck(src[1], src[0], src[0], src[0]); in swizzle_grayalpha_to_n32_unpremul()
343 SkPMColor* dst32 = (SkPMColor*) dst; in swizzle_grayalpha_to_n32_premul() local
346 dst32[x] = SkPackARGB32NoCheck(src[1], pmgray, pmgray, pmgray); in swizzle_grayalpha_to_n32_premul()
530 uint32_t* dst32 = (uint32_t*) dst; in swizzle_rgb16_to_rgba() local
532 dst32[x] = strip16to8(src); in swizzle_rgb16_to_rgba()
545 uint32_t* dst32 = (uint32_t*) dst; in swizzle_rgb16_to_bgra() local
547 dst32[x] = strip16to8(src); in swizzle_rgb16_to_bgra()
575 uint32_t* dst32 = (uint32_t*) dst; in swizzle_rgba16_to_rgba_unpremul() local
577 dst32[x] = strip16to8(src); in swizzle_rgba16_to_rgba_unpremul()
590 uint32_t* dst32 = (uint32_t*) dst; in swizzle_rgba16_to_rgba_premul() local
592 dst32[x] = stripAndPremul16to8(src); in swizzle_rgba16_to_rgba_premul()
605 uint32_t* dst32 = (uint32_t*) dst; in swizzle_rgba16_to_bgra_unpremul() local
607 dst32[x] = strip16to8(src); in swizzle_rgba16_to_bgra_unpremul()
620 uint32_t* dst32 = (uint32_t*) dst; in swizzle_rgba16_to_bgra_premul() local
622 dst32[x] = stripAndPremul16to8(src); in swizzle_rgba16_to_bgra_premul()
749 uint32_t* dst32 = (uint32_t*) dst; in SkipLeadingGrayAlphaZerosThen() local
755 dst32++; in SkipLeadingGrayAlphaZerosThen()
758 proc(dst32, (const uint8_t*)src16, width, bpp, deltaSrc, 0, ctable); in SkipLeadingGrayAlphaZerosThen()
768 auto dst32 = (uint32_t*)dstRow; in SkipLeading8888ZerosThen() local
774 dst32++; in SkipLeading8888ZerosThen()
777 proc(dst32, (const uint8_t*)src32, dstWidth, bpp, deltaSrc, 0, ctable); in SkipLeading8888ZerosThen()