/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32_grad/ |
D | convolution.cc | 40 auto *out_y = out_tensors_.at(kOutputIndex); in ReSize() local 42 conv_param_->output_batch_ = out_y->shape().at(kNHWC_N); in ReSize() 46 conv_param_->output_h_ = out_y->shape().at(kNHWC_H); in ReSize() 47 conv_param_->output_w_ = out_y->shape().at(kNHWC_W); in ReSize() 83 auto *out_y = out_tensors_.at(kOutputIndex); in Execute() local 86 auto y_addr = reinterpret_cast<float *>(out_y->MutableData()); in Execute()
|
/third_party/freetype/src/autofit/ |
D | afhints.c | 886 FT_Pos out_x, out_y; in af_glyph_hints_reload() local 913 out_y = point->fy - prev->fy; in af_glyph_hints_reload() 915 if ( FT_ABS( out_x ) + FT_ABS( out_y ) < near_limit ) in af_glyph_hints_reload() 981 FT_Pos out_x, out_y; in af_glyph_hints_reload() local 994 out_y = point->fy - prev->fy; in af_glyph_hints_reload() 1004 if ( FT_ABS( out_x ) + FT_ABS( out_y ) >= near_limit2 ) in af_glyph_hints_reload() 1031 out_y = 0; in af_glyph_hints_reload() 1043 out_y += next->fy - point->fy; in af_glyph_hints_reload() 1045 if ( FT_ABS( out_x ) + FT_ABS( out_y ) < near_limit ) in af_glyph_hints_reload() 1054 out_dir = af_direction_compute( out_x, out_y ); in af_glyph_hints_reload() [all …]
|
/third_party/flutter/skia/third_party/externals/freetype/src/autofit/ |
D | afhints.c | 886 FT_Pos out_x, out_y; in af_glyph_hints_reload() local 913 out_y = point->fy - prev->fy; in af_glyph_hints_reload() 915 if ( FT_ABS( out_x ) + FT_ABS( out_y ) < near_limit ) in af_glyph_hints_reload() 981 FT_Pos out_x, out_y; in af_glyph_hints_reload() local 994 out_y = point->fy - prev->fy; in af_glyph_hints_reload() 1004 if ( FT_ABS( out_x ) + FT_ABS( out_y ) >= near_limit2 ) in af_glyph_hints_reload() 1031 out_y = 0; in af_glyph_hints_reload() 1043 out_y += next->fy - point->fy; in af_glyph_hints_reload() 1045 if ( FT_ABS( out_x ) + FT_ABS( out_y ) < near_limit ) in af_glyph_hints_reload() 1054 out_dir = af_direction_compute( out_x, out_y ); in af_glyph_hints_reload() [all …]
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp32_grad/ |
D | resize_grad.c | 34 size_t out_y = MSMIN( in ResizeNearestNeighborGrad() local 40 size_t out_offset = out_y * (param->out_width_ * channel) + (out_x * channel) + c; in ResizeNearestNeighborGrad() 52 size_t out_y = in ResizeNearestNeighborGrad() local 59 out_addr[out_y * param->out_width_ + out_x] += in_addr[h * param->in_width_ + w]; in ResizeNearestNeighborGrad()
|
/third_party/skia/third_party/externals/freetype/src/autofit/ |
D | afhints.c | 981 FT_Pos out_x, out_y; in af_glyph_hints_reload() local 1008 out_y = point->fy - prev->fy; in af_glyph_hints_reload() 1010 if ( FT_ABS( out_x ) + FT_ABS( out_y ) < near_limit ) in af_glyph_hints_reload() 1076 FT_Pos out_x, out_y; in af_glyph_hints_reload() local 1089 out_y = point->fy - prev->fy; in af_glyph_hints_reload() 1099 if ( FT_ABS( out_x ) + FT_ABS( out_y ) >= near_limit2 ) in af_glyph_hints_reload() 1126 out_y = 0; in af_glyph_hints_reload() 1138 out_y += next->fy - point->fy; in af_glyph_hints_reload() 1140 if ( FT_ABS( out_x ) + FT_ABS( out_y ) < near_limit ) in af_glyph_hints_reload() 1149 out_dir = af_direction_compute( out_x, out_y ); in af_glyph_hints_reload() [all …]
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp16_grad/ |
D | resize_grad.c | 33 size_t out_y = MSMIN( in ResizeNearestNeighborFp16Grad() local 39 size_t out_offset = out_y * (param->out_width_ * channel) + (out_x * channel) + c; in ResizeNearestNeighborFp16Grad() 51 size_t out_y = in ResizeNearestNeighborFp16Grad() local 58 out_addr[out_y * param->out_width_ + out_x] += in_addr[h * param->in_width_ + w]; in ResizeNearestNeighborFp16Grad()
|
/third_party/freetype/src/base/ |
D | ftcalc.c | 983 FT_Pos out_y ) in ft_corner_orientation() argument 990 FT_Int64 delta = SUB_INT64( MUL_INT64( in_x, out_y ), in ft_corner_orientation() 1001 if ( ADD_LONG( FT_ABS( in_x ), FT_ABS( out_y ) ) <= 131071L && in ft_corner_orientation() 1004 FT_Long z1 = MUL_LONG( in_x, out_y ); in ft_corner_orientation() 1021 ft_multo64( (FT_UInt32)in_x, (FT_UInt32)out_y, &z1 ); in ft_corner_orientation() 1049 FT_Pos out_y ) in ft_corner_is_flat() argument 1052 FT_Pos ay = in_y + out_y; in ft_corner_is_flat() 1077 d_out = FT_HYPOT( out_x, out_y ); in ft_corner_is_flat()
|
/third_party/flutter/skia/third_party/externals/freetype/src/base/ |
D | ftcalc.c | 984 FT_Pos out_y ) in ft_corner_orientation() argument 991 FT_Int64 delta = SUB_INT64( MUL_INT64( in_x, out_y ), in ft_corner_orientation() 1002 if ( ADD_LONG( FT_ABS( in_x ), FT_ABS( out_y ) ) <= 131071L && in ft_corner_orientation() 1005 FT_Long z1 = MUL_LONG( in_x, out_y ); in ft_corner_orientation() 1022 ft_multo64( (FT_UInt32)in_x, (FT_UInt32)out_y, &z1 ); in ft_corner_orientation() 1050 FT_Pos out_y ) in ft_corner_is_flat() argument 1053 FT_Pos ay = in_y + out_y; in ft_corner_is_flat() 1078 d_out = FT_HYPOT( out_x, out_y ); in ft_corner_is_flat()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
D | ftcalc.c | 983 FT_Pos out_y ) in ft_corner_orientation() argument 990 FT_Int64 delta = SUB_INT64( MUL_INT64( in_x, out_y ), in ft_corner_orientation() 1001 if ( ADD_LONG( FT_ABS( in_x ), FT_ABS( out_y ) ) <= 131071L && in ft_corner_orientation() 1004 FT_Long z1 = MUL_LONG( in_x, out_y ); in ft_corner_orientation() 1021 ft_multo64( (FT_UInt32)in_x, (FT_UInt32)out_y, &z1 ); in ft_corner_orientation() 1049 FT_Pos out_y ) in ft_corner_is_flat() argument 1052 FT_Pos ay = in_y + out_y; in ft_corner_is_flat() 1077 d_out = FT_HYPOT( out_x, out_y ); in ft_corner_is_flat()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | video-converter.c | 355 gint out_y; member 2380 convert->out_y = get_opt_int (convert, GST_VIDEO_CONVERTER_OPT_DEST_Y, 0); in gst_video_converter_new_with_pool() 2382 convert->out_y &= ~((1 << fout->h_sub[1]) - 1); in gst_video_converter_new_with_pool() 2389 convert->out_maxheight - convert->out_y); in gst_video_converter_new_with_pool() 2402 if (convert->out_height > convert->out_maxheight - convert->out_y) in gst_video_converter_new_with_pool() 2403 convert->out_height = convert->out_maxheight - convert->out_y; in gst_video_converter_new_with_pool() 2406 if (convert->out_height + convert->out_y < 0 || in gst_video_converter_new_with_pool() 2407 convert->out_height + convert->out_y > convert->out_maxheight) { in gst_video_converter_new_with_pool() 3228 gint out_y; member 3244 gst_line_cache_get_lines (task->pack_lines, task->idx, i + task->out_y, in convert_generic_task() [all …]
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/ |
D | resize_nearest_neighbor_grad_impl.cu | 56 const int out_y = in ResizeNearestNeighborGrad() local 63 output_pos = pos_array[0] * d2 * d3 * d4 + pos_array[1] * d3 * d4 + out_y * d4 + out_x; in ResizeNearestNeighborGrad()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/ |
D | resize_nearest_neighbor_grad_cpu_kernel.cc | 94 … const size_t out_y = std::min((align_corners_) ? static_cast<size_t>(roundf(h * height_scale_)) in LaunchKernel() local 101 output_addr[out_y * out_width_ + out_x] += dloss_addr[h * in_width_ + w]; in LaunchKernel()
|
/third_party/mesa3d/src/gallium/frontends/xa/ |
D | xa_renderer.c | 56 map_point(const float *mat, float x, float y, float *out_x, float *out_y) in map_point() argument 60 *out_y = y; in map_point() 65 *out_y = mat[1] * x + mat[4] * y + mat[7]; in map_point() 70 *out_y *= w; in map_point()
|
/third_party/flutter/skia/third_party/externals/freetype/include/freetype/internal/ |
D | ftcalc.h | 341 FT_Pos out_y ); 353 FT_Pos out_y );
|
/third_party/freetype/include/freetype/internal/ |
D | ftcalc.h | 341 FT_Pos out_y ); 353 FT_Pos out_y );
|
/third_party/flutter/skia/third_party/externals/freetype/src/pshinter/ |
D | pshalgo.c | 935 FT_Pos in_x, in_y, out_x, out_y; in psh_glyph_compute_inflections() local 971 out_y = start->org_v - before->org_v; in psh_glyph_compute_inflections() 973 } while ( out_x == 0 && out_y == 0 ); in psh_glyph_compute_inflections() 975 orient_prev = psh_corner_orientation( in_x, in_y, out_x, out_y ); in psh_glyph_compute_inflections() 981 in_y = out_y; in psh_glyph_compute_inflections() 998 out_y = after->org_v - end->org_v; in psh_glyph_compute_inflections() 1000 } while ( out_x == 0 && out_y == 0 ); in psh_glyph_compute_inflections() 1002 orient_cur = psh_corner_orientation( in_x, in_y, out_x, out_y ); in psh_glyph_compute_inflections() 1022 in_y = out_y; in psh_glyph_compute_inflections()
|
/third_party/freetype/src/pshinter/ |
D | pshalgo.c | 934 FT_Pos in_x, in_y, out_x, out_y; in psh_glyph_compute_inflections() local 970 out_y = start->org_v - before->org_v; in psh_glyph_compute_inflections() 972 } while ( out_x == 0 && out_y == 0 ); in psh_glyph_compute_inflections() 974 orient_prev = psh_corner_orientation( in_x, in_y, out_x, out_y ); in psh_glyph_compute_inflections() 980 in_y = out_y; in psh_glyph_compute_inflections() 997 out_y = after->org_v - end->org_v; in psh_glyph_compute_inflections() 999 } while ( out_x == 0 && out_y == 0 ); in psh_glyph_compute_inflections() 1001 orient_cur = psh_corner_orientation( in_x, in_y, out_x, out_y ); in psh_glyph_compute_inflections() 1021 in_y = out_y; in psh_glyph_compute_inflections()
|
/third_party/skia/third_party/externals/freetype/src/pshinter/ |
D | pshalgo.c | 935 FT_Pos in_x, in_y, out_x, out_y; in psh_glyph_compute_inflections() local 971 out_y = start->org_v - before->org_v; in psh_glyph_compute_inflections() 973 } while ( out_x == 0 && out_y == 0 ); in psh_glyph_compute_inflections() 975 orient_prev = psh_corner_orientation( in_x, in_y, out_x, out_y ); in psh_glyph_compute_inflections() 981 in_y = out_y; in psh_glyph_compute_inflections() 998 out_y = after->org_v - end->org_v; in psh_glyph_compute_inflections() 1000 } while ( out_x == 0 && out_y == 0 ); in psh_glyph_compute_inflections() 1002 orient_cur = psh_corner_orientation( in_x, in_y, out_x, out_y ); in psh_glyph_compute_inflections() 1022 in_y = out_y; in psh_glyph_compute_inflections()
|
/third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
D | ftcalc.h | 341 FT_Pos out_y ); 353 FT_Pos out_y );
|
/third_party/boost/libs/geometry/test/srs/ |
D | proj4.hpp | 131 std::vector<double> & out_y) const in forward() 136 out_y = std::move(in_y); in forward()
|
/third_party/gstreamer/gstplugins_bad/sys/d3dvideosink/ |
D | d3dhelpers.c | 953 gdouble * out_x, gdouble * out_y) in d3d_get_render_coordinates() argument 960 g_return_val_if_fail (out_y != NULL, FALSE); in d3d_get_render_coordinates() 1013 *out_y = tmp; in d3d_get_render_coordinates() 1015 *out_y = in d3d_get_render_coordinates() 1019 *out_y = in d3d_get_render_coordinates()
|
/third_party/mindspore/mindspore/core/abstract/ |
D | prim_nn.cc | 113 auto out_y = CheckArg<AbstractTensor>(op_name, args_spec_list, 0); in InferImplPoolingGrad() local 116 (void)CheckTensorsDTypeSame({out_y, d_out, input_x}, {kInt, kUInt, kFloat}, in InferImplPoolingGrad()
|
/third_party/mesa3d/src/broadcom/compiler/ |
D | nir_to_vir.c | 2595 struct qreg *out_y) in ntq_get_barycentric_centroid() argument 2657 *out_y = offset_y; in ntq_get_barycentric_centroid()
|