Home
last modified time | relevance | path

Searched refs:gglMulx (Results 1 – 6 of 6) sorted by relevance

/system/core/libpixelflinger/
Dfixed.cpp79 return gglMulx(n, gglRecip(d)); in gglFastDivx()
100 x = gglMulx(x, ggl_sqrt_reciproc_approx_tab[0])>>1; in gglSqrtRecipx()
103 x = gglMulx((x>>1),(0x30000 - gglMulx(gglMulx(a,x),x))); in gglSqrtRecipx()
104 x = gglMulx((x>>1),(0x30000 - gglMulx(gglMulx(a,x),x))); in gglSqrtRecipx()
Draster.cpp198 int32_t s0 = Ucr - gglMulx(dsdx, x); // s0 = Ucr - x * dsdx in gglBitBlit()
199 int32_t t0 = Vcr - gglMulx(dtdy, y); // t0 = Vcr - y * dtdy in gglBitBlit()
Dscanline.cpp501 gglMulAddx(fragment->c[1], sf.c[1], gglMulx(fb->c[1], df.c[1])); in blending()
503 gglMulAddx(fragment->c[2], sf.c[2], gglMulx(fb->c[2], df.c[2])); in blending()
505 gglMulAddx(fragment->c[3], sf.c[3], gglMulx(fb->c[3], df.c[3])); in blending()
513 gglMulAddx(fragment->c[0], sf.c[0], gglMulx(fb->c[0], df.c[0])); in blending()
909 c = gglMulAddx(c, f, gglMulx(fc, 0x10000 - f)); in scanline()
1937 tc[i].sqtq.sq = gglMulx(s, q0, iwscale); in scanline_perspective()
1938 tc[i].sqtq.tq = gglMulx(t, q0, iwscale); in scanline_perspective()
1966 const int32_t v1 = gglMulx(v, q1, iwscale); in scanline_perspective()
2021 int32_t s0 = gglMulx(s, iw, iwscale); in scanline_perspective_single()
2022 int32_t t0 = gglMulx(t, iw, iwscale); in scanline_perspective_single()
[all …]
Dtrap.cpp391 const GGLfixed norm = gglMulx(width, gglSqrtRecipx(nx*nx+ny*ny), 4); in aa_linex()
392 nx = gglMulx(nx, norm, 21); in aa_linex()
393 ny = gglMulx(ny, norm, 21); in aa_linex()
1071 int cf = gglMulx((dx >> 1) + (l_min_i + FIXED_ONE - l_max), dy, in aapolyx()
1124 int cf = gglMulx((dx >> 1) + (r_min_i + FIXED_ONE - r_max), dy, in aapolyx()
/system/core/libpixelflinger/include/private/pixelflinger/
Dggl_fixed.h110 inline GGLfixed gglMulx(GGLfixed x, GGLfixed y, int shift) CONST;
111 inline GGLfixed gglMulx(GGLfixed x, GGLfixed y, int shift) { in gglMulx() function
196 inline GGLfixed gglMulx(GGLfixed a, GGLfixed b, int shift) CONST;
197 inline GGLfixed gglMulx(GGLfixed a, GGLfixed b, int shift) { in gglMulx() function
464 inline GGLfixed gglMulx(GGLfixed x, GGLfixed y, int shift) CONST;
465 inline GGLfixed gglMulx(GGLfixed x, GGLfixed y, int shift) in gglMulx() function
525 inline GGLfixed gglMulx(GGLfixed a, GGLfixed b, int shift) CONST;
526 inline GGLfixed gglMulx(GGLfixed a, GGLfixed b, int shift) { in gglMulx() function
546 inline GGLfixed gglMulx(GGLfixed a, GGLfixed b) CONST;
547 inline GGLfixed gglMulx(GGLfixed a, GGLfixed b) { in gglMulx() function
[all …]
/system/core/libpixelflinger/tests/gglmul/
Dgglmul_test.cpp131 actual = gglMulx(test->x, test->y, test->shift); in gglMulx_test()