Home
last modified time | relevance | path

Searched refs:gx (Results 1 - 17 of 17) sorted by relevance

/third_party/ffmpeg/libavfilter/
H A Dedge_common.c22 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 Dvf_photosensitivity.c84 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 Dvf_chromashift.c268 int gx = (x - gh) % w; \
273 if (gx < 0) \
274 gx += w; \
278 dg[x] = sg[gx + gy * sglinesize]; \
H A Dvf_ciescope.c1335 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 Dftbsdf.c448 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 DPathOpsSimplifyQuadThreadedTest.cpp33 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 DPathOpsSimplifyQuadralateralsThreadedTest.cpp33 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 Dpngenc.c299 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 DrsgProgramExecutor.cpp198 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 Dskcms.h372 float gx, float gy,
/third_party/skia/src/codec/
H A DSkPngCodec.cpp397 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 Dskcms.cc1724 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 Dpngvalid.c3331 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 Dnuklear.h10364 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 Dconfigure5030 tilegx|tile-gx)
/third_party/mbedtls/library/
H A Decp_curves_new.c4528 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 Decp_curves.c4518 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

Completed in 149 milliseconds