Home
last modified time | relevance | path

Searched refs:max_height (Results 1 – 25 of 38) sorted by relevance

12

/external/mesa3d/src/gallium/state_trackers/vdpau/
Dquery.c68 VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height) in vlVdpVideoSurfaceQueryCapabilities() argument
74 if (!(is_supported && max_width && max_height)) in vlVdpVideoSurfaceQueryCapabilities()
95 *max_width = *max_height = pow(2,max_2d_texture_level-1); in vlVdpVideoSurfaceQueryCapabilities()
157 uint32_t *max_width, uint32_t *max_height) in vlVdpDecoderQueryCapabilities() argument
163 if (!(is_supported && max_level && max_macroblocks && max_width && max_height)) in vlVdpDecoderQueryCapabilities()
184 *max_height = pscreen->get_video_param(pscreen, p_profile, PIPE_VIDEO_CAP_MAX_HEIGHT); in vlVdpDecoderQueryCapabilities()
186 *max_macroblocks = (*max_width/16)*(*max_height/16); in vlVdpDecoderQueryCapabilities()
189 *max_height = 0; in vlVdpDecoderQueryCapabilities()
203 … VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height) in vlVdpOutputSurfaceQueryCapabilities() argument
221 if (!(is_supported && max_width && max_height)) in vlVdpOutputSurfaceQueryCapabilities()
[all …]
Dmixer.c52 unsigned max_width, max_height, i; in vlVdpVideoMixerCreate() local
136 max_height = screen->get_video_param(screen, prof, PIPE_VIDEO_CAP_MAX_HEIGHT); in vlVdpVideoMixerCreate()
143 vmixer->video_height > max_height) { in vlVdpVideoMixerCreate()
144 …_MSG(VDPAU_WARN, "[VDPAU] 48 < %u < %u not valid for height\n", vmixer->video_height, max_height); in vlVdpVideoMixerCreate()
/external/webrtc/webrtc/modules/audio_coding/neteq/
Ddelay_peak_detector.cc50 int max_height = -1; // Returns -1 for an empty history. in MaxPeakHeight() local
53 max_height = std::max(max_height, it->peak_height_packets); in MaxPeakHeight()
55 return max_height; in MaxPeakHeight()
/external/mesa3d/src/gallium/state_trackers/xvmc/
Dcontext.c56 unsigned int max_width = 0, max_height = 0; in Validate() local
96 max_height = surface_info[l].max_height; 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()
/external/freetype/src/pshinter/
Dpshglob.c712 FT_Short max_height = 1; in psh_globals_new() local
715 max_height = psh_calc_max_height( priv->num_blue_values, in psh_globals_new()
717 max_height ); in psh_globals_new()
718 max_height = psh_calc_max_height( priv->num_other_blues, in psh_globals_new()
720 max_height ); in psh_globals_new()
721 max_height = psh_calc_max_height( priv->num_family_blues, in psh_globals_new()
723 max_height ); in psh_globals_new()
724 max_height = psh_calc_max_height( priv->num_family_other_blues, in psh_globals_new()
726 max_height ); in psh_globals_new()
729 max_scale = FT_DivFix( 1000, max_height ); in psh_globals_new()
/external/pdfium/third_party/freetype/src/pshinter/
Dpshglob.c712 FT_Short max_height = 1; in psh_globals_new() local
715 max_height = psh_calc_max_height( priv->num_blue_values, in psh_globals_new()
717 max_height ); in psh_globals_new()
718 max_height = psh_calc_max_height( priv->num_other_blues, in psh_globals_new()
720 max_height ); in psh_globals_new()
721 max_height = psh_calc_max_height( priv->num_family_blues, in psh_globals_new()
723 max_height ); in psh_globals_new()
724 max_height = psh_calc_max_height( priv->num_family_other_blues, in psh_globals_new()
726 max_height ); in psh_globals_new()
729 max_scale = FT_DivFix( 1000, max_height ); in psh_globals_new()
/external/skia/gm/
Dblurrect.cpp187 int max_height = 0; variable
214 cur_y += max_height + fPadding;
215 max_height = 0;
225 if (bm.height() > max_height)
226 max_height = bm.height();
/external/webrtc/talk/media/webrtc/
Dwebrtcvideoencoderfactory.h47 int max_height; member
52 : type(t), name(nm), max_width(w), max_height(h), max_fps(fr) { in VideoCodec()
/external/ImageMagick/MagickCore/
Dmontage.c381 max_height, in MontageImageList() local
584 max_height=0; in MontageImageList()
594 if (image_list[tile]->rows > max_height) in MontageImageList()
595 max_height=image_list[tile]->rows; in MontageImageList()
607 height=concatenate != MagickFalse ? max_height : extract_info.height; in MontageImageList()
613 max_height=0; in MontageImageList()
705 max_height=0; in MontageImageList()
716 if (image->rows > max_height) in MontageImageList()
717 max_height=image->rows; in MontageImageList()
718 height=concatenate != MagickFalse ? max_height : extract_info.height; in MontageImageList()
[all …]
/external/v8/src/compiler/
Dstate-values-utils.cc150 Node* StateValuesCache::BuildTree(ValueArrayIterator* it, size_t max_height) { in BuildTree() argument
151 if (max_height == 0) { in BuildTree()
158 NodeVector* buffer = GetWorkingSpace(max_height); in BuildTree()
162 (*buffer)[count] = BuildTree(it, max_height - 1); in BuildTree()
Dstate-values-utils.h48 Node* BuildTree(ValueArrayIterator* it, size_t max_height);
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
Dtest_VIDIOC_ENUM_FRAMESIZES.c101 CU_ASSERT(0 < framesize.stepwise.max_height); in do_test_VIDIOC_ENUM_FRAMESIZES()
106 framesize.stepwise.max_height); in do_test_VIDIOC_ENUM_FRAMESIZES()
128 CU_ASSERT(0 < framesize.stepwise.max_height); in do_test_VIDIOC_ENUM_FRAMESIZES()
132 framesize.stepwise.max_height); in do_test_VIDIOC_ENUM_FRAMESIZES()
137 max_height - in do_test_VIDIOC_ENUM_FRAMESIZES()
Dv4l2_show.c154 framesize->stepwise.max_height, in show_v4l2_frmsizeenum()
/external/mesa3d/src/mesa/drivers/x11/
Dxfonts.c228 unsigned int max_width, max_height, max_bm_width, max_bm_height; in Fake_glXUseXFont() local
246 max_height = fs->max_bounds.ascent + fs->max_bounds.descent; in Fake_glXUseXFont()
248 max_bm_height = max_height; in Fake_glXUseXFont()
/external/mesa3d/src/glx/
Dxfont.c228 unsigned int max_width, max_height, max_bm_width, max_bm_height; in DRI_glXUseXFont() local
244 max_height = fs->max_bounds.ascent + fs->max_bounds.descent; in DRI_glXUseXFont()
246 max_bm_height = max_height; in DRI_glXUseXFont()
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
Dglx_usefont.c221 unsigned int max_width, max_height, max_bm_width, max_bm_height; in glXUseXFont() local
240 max_height = fs->max_bounds.ascent + fs->max_bounds.descent; in glXUseXFont()
242 max_bm_height = max_height; in glXUseXFont()
/external/mesa3d/src/gallium/state_trackers/xorg/
Dxorg_driver.c464 int max_width, max_height; in drv_pre_init() local
468 max_height = res->max_height; in drv_pre_init()
477 max_height = max < max_height ? max : max_height; in drv_pre_init()
481 res->min_height, max_width, max_height); in drv_pre_init()
487 res->min_height, max_height); in drv_pre_init()
/external/kernel-headers/original/uapi/linux/
Dv4l2-subdev.h96 __u32 max_height; member
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
Dtestlib.c82 surface_info[j].max_height >= height in GetPort()
/external/freetype/src/autofit/
Daflatin.c1198 FT_Pos max_height; in af_latin_metrics_scale_dim() local
1206 max_height = metrics->units_per_em; in af_latin_metrics_scale_dim()
1210 max_height = FT_MAX( max_height, Axis->blues[nn].ascender ); in af_latin_metrics_scale_dim()
1211 max_height = FT_MAX( max_height, -Axis->blues[nn].descender ); in af_latin_metrics_scale_dim()
1214 dist = FT_ABS( FT_MulFix( max_height, new_scale - scale ) ); in af_latin_metrics_scale_dim()
/external/autotest/client/site_tests/camera_V4L2/src/
Dmedia_v4l2_device.cc679 frmsize_desc.stepwise.max_height); in EnumFrameSize()
690 frmsize_desc.stepwise.max_height, in EnumFrameSize()
/external/mesa3d/src/gallium/drivers/r300/
Dr300_state.c865 unsigned max_width, max_height, i; in r300_set_framebuffer_state() local
870 max_width = max_height = 4096; in r300_set_framebuffer_state()
872 max_width = max_height = 4021; in r300_set_framebuffer_state()
874 max_width = max_height = 2560; in r300_set_framebuffer_state()
877 if (state->width > max_width || state->height > max_height) { in r300_set_framebuffer_state()
/external/libdrm/include/drm/
Ddrm_mode.h125 __u32 min_height, max_height; member
/external/kernel-headers/original/uapi/drm/
Ddrm_mode.h158 __u32 max_height; member
/external/flac/include/FLAC/
Dmetadata.h237 …mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_de…

12