Lines Matching refs:dstRow
28 uint32_t* dstRow = (uint32_t*) dst; in Fill() local
30 sk_memset32(dstRow, 0, width); in Fill()
31 dstRow = SkTAddOffset<uint32_t>(dstRow, rowBytes); in Fill()
36 uint16_t* dstRow = (uint16_t*) dst; in Fill() local
38 sk_memset16(dstRow, 0, width); in Fill()
39 dstRow = SkTAddOffset<uint16_t>(dstRow, rowBytes); in Fill()
44 uint8_t* dstRow = (uint8_t*) dst; in Fill() local
46 memset(dstRow, 0, width); in Fill()
47 dstRow = SkTAddOffset<uint8_t>(dstRow, rowBytes); in Fill()
52 uint64_t* dstRow = (uint64_t*) dst; in Fill() local
54 sk_memset64(dstRow, 0, width); in Fill()
55 dstRow = SkTAddOffset<uint64_t>(dstRow, rowBytes); in Fill()