Home | History | Annotate | Download | only in libpixelflinger

Lines Matching defs:Ct

128 extern "C" void scanline_t32cb16_arm(uint16_t *dst, uint32_t *src, size_t ct);
129 extern "C" void scanline_col32cb16blend_neon(uint16_t *dst, uint32_t *col, size_t ct);
130 extern "C" void scanline_col32cb16blend_arm(uint16_t *dst, uint32_t col, size_t ct);
133 extern "C" void scanline_col32cb16blend_arm64(uint16_t *dst, uint32_t col, size_t ct);
138 extern "C" void scanline_col32cb16blend_mips64(uint16_t *dst, uint32_t col, size_t ct);
807 uint32_t& Ct = texel.c[j];
815 Cf = Ct;
821 uint32_t factor = Ct + (Ct>>(st-1));
827 rescale(Cf, sf, Ct, st);
828 Cf += ((Ct - Cf) * (At + (At>>(sat-1)))) >> sat;
836 uint32_t factor = Ct + (Ct>>(st-1));
837 Cf = ((((1<<st) - factor) * Cf) + Ct*Cc)>>st;
842 rescale(Cf, sf, Ct, st);
843 Ct;
2091 size_t ct = c->iterators.xr - x;
2102 scanline_col32cb16blend_neon(dst, &(c->packed8888), ct);
2104 scanline_col32cb16blend_arm(dst, GGL_RGBA_TO_HOST(c->packed8888), ct);
2107 scanline_col32cb16blend_arm64(dst, GGL_RGBA_TO_HOST(c->packed8888), ct);
2109 scanline_col32cb16blend_mips64(dst, GGL_RGBA_TO_HOST(c->packed8888), ct);
2114 while (ct--) {
2134 size_t ct = c->iterators.xr - x;
2150 if (ct==1 || uintptr_t(dst)&2) {
2154 ct--;
2157 while (ct >= 2) {
2172 ct -= 2;
2175 if (ct > 0) {
2185 size_t ct = c->iterators.xr - x;
2196 scanline_t32cb16blend_arm(dst, src, ct);
2198 scanline_t32cb16blend_arm64(dst, src, ct);
2200 scanline_t32cb16blend_mips(dst, src, ct);
2202 scanline_t32cb16blend_mips64(dst, src, ct);
2255 size_t ct = c->iterators.xr - x;
2268 const size_t size = ct * fp->size;
2275 size_t ct = c->iterators.xr - x;
2280 memset(dst, packed, ct);
2286 size_t ct = c->iterators.xr - x;
2291 android_memset16(dst, packed, ct*2);
2297 size_t ct = c->iterators.xr - x;
2302 android_memset32(dst, packed, ct*4);
2308 size_t ct = c->iterators.xr - x;
2314 const size_t size = ct * fp->size;
2321 size_t ct = c->iterators.xr - x;
2327 const size_t size = ct * fp->size;
2346 size_t ct = c->iterators.xr - x;
2359 if (cb->stride == tex->stride && ct == size_t(cb->stride)) {
2360 memcpy(dst, src, ct * fp->size * yc);
2362 const size_t size = ct * fp->size;