Lines Matching refs:dst
95 extern "C" void scanline_t32cb16_arm(uint16_t *dst, uint32_t *src, size_t ct);
308 const pixel_t* src, const pixel_t* dst);
342 blend_factor(c, &df, c->state.blend.dst, fragment, fb); in blending()
386 uint32_t factor, const pixel_t* src, const pixel_t* dst) in blend_factor() argument
402 r->c[1] = blendfactor(dst->c[1], dst->s[1]); in blend_factor()
403 r->c[2] = blendfactor(dst->c[2], dst->s[2]); in blend_factor()
404 r->c[3] = blendfactor(dst->c[3], dst->s[3]); in blend_factor()
405 r->c[0] = blendfactor(dst->c[0], dst->s[0]); in blend_factor()
414 r->c[1] = FIXED_ONE - blendfactor(dst->c[1], dst->s[1]); in blend_factor()
415 r->c[2] = FIXED_ONE - blendfactor(dst->c[2], dst->s[2]); in blend_factor()
416 r->c[3] = FIXED_ONE - blendfactor(dst->c[3], dst->s[3]); in blend_factor()
417 r->c[0] = FIXED_ONE - blendfactor(dst->c[0], dst->s[0]); in blend_factor()
441 r->c[0] = blendfactor(dst->c[0], dst->s[0], FIXED_ONE); in blend_factor()
447 r->c[0] = FIXED_ONE - blendfactor(dst->c[0], dst->s[0], FIXED_ONE); in blend_factor()
1263 uint16_t* dst; in scanline_t32cb16() member
1266 dst = reinterpret_cast<uint16_t*>(cb->data) + (x+(cb->stride*y)); in scanline_t32cb16()
1275 if (ct==1 || uint32_t(dst)&2) { in scanline_t32cb16()
1281 *dst++ = uint16_t((sR<<11)|(sG<<5)|sB); in scanline_t32cb16()
1317 uint16_t* dst = reinterpret_cast<uint16_t*>(cb->data) + (x+(cb->stride*y)); in scanline_t32cb16blend() local
1325 scanline_t32cb16blend_arm(dst, src, ct); in scanline_t32cb16blend()
1330 dst++; in scanline_t32cb16blend()
1333 uint16_t d = *dst; in scanline_t32cb16blend()
1346 *dst++ = uint16_t((sR<<11)|(sG<<5)|sB); in scanline_t32cb16blend()
1358 uint8_t* dst = reinterpret_cast<uint8_t*>(cb->data) + in scanline_memcpy() local
1368 memcpy(dst, src, size); in scanline_memcpy()
1377 uint8_t* dst = reinterpret_cast<uint8_t*>(cb->data) + (x+(cb->stride*y)); in scanline_memset8() local
1379 memset(dst, packed, ct); in scanline_memset8()
1388 uint16_t* dst = reinterpret_cast<uint16_t*>(cb->data) + (x+(cb->stride*y)); in scanline_memset16() local
1390 android_memset16(dst, packed, ct*2); in scanline_memset16()
1399 uint32_t* dst = reinterpret_cast<uint32_t*>(cb->data) + (x+(cb->stride*y)); in scanline_memset32() local
1401 android_memset32(dst, packed, ct*4); in scanline_memset32()
1411 uint8_t* dst = reinterpret_cast<uint8_t*>(cb->data) + in scanline_clear() local
1414 memset(dst, 0, size); in scanline_clear()
1424 uint8_t* dst = reinterpret_cast<uint8_t*>(cb->data) + in scanline_set() local
1427 memset(dst, 0xFF, size); in scanline_set()
1449 uint8_t* dst = reinterpret_cast<uint8_t*>(cb->data) + in rect_memcpy() local
1459 memcpy(dst, src, ct * fp->size * yc); in rect_memcpy()
1465 memcpy(dst, src, size); in rect_memcpy()
1466 dst += dbpr; in rect_memcpy()