/third_party/ffmpeg/libavfilter/ |
H A D | edge_common.c | 22 static int get_rounded_direction(int gx, int gy) in get_rounded_direction() argument 34 if (gx) { in get_rounded_direction() 37 if (gx < 0) in get_rounded_direction() 38 gx = -gx, gy = -gy; in get_rounded_direction() 40 tanpi8gx = 27146 * gx; in get_rounded_direction() 41 tan3pi8gx = 158218 * gx; in get_rounded_direction() 62 const int gx = in ff_sobel() local 71 dst[i] = FFABS(gx) + FFABS(gy); in ff_sobel() 72 dir[i] = get_rounded_direction(gx, g in ff_sobel() [all...] |
H A D | vf_photosensitivity.c | 84 int cell, gx, gy, x0, x1, y0, y1, x, y, c, area; in convert_frame_partial() local 97 gx = cell % GRID_SIZE; in convert_frame_partial() 100 x0 = width * gx / GRID_SIZE; in convert_frame_partial() 101 x1 = width * (gx+1) / GRID_SIZE; in convert_frame_partial() 111 //av_log(NULL, AV_LOG_VERBOSE, "%d %d %d : (%d,%d) (%d,%d) -> %d,%d | *%d\n", c, gx, gy, x0, y0, x1, y1, x, y, (int)row); in convert_frame_partial() 124 td->out->grid[gy][gx][c] = sum[c]; in convert_frame_partial()
|
H A D | vf_chromashift.c | 268 int gx = (x - gh) % w; \ 273 if (gx < 0) \ 274 gx += w; \ 278 dg[x] = sg[gx + gy * sglinesize]; \
|
H A D | vf_ciescope.c | 1335 int rx, ry, gx, gy, bx, by; in plot_gamuts() local 1345 gx = (w - 1) * wup; in plot_gamuts() 1356 gx = (w - 1) * wu; in plot_gamuts() 1364 gx = (w - 1) * cs->xGreen; in plot_gamuts() 1372 draw_rline(pixels, linesize, rx, ry, gx, gy, w, h); in plot_gamuts() 1373 draw_rline(pixels, linesize, gx, gy, bx, by, w, h); in plot_gamuts()
|
/third_party/skia/third_party/externals/freetype/src/sdf/ |
H A D | ftbsdf.c | 448 FT_16D16 gx, gy; in compute_edge_distance() local 508 gx = g.x; in compute_edge_distance() 511 gx = FT_ABS( gx ); in compute_edge_distance() 514 if ( gx < gy ) in compute_edge_distance() 516 temp = gx; in compute_edge_distance() 517 gx = gy; in compute_edge_distance() 521 a1 = FT_DivFix( gy, gx ) / 2; in compute_edge_distance() 524 dist = ( gx + gy ) / 2 - in compute_edge_distance() 525 square_root( 2 * FT_MulFix( gx, in compute_edge_distance() [all...] |
/third_party/skia/tests/ |
H A D | PathOpsSimplifyQuadThreadedTest.cpp | 33 int gx = g & 0x03; in testSimplifyQuadsMain() local 46 path.quadTo(SkIntToScalar(gx), SkIntToScalar(gy), in testSimplifyQuadsMain() 59 pathStr.appendf(" path.quadTo(%d, %d, %d, %d);\n", gx, gy, hx, hy); in testSimplifyQuadsMain()
|
H A D | PathOpsSimplifyQuadralateralsThreadedTest.cpp | 33 int gx = g & 0x03; in testSimplifyQuadralateralsMain() local 46 path.lineTo(SkIntToScalar(gx), SkIntToScalar(gy)); in testSimplifyQuadralateralsMain() 60 pathStr.appendf(" path.lineTo(%d, %d);\n", gx, gy); in testSimplifyQuadralateralsMain()
|
/third_party/ffmpeg/libavcodec/ |
H A D | pngenc.c | 299 double rx, ry, gx, gy, bx, by, wx = 0.3127, wy = 0.3290; in png_get_chrm() local 303 gx = 0.300; gy = 0.600; in png_get_chrm() 308 gx = 0.210; gy = 0.710; in png_get_chrm() 314 gx = 0.290; gy = 0.600; in png_get_chrm() 320 gx = 0.310; gy = 0.595; in png_get_chrm() 325 gx = 0.170; gy = 0.797; in png_get_chrm() 334 AV_WB32_PNG(buf + 16, gx); AV_WB32_PNG(buf + 20, gy); in png_get_chrm()
|
/third_party/vk-gl-cts/framework/randomshaders/ |
H A D | rsgProgramExecutor.cpp | 198 float gx = ((float)x + 0.5f) / cellWidth; in computeGridCellWeights() local 200 return tcu::Vec2(deFloatFrac(gx), deFloatFrac(gy)); in computeGridCellWeights()
|
/third_party/skia/include/third_party/skcms/ |
H A D | skcms.h | 372 float gx, float gy,
|
/third_party/skia/src/codec/ |
H A D | SkPngCodec.cpp | 397 float gx = png_fixed_point_to_float(chrm[4]); in read_color_profile() local 405 if (skcms_PrimariesToXYZD50(rx, ry, gx, gy, bx, by, wx, wy, &tmp)) { in read_color_profile()
|
/third_party/skia/third_party/skcms/ |
H A D | skcms.cc | 1724 float gx, float gy, 1729 !is_zero_to_one(gx) || !is_zero_to_one(gy) || 1738 { rx, gx, bx }, 1740 { 1 - rx - ry, 1 - gx - gy, 1 - bx - by },
|
/third_party/skia/third_party/externals/libpng/contrib/libtests/ |
H A D | pngvalid.c | 3331 png_fixed_point wx, wy, rx, ry, gx, gy, bx, by; member 3345 png_save_uint_32(pm->buffer+24, ((chrm_modification*)me)->gx); in chrm_modify() 3367 me->gx = fix(chromaticity_x(encoding->green)); in chrm_modification_init()
|
/third_party/glfw/deps/ |
H A D | nuklear.h | 10364 float gx, gy, gh, gw; in nk_draw_list_add_text() local 10374 gx = x + g.offset.x; in nk_draw_list_add_text() 10378 nk_draw_list_push_rect_uv(list, nk_vec2(gx,gy), nk_vec2(gx + gw, gy+ gh), in nk_draw_list_add_text()
|
/third_party/ffmpeg/ |
H A D | configure | 5030 tilegx|tile-gx)
|
/third_party/mbedtls/library/ |
H A D | ecp_curves_new.c | 4528 const mbedtls_mpi_uint *gx, size_t gxlen, in ecp_group_load() 4540 ecp_mpi_load(&grp->G.X, gx, gxlen); in ecp_group_load() 4524 ecp_group_load(mbedtls_ecp_group *grp, const mbedtls_mpi_uint *p, size_t plen, const mbedtls_mpi_uint *a, size_t alen, const mbedtls_mpi_uint *b, size_t blen, const mbedtls_mpi_uint *gx, size_t gxlen, const mbedtls_mpi_uint *gy, size_t gylen, const mbedtls_mpi_uint *n, size_t nlen, const mbedtls_ecp_point *T) ecp_group_load() argument
|
H A D | ecp_curves.c | 4518 const mbedtls_mpi_uint *gx, size_t gxlen, in ecp_group_load() 4530 ecp_mpi_load(&grp->G.X, gx, gxlen); in ecp_group_load() 4514 ecp_group_load(mbedtls_ecp_group *grp, const mbedtls_mpi_uint *p, size_t plen, const mbedtls_mpi_uint *a, size_t alen, const mbedtls_mpi_uint *b, size_t blen, const mbedtls_mpi_uint *gx, size_t gxlen, const mbedtls_mpi_uint *gy, size_t gylen, const mbedtls_mpi_uint *n, size_t nlen, const mbedtls_ecp_point *T) ecp_group_load() argument
|