Lines Matching refs:Ct
122 extern "C" void scanline_t32cb16_arm(uint16_t *dst, uint32_t *src, size_t ct);
123 extern "C" void scanline_col32cb16blend_neon(uint16_t *dst, uint32_t *col, size_t ct);
124 extern "C" void scanline_col32cb16blend_arm(uint16_t *dst, uint32_t col, size_t ct);
789 uint32_t& Ct = texel.c[j];
797 Cf = Ct;
803 uint32_t factor = Ct + (Ct>>(st-1));
809 rescale(Cf, sf, Ct, st);
810 Cf += ((Ct - Cf) * (At + (At>>(sat-1)))) >> sat;
818 uint32_t factor = Ct + (Ct>>(st-1));
819 Cf = ((((1<<st) - factor) * Cf) + Ct*Cc)>>st;
824 rescale(Cf, sf, Ct, st);
825 Cf += Ct;
2073 size_t ct = c->iterators.xr - x;
2084 scanline_col32cb16blend_neon(dst, &(c->packed8888), ct);
2086 scanline_col32cb16blend_arm(dst, GGL_RGBA_TO_HOST(c->packed8888), ct);
2092 while (ct--) {
2112 size_t ct = c->iterators.xr - x;
2128 if (ct==1 || uint32_t(dst)&2) {
2132 ct--;
2135 while (ct >= 2) {
2150 ct -= 2;
2153 if (ct > 0) {
2162 size_t ct = c->iterators.xr - x;
2173 scanline_t32cb16blend_arm(dst, src, ct);
2175 scanline_t32cb16blend_mips(dst, src, ct);
2228 size_t ct = c->iterators.xr - x;
2241 const size_t size = ct * fp->size;
2248 size_t ct = c->iterators.xr - x;
2253 memset(dst, packed, ct);
2259 size_t ct = c->iterators.xr - x;
2264 android_memset16(dst, packed, ct*2);
2270 size_t ct = c->iterators.xr - x;
2275 android_memset32(dst, packed, ct*4);
2281 size_t ct = c->iterators.xr - x;
2287 const size_t size = ct * fp->size;
2294 size_t ct = c->iterators.xr - x;
2300 const size_t size = ct * fp->size;
2319 size_t ct = c->iterators.xr - x;
2332 if (cb->stride == tex->stride && ct == size_t(cb->stride)) {
2333 memcpy(dst, src, ct * fp->size * yc);
2335 const size_t size = ct * fp->size;