Home
last modified time | relevance | path

Searched refs:max_width (Results 1 – 25 of 106) sorted by relevance

12345

/third_party/mesa3d/src/gallium/frontends/vdpau/
Dquery.c70 VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height) in vlVdpVideoSurfaceQueryCapabilities() argument
76 if (!(is_supported && max_width && max_height)) in vlVdpVideoSurfaceQueryCapabilities()
96 *max_width = *max_height = max_2d_texture_size; in vlVdpVideoSurfaceQueryCapabilities()
177 uint32_t *max_width, uint32_t *max_height) in vlVdpDecoderQueryCapabilities() argument
183 if (!(is_supported && max_level && max_macroblocks && max_width && max_height)) in vlVdpDecoderQueryCapabilities()
203 *max_width = pscreen->get_video_param(pscreen, p_profile, PIPE_VIDEO_ENTRYPOINT_BITSTREAM, in vlVdpDecoderQueryCapabilities()
212 *max_macroblocks = (*max_width/16)*(*max_height/16); in vlVdpDecoderQueryCapabilities()
215 *max_width = 0; in vlVdpDecoderQueryCapabilities()
230 … VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height) in vlVdpOutputSurfaceQueryCapabilities() argument
248 if (!(is_supported && max_width && max_height)) in vlVdpOutputSurfaceQueryCapabilities()
[all …]
/third_party/alsa-utils/alsamixer/
Dutils.c107 unsigned int max_width, i, len; in get_max_mbs_width() local
109 max_width = 0; in get_max_mbs_width()
112 if (len > max_width) in get_max_mbs_width()
113 max_width = len; in get_max_mbs_width()
115 return max_width; in get_max_mbs_width()
Dmixer_display.c686 int max_width, name_len; in compute_controls_layout() local
710 max_width = 8; in compute_controls_layout()
713 if (name_len > max_width) in compute_controls_layout()
714 max_width = name_len; in compute_controls_layout()
716 max_width = (max_width + 1) & ~1; in compute_controls_layout()
721 if (control_width > max_width) in compute_controls_layout()
722 control_width = max_width; in compute_controls_layout()
732 if (control_width < max_width) in compute_controls_layout()
735 control_name_width = max_width; in compute_controls_layout()
/third_party/gstreamer/gstplugins_bad/sys/va/
Dgstvacaps.c157 gint min_width = 1, max_width = G_MAXINT; in gst_va_create_raw_caps_from_config() local
178 max_width = attribs[i].value.value.i; in gst_va_create_raw_caps_from_config()
200 min_width, max_width, "height", GST_TYPE_INT_RANGE, min_height, in gst_va_create_raw_caps_from_config()
285 gint i, max_width = -1, max_height = -1; in gst_va_create_coded_caps() local
310 max_width = value; in gst_va_create_coded_caps()
327 if (max_width == -1 || max_height == -1) in gst_va_create_coded_caps()
330 gst_caps_set_simple (caps, "width", GST_TYPE_INT_RANGE, 1, max_width, in gst_va_create_coded_caps()
388 gint min_width = 1, max_width = G_MAXINT; in gst_va_caps_from_profiles() local
428 max_width = MIN (max_width, gst_value_get_int_range_max (w)); in gst_va_caps_from_profiles()
450 max_width, NULL); in gst_va_caps_from_profiles()
Dgstvafilter.c50 gint max_width; member
167 self->max_width = G_MAXINT; in gst_va_filter_init()
202 guint i, value, rt_formats = 0, max_width = 0, max_height = 0; in gst_va_filter_ensure_config_attributes() local
224 max_width = value; in gst_va_filter_ensure_config_attributes()
236 if (max_width > 0 && max_width < G_MAXINT) in gst_va_filter_ensure_config_attributes()
237 self->max_width = max_width; in gst_va_filter_ensure_config_attributes()
295 if (self->max_width > 0) in gst_va_filter_ensure_surface_attributes()
296 self->max_width = MIN (self->max_width, attribs[i].value.value.i); in gst_va_filter_ensure_surface_attributes()
298 self->max_width = attribs[i].value.value.i; in gst_va_filter_ensure_surface_attributes()
1052 self->min_width, self->max_width, "height", GST_TYPE_INT_RANGE, in _create_base_caps()
/third_party/mesa3d/src/gallium/frontends/xvmc/
Dcontext.c56 unsigned int max_width = 0, max_height = 0; in Validate() local
95 max_width = surface_info[l].max_width; in Validate()
112 i, port, surface_type_id, max_width, max_height, *chroma_format, in Validate()
131 if (width > max_width || height > max_height) { in Validate()
133 width, height, max_width, max_height); in Validate()
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_test_dma.c210 unsigned bpp, max_width, max_height, max_depth, j, num; in r600_test_dma() local
298 max_width = MIN2(tsrc.width0, tdst.width0); in r600_test_dma()
312 width = max_width; in r600_test_dma()
327 if (max_width < 8 || max_height < 8) in r600_test_dma()
329 width = ((rand() % (max_width / 8)) + 1) * 8; in r600_test_dma()
339 assert(max_width > 0 && max_height > 0); in r600_test_dma()
341 width = (rand() % max_width) + 1; in r600_test_dma()
/third_party/node/deps/v8/tools/
Dlocs.py129 max_width = 0
131 max_width = max(max_width, len(s))
132 return max_width
314 self.max_width = 0
317 self.max_width = max(self.max_width, len(statusline))
318 print("{0:<{1}}".format(statusline, self.max_width),
Davg.py64 def __init__(self, points=0, key=0, average=0, stddev=0, min_width=0, max_width=0): argument
66 min=min_width, max=max_width)
166 max_width=len(fmt(self.max)))
185 max_width=len("max"))
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11av1dec.cpp92 UINT max_width; member
383 guint max_width = 0; member
638 guint max_width, max_height; in gst_d3d11_av1_dec_new_sequence() local
661 max_width = seq_hdr->max_frame_width_minus_1 + 1; in gst_d3d11_av1_dec_new_sequence()
664 if (inner->max_width != max_width || inner->max_height != max_height) { in gst_d3d11_av1_dec_new_sequence()
666 inner->max_width, inner->max_height, max_width, max_height); in gst_d3d11_av1_dec_new_sequence()
667 inner->max_width = max_width; in gst_d3d11_av1_dec_new_sequence()
686 out_format, inner->max_width, inner->max_height); in gst_d3d11_av1_dec_new_sequence()
689 decoder->input_state, &info, (gint) inner->max_width, in gst_d3d11_av1_dec_new_sequence()
805 pic_params->max_width = seq_hdr->max_frame_width_minus_1 + 1; in gst_d3d11_av1_dec_start_picture()
[all …]
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dyuv_sse41.c409 const int max_width = width & ~31; in ConvertRGB24ToY_SSE41() local
411 for (i = 0; i < max_width; rgb += 3 * 16 * 2) { in ConvertRGB24ToY_SSE41()
443 const int max_width = width & ~31; in ConvertBGR24ToY_SSE41() local
445 for (i = 0; i < max_width; bgr += 3 * 16 * 2) { in ConvertBGR24ToY_SSE41()
477 const int max_width = width & ~15; in ConvertARGBToY_SSE41() local
479 for (i = 0; i < max_width; i += 16) { in ConvertARGBToY_SSE41()
507 const int max_width = src_width & ~31; in ConvertARGBToUV_SSE41() local
509 for (i = 0; i < max_width; i += 32, u += 16, v += 16) { in ConvertARGBToUV_SSE41()
573 const int max_width = width & ~15; in ConvertRGBA32ToUV_SSE41() local
574 const uint16_t* const last_rgb = rgb + 4 * max_width; in ConvertRGBA32ToUV_SSE41()
[all …]
Dyuv_sse2.c563 const int max_width = width & ~31; in ConvertRGB24ToY_SSE2() local
565 for (i = 0; i < max_width; rgb += 3 * 16 * 2) { in ConvertRGB24ToY_SSE2()
597 const int max_width = width & ~31; in ConvertBGR24ToY_SSE2() local
599 for (i = 0; i < max_width; bgr += 3 * 16 * 2) { in ConvertBGR24ToY_SSE2()
631 const int max_width = width & ~15; in ConvertARGBToY_SSE2() local
633 for (i = 0; i < max_width; i += 16) { in ConvertARGBToY_SSE2()
661 const int max_width = src_width & ~31; in ConvertARGBToUV_SSE2() local
663 for (i = 0; i < max_width; i += 32, u += 16, v += 16) { in ConvertARGBToUV_SSE2()
717 const int max_width = width & ~15; in ConvertRGBA32ToUV_SSE2() local
718 const uint16_t* const last_rgb = rgb + 4 * max_width; in ConvertRGBA32ToUV_SSE2()
[all …]
/third_party/ffmpeg/libavcodec/
Dvdpau.c150 uint32_t max_level, max_mb, max_width, max_height; in ff_vdpau_common_init() local
232 &max_width, &max_height); in ff_vdpau_common_init()
236 max_width < width || max_height < height) in ff_vdpau_common_init()
248 &max_mb, &max_width, &max_height); in ff_vdpau_common_init()
254 &max_width, &max_height); in ff_vdpau_common_init()
261 max_width < width || max_height < height) in ff_vdpau_common_init()
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
Dgstnvenc.c616 gint max_width = 0; in gst_nv_enc_register() local
671 codec_id, &caps_param, &max_width)) != NV_ENC_SUCCESS) { in gst_nv_enc_register()
672 max_width = 4096; in gst_nv_enc_register()
674 ERROR_DETAILS, max_width, codec, device_index, status); in gst_nv_enc_register()
675 } else if (max_width < 4096) { in gst_nv_enc_register()
676 GST_WARNING ("max width %d is less than expected value", max_width); in gst_nv_enc_register()
677 max_width = 4096; in gst_nv_enc_register()
786 "width", GST_TYPE_INT_RANGE, min_width, max_width, in gst_nv_enc_register()
812 "width", GST_TYPE_INT_RANGE, min_width, max_width, in gst_nv_enc_register()
/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/
Dtest_VIDIOC_ENUM_FRAMESIZES.c93 CU_ASSERT(0 < framesize.stepwise.max_width); in do_test_VIDIOC_ENUM_FRAMESIZES()
98 framesize.stepwise.max_width); in do_test_VIDIOC_ENUM_FRAMESIZES()
111 CU_ASSERT(0 < framesize.stepwise.max_width); in do_test_VIDIOC_ENUM_FRAMESIZES()
115 framesize.stepwise.max_width); in do_test_VIDIOC_ENUM_FRAMESIZES()
120 max_width - in do_test_VIDIOC_ENUM_FRAMESIZES()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecs/
Dgstav1decoder.c39 gint max_width; member
111 priv->max_width = 0; in gst_av1_decoder_reset()
166 priv->max_width = GST_VIDEO_INFO_WIDTH (&state->info); in gst_av1_decoder_set_format()
290 priv->max_width, priv->max_height, seq_header.max_frame_width_minus_1 + 1, in gst_av1_decoder_process_sequence()
300 priv->max_width = seq_header.max_frame_width_minus_1 + 1; in gst_av1_decoder_process_sequence()
/third_party/python/Lib/
Dpprint.py175 max_width = self._width - indent - allowance
176 if len(rep) > max_width:
282 max_width1 = max_width = self._width - indent
295 max_width2 = max_width
419 width = max_width = self._width - indent + 1
432 max_width -= allowance
438 width = max_width
/third_party/mesa3d/src/glx/
Dxfont.c228 unsigned int max_width, max_height, max_bm_width, max_bm_height; in DRI_glXUseXFont() local
243 max_width = fs->max_bounds.rbearing - fs->min_bounds.lbearing; in DRI_glXUseXFont()
245 max_bm_width = (max_width + 7) / 8; in DRI_glXUseXFont()
/third_party/mesa3d/src/gallium/frontends/glx/xlib/
Dglx_usefont.c223 unsigned int max_width, max_height, max_bm_width, max_bm_height; in glXUseXFont() local
241 max_width = fs->max_bounds.rbearing - fs->min_bounds.lbearing; in glXUseXFont()
243 max_bm_width = (max_width + 7) / 8; in glXUseXFont()
/third_party/rust/crates/os_str_bytes/
Drustfmt.toml1 max_width = 79
/third_party/rust/crates/nix/
Drustfmt.toml1 max_width = 80
/third_party/rust/crates/nom/
Drustfmt.toml2 max_width = 100
/third_party/rust/crates/pin-utils/
D.rustfmt.toml1 max_width = 80
/third_party/rust/crates/memchr/
Drustfmt.toml1 max_width = 79
/third_party/rust/crates/bindgen/
Drustfmt.toml1 max_width = 80

12345