/third_party/ffmpeg/libavcodec/ |
D | imgconvert.c | 115 int max_step[4]; in av_picture_crop() local 122 av_image_fill_max_pixsteps(max_step, NULL, desc); in av_picture_crop() 131 dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + (left_band * max_step[0]); in av_picture_crop() 150 int max_step[4]; in av_picture_pad() local 159 av_image_fill_max_pixsteps(max_step, NULL, desc); in av_picture_pad() 163 dst->linesize[0] * padtop + (padleft * max_step[0])); in av_picture_pad() 168 (dst->linesize[0] - (padright * max_step[0])); in av_picture_pad() 171 memset(optr, color[0], (padleft + padright) * max_step[0]); in av_picture_pad() 178 (padright * max_step[0]); in av_picture_pad() 180 (padright * max_step[0])); in av_picture_pad()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_untile.c | 36 int max_step[4]; member 104 av_image_fill_max_pixsteps(s->max_step, NULL, s->desc); in config_output() 138 out->data[0] += x * s->max_step[0]; in activate() 143 out->data[i] += (x >> s->desc->log2_chroma_h) * s->max_step[i]; in activate() 149 out->data[3] += x * s->max_step[3]; in activate()
|
D | vf_crop.c | 87 int max_step[4]; ///< max pixel step for each plane, expressed as a number of bytes member 154 av_image_fill_max_pixsteps(s->max_step, NULL, pix_desc); in config_input() 301 frame->data[0] += s->x * s->max_step[0]; in filter_frame() 307 frame->data[i] += (s->x * s->max_step[i]) >> s->hsub; in filter_frame() 315 frame->data[3] += s->x * s->max_step[3]; in filter_frame()
|
D | vf_hflip.c | 136 av_image_fill_max_pixsteps(s->max_step, NULL, pix_desc); in config_props() 145 return ff_hflip_init(s, s->max_step, nb_planes); in config_props() 190 step = s->max_step[plane]; in filter_slice()
|
D | hflip.h | 29 int max_step[4]; ///< max pixel step for each plane, expressed as a number of bytes member
|
/third_party/ffmpeg/libavutil/ |
D | imgutils.c | 55 int max_step, int max_step_comp, in image_get_linesize() argument 67 if (shifted_w && max_step > INT_MAX / shifted_w) in image_get_linesize() 69 linesize = max_step * shifted_w; in image_get_linesize() 79 int max_step [4]; /* max pixel step for each plane */ in av_image_get_linesize() local 85 av_image_fill_max_pixsteps(max_step, max_step_comp, desc); in av_image_get_linesize() 86 return image_get_linesize(width, plane, max_step[plane], max_step_comp[plane], desc); in av_image_get_linesize() 93 int max_step [4]; /* max pixel step for each plane */ in av_image_fill_linesizes() local 101 av_image_fill_max_pixsteps(max_step, max_step_comp, desc); in av_image_fill_linesizes() 103 if ((ret = image_get_linesize(width, i, max_step[i], max_step_comp[i], desc)) < 0) in av_image_fill_linesizes()
|
/third_party/boost/libs/metaparse/tools/ |
D | string_headers.py | 160 def generate_make_string(out_f, max_step): argument 162 steps = [2 ** n for n in xrange(int(math.log(max_step, 2)), -1, -1)]
|
/third_party/pulseaudio/src/modules/alsa/ |
D | alsa-mixer.c | 869 } else if (value > e->db_fix->max_step) { in element_get_volume() 870 value = e->db_fix->max_step; in element_get_volume() 899 } else if (value > e->db_fix->max_step) { in element_get_volume() 900 value = e->db_fix->max_step; in element_get_volume() 1087 max_i = db_fix->max_step - db_fix->min_step; in decibel_fix_get_step() 1693 …if (e->db_fix && ((e->min_volume > e->db_fix->min_step) || (e->max_volume < e->db_fix->max_step)))… in element_probe_volume() 1697 e->db_fix->min_step, e->db_fix->max_step, e->min_volume, e->max_volume); in element_probe_volume() 1706 e->max_volume = e->db_fix->max_step; in element_probe_volume() 1708 max_dB = e->db_fix->db_values[e->db_fix->max_step - e->db_fix->min_step]; in element_probe_volume() 1765 e->db_fix->max_step = e->max_volume; in element_probe_volume() [all …]
|
D | alsa-mixer.h | 355 long max_step; member
|
/third_party/mindspore/tests/st/pynative/ |
D | test_pynative_resnet50_gpu.py | 399 max_step = 21 404 if step > max_step:
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui.cpp | 3806 float max_step = window->InnerRect.GetHeight() * 0.67f; in UpdateMouseWheel() local 3807 float scroll_step = ImFloor(ImMin(5 * window->CalcFontSize(), max_step)); in UpdateMouseWheel() 3820 float max_step = window->InnerRect.GetWidth() * 0.67f; in UpdateMouseWheel() local 3821 float scroll_step = ImFloor(ImMin(2 * window->CalcFontSize(), max_step)); in UpdateMouseWheel()
|