/third_party/python/Lib/venv/scripts/posix/ |
D | activate.fish | 7 set -gx PATH $_OLD_VIRTUAL_PATH 11 set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME 33 set -gx VIRTUAL_ENV "__VENV_DIR__" 35 set -gx _OLD_VIRTUAL_PATH $PATH 36 set -gx PATH "$VIRTUAL_ENV/__VENV_BIN_NAME__" $PATH 40 set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME 64 set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" 65 set -gx VIRTUAL_ENV_PROMPT "__VENV_PROMPT__"
|
/third_party/ffmpeg/libavfilter/ |
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, gy); in ff_sobel()
|
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() 124 td->out->grid[gy][gx][c] = sum[c]; in convert_frame_partial()
|
D | vf_chromashift.c | 268 int gx = (x - gh) % w; \ 273 if (gx < 0) \ 274 gx += w; \ 278 dg[x] = sg[gx + gy * sglinesize]; \
|
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/ |
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() 530 dist = FT_MulFix( ONE / 2 - current_alpha, gx ); in compute_edge_distance() [all …]
|
/third_party/skia/tests/ |
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()
|
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/skia/third_party/externals/tint/test/bug/tint/ |
D | 1113.wgsl.expected.glsl | 46 float gx = ((gridSize * (position.x - uniforms.bbMin.x)) / cubeSize); 49 return vec3(gx, gy, gz); 249 float gx = ((gridSize * (position.x - uniforms.bbMin.x)) / cubeSize); 252 return vec3(gx, gy, gz);
|
D | 1113.wgsl.expected.wgsl | 70 var gx = ((gridSize * (position.x - uniforms.bbMin.x)) / cubeSize); 73 return vec3<f32>(gx, gy, gz);
|
D | 1113.wgsl.expected.spvasm | 59 OpName %gx "gx" 241 %gx = OpVariable %_ptr_Function_float Function %75 285 OpStore %gx %88 304 %108 = OpLoad %float %gx
|
D | 1113.wgsl.expected.hlsl | 45 float gx = ((gridSize * (position.x - asfloat(uniforms[1].x))) / cubeSize); 48 return float3(gx, gy, gz);
|
D | 1113.wgsl | 52 var gx = gridSize * (position.x - uniforms.bbMin.x) / cubeSize; 56 return vec3<f32>(gx, gy, gz);
|
D | 1113.wgsl.expected.msl | 61 float gx = ((gridSize * (position[0] - (*(tint_symbol)).bbMin[0])) / cubeSize); 64 return float3(gx, gy, gz);
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/ |
D | noise.inl | 37 tvec4<T, P> gx = static_cast<T>(2) * glm::fract(i / T(41)) - T(1); local 38 tvec4<T, P> gy = glm::abs(gx) - T(0.5); 39 tvec4<T, P> tx = glm::floor(gx + T(0.5)); 40 gx = gx - tx; 42 tvec2<T, P> g00(gx.x, gy.x); 43 tvec2<T, P> g10(gx.y, gy.y); 44 tvec2<T, P> g01(gx.z, gy.z); 45 tvec2<T, P> g11(gx.w, gy.w); 359 tvec4<T, P> gx = static_cast<T>(2) * fract(i / T(41)) - T(1); local 360 tvec4<T, P> gy = abs(gx) - T(0.5); [all …]
|
/third_party/skia/third_party/externals/tint/test/bug/chromium/ |
D | 1273230.wgsl.expected.spvasm | 74 OpName %gx "gx" 265 %gx = OpVariable %_ptr_Function_float Function %113 309 OpStore %gx %126 310 %128 = OpLoad %float %gx
|
D | 1273230.wgsl | 83 var gx = ((cubeSize * (position.x - uniforms.bbMin.x)) / cubeSize); 84 var gy = ((gx * (position.y - uniforms.bbMin.y)) / gridSize);
|
D | 1273230.wgsl.expected.wgsl | 101 var gx = ((cubeSize * (position.x - uniforms.bbMin.x)) / cubeSize); 102 var gy = ((gx * (position.y - uniforms.bbMin.y)) / gridSize);
|
D | 1273230.wgsl.expected.hlsl | 74 float gx = ((cubeSize * (position.x - asfloat(uniforms[1].x))) / cubeSize); 75 float gy = ((gx * (position.y - asfloat(uniforms[1].y))) / gridSize);
|
D | 1273230.wgsl.expected.msl | 89 float gx = ((cubeSize * (position[0] - (*(tint_symbol)).bbMin[0])) / cubeSize); 90 float gy = ((gx * (position[1] - (*(tint_symbol)).bbMin[1])) / gridSize);
|
/third_party/ffmpeg/libavcodec/ |
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/ |
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/icu/icu4c/source/data/translit/ |
D | zu_zu_FONIPA.txt | 36 gx → ɡ\u0361ǁ;
|
D | xh_xh_FONIPA.txt | 41 gx → ɡ\u0361ǁ;
|
/third_party/skia/third_party/externals/icu/source/data/translit/ |
D | zu_zu_FONIPA.txt | 36 gx → ɡ\u0361ǁ;
|