/third_party/ffmpeg/libavfilter/ |
D | transform.c | 54 int x_c, x_f, y_c, y_f; in INTERPOLATE_METHOD() local 61 x_c = x_f + 1; in INTERPOLATE_METHOD() 66 v1 = PIXEL(src, x_c, y_c, width, height, stride, def); in INTERPOLATE_METHOD() 67 v2 = PIXEL(src, x_c, y_f, width, height, stride, def); in INTERPOLATE_METHOD() 72 v3*(x_c - x)*(y - y_f) + v4*((x_c - x)*(y_c - y))); in INTERPOLATE_METHOD() 81 int x_c, x_f, y_c, y_f; in INTERPOLATE_METHOD() local 89 x_c = x_f + 1; in INTERPOLATE_METHOD() 93 v1 = PIXEL(src, x_c, y_c, width, height, stride, def); in INTERPOLATE_METHOD() 94 v2 = PIXEL(src, x_c, y_f, width, height, stride, def); in INTERPOLATE_METHOD() 98 f1 = 1 - sqrt((x_c - x) * (y_c - y)); in INTERPOLATE_METHOD() [all …]
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/opencl/cl/ |
D | depthwise_conv2d.cl | 35 int x_c = x_offset + kx * dilation.x; 36 bool outside_x = x_c < 0 || x_c >= src_size.x; 39 …FLT4 src_p = READ_IMAGE(src_data, smp_zero, (int2)(Z + x_c * src_size.z, y_c + batch * src_size.y)… 68 int x_c = x_offset; 69 bool outside_x = x_c < 0 || x_c >= src_size.x; 72 …FLT4 src_p = READ_IMAGE(src_data, smp_zero, (int2)(Z + x_c * src_size.z, y_c + batch * src_size.y)… 109 int x_c = x_offset + kx * dilation.x; 110 int x_c_a1 = x_c + stride.x; 111 int x_sign = x_c < 0 ? -1 : 1; 116 … FLT4 src_p00_c0 = READ_IMAGE(src_data, smp_zero, (int2)(Z * x_sign + x_c * src_size.z, y_c)); [all …]
|
D | pooling2d.cl | 45 int x_c = xs + kx; 46 bool outside = outside_y || x_c < 0 || x_c >= input_shape.y; 48 …AD_IMAGE(input, smp_zero, (int2)(y_c * input_shape.w + Z, N * input_shape.y + x_c)) : (FLT4)(0.0f); 81 int x_c = xs + kx; 82 if (x_c < 0 || x_c >= input_shape.y) continue; 83 … FLT4 src = READ_IMAGE(input, smp_zero, (int2)(y_c * input_shape.w + Z, N * input_shape.y + x_c));
|
/third_party/boost/libs/utility/test/ |
D | value_init_test_fail1.cpp | 22 boost::value_initialized<int> const x_c ; in main() local 24 get(x_c) = 1234 ; // this should produce an ERROR in main()
|
D | value_init_test.cpp | 260 boost::value_initialized<T> const x_c ; in test() local 261 BOOST_TEST ( y == x_c ) ; in test() 262 BOOST_TEST ( y == boost::get(x_c) ) ; in test() 263 T& x_c_ref = const_cast<T&>( boost::get(x_c) ) ; in test() 265 BOOST_TEST ( x_c == z ) ; in test()
|
/third_party/mindspore/mindspore/core/ops/ |
D | mat_mul.cc | 71 auto x_c = x_shp[(transpose_a ? 0 : 1)]; in MatMulInferShape() local 73 if (x_c != y_r) { in MatMulInferShape() 74 MS_LOG(EXCEPTION) << "MatMul shape error, got x_col: " << x_c << ", y_row: " << y_r in MatMulInferShape()
|
D | batch_matmul.cc | 85 auto x_c = x_shp[x_offset + (transpose_a ? 0 : 1)]; in BatchMatmulInferShape() local 87 if (x_c != y_r) { in BatchMatmulInferShape() 88 MS_LOG(EXCEPTION) << "BatchMatMul shape error, got x_col: " << x_c << ", y_row: " << y_r in BatchMatmulInferShape()
|
/third_party/typescript/tests/baselines/reference/ |
D | destructuringParameterProperties2.js | 23 var [x_a, x_b, x_c] = [x.getA(), x.getB(), x.getC()]; variable 53 var _a = [x.getA(), x.getB(), x.getC()], x_a = _a[0], x_b = _a[1], x_c = _a[2];
|
D | destructuringParameterProperties3.js | 23 var [x_a, x_b, x_c] = [x.getA(), x.getB(), x.getC()]; variable 56 var _a = [x.getA(), x.getB(), x.getC()], x_a = _a[0], x_b = _a[1], x_c = _a[2];
|
D | destructuringParameterProperties2.symbols | 56 var [x_a, x_b, x_c] = [x.getA(), x.getB(), x.getC()]; 59 >x_c : Symbol(x_c, Decl(destructuringParameterProperties2.ts, 21, 14))
|
D | destructuringParameterProperties3.symbols | 62 var [x_a, x_b, x_c] = [x.getA(), x.getB(), x.getC()]; 65 >x_c : Symbol(x_c, Decl(destructuringParameterProperties3.ts, 21, 14))
|
D | destructuringParameterProperties2.types | 83 var [x_a, x_b, x_c] = [x.getA(), x.getB(), x.getC()]; 86 >x_c : any
|
D | destructuringParameterProperties3.types | 83 var [x_a, x_b, x_c] = [x.getA(), x.getB(), x.getC()]; 86 >x_c : any
|
D | destructuringParameterProperties2.errors.txt | 49 var [x_a, x_b, x_c] = [x.getA(), x.getB(), x.getC()];
|
D | destructuringParameterProperties3.errors.txt | 46 var [x_a, x_b, x_c] = [x.getA(), x.getB(), x.getC()];
|
/third_party/ffmpeg/libavcodec/ |
D | hevc_cabac.c | 962 static av_always_inline int significant_coeff_flag_decode(HEVCContext *s, int x_c, int y_c, in significant_coeff_flag_decode() argument 965 int inc = ctx_idx_map[(y_c << 2) + x_c] + offset; in significant_coeff_flag_decode() 1037 x_c = (x_cg << 2) + scan_x_off[n]; \ in ff_hevc_hls_residual_coding() 1229 int x_cg, y_cg, x_c, y_c, pos; in ff_hevc_hls_residual_coding() local 1315 x_c = scan_x_off[n]; in ff_hevc_hls_residual_coding() 1317 if (significant_coeff_flag_decode(s, x_c, y_c, scf_offset, ctx_idx_map_p)) { in ff_hevc_hls_residual_coding() 1461 if(y_c || x_c || log2_trafo_size < 4) { in ff_hevc_hls_residual_coding() 1463 case 3: pos = (y_c << 3) + x_c; break; in ff_hevc_hls_residual_coding() 1464 case 4: pos = ((y_c >> 1) << 3) + (x_c >> 1); break; in ff_hevc_hls_residual_coding() 1465 case 5: pos = ((y_c >> 2) << 3) + (x_c >> 2); break; in ff_hevc_hls_residual_coding() [all …]
|
/third_party/typescript/tests/cases/conformance/es6/destructuring/ |
D | destructuringParameterProperties2.ts | 22 var [x_a, x_b, x_c] = [x.getA(), x.getB(), x.getC()]; variable
|
D | destructuringParameterProperties3.ts | 22 var [x_a, x_b, x_c] = [x.getA(), x.getB(), x.getC()]; variable
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_clip_control.txt | 113 -w_c <= x_c <= w_c 124 "If a vertex in clip coordinates is given by (x_c y_c z_c w_c)^T 126 (x_c/w_c f*y_c/w_c z_c/w_c)^T where /f/ is +1 when the clip control
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_clip_control.txt | 113 -w_c <= x_c <= w_c 124 "If a vertex in clip coordinates is given by (x_c y_c z_c w_c)^T 126 (x_c/w_c f*y_c/w_c z_c/w_c)^T where /f/ is +1 when the clip control
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIS/ |
D | SGIS_clip_band_hint.txt | 96 -(w_c * bf_x) <= x_c <= (w_c * bf_x)
|
/third_party/openGLES/extensions/SGIS/ |
D | SGIS_clip_band_hint.txt | 96 -(w_c * bf_x) <= x_c <= (w_c * bf_x)
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_ES3_2_compatibility.txt | 159 by dividing x_c, y_c, and z_c by w_c for each vertex. The viewport transform
|
D | ARB_clip_control.txt | 173 -w_c <= x_c <= w_c 194 "If a vertex in clip coordinates is given by (x_c y_c z_c w_c)^T 196 (x_c/w_c f*y_c/w_c z_c/w_c)^T where /f/ is +1 when the clip control
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_ES3_2_compatibility.txt | 169 by dividing x_c, y_c, and z_c by w_c for each vertex. The viewport transform
|