Home
last modified time | relevance | path

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

12

/external/mesa3d/src/gallium/frontends/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()
94 *max_width = *max_height = max_2d_texture_size; in vlVdpVideoSurfaceQueryCapabilities()
175 uint32_t *max_width, uint32_t *max_height) in vlVdpDecoderQueryCapabilities() argument
181 if (!(is_supported && max_level && max_macroblocks && max_width && max_height)) in vlVdpDecoderQueryCapabilities()
204 *max_height = pscreen->get_video_param(pscreen, p_profile, PIPE_VIDEO_ENTRYPOINT_BITSTREAM, in vlVdpDecoderQueryCapabilities()
208 *max_macroblocks = (*max_width/16)*(*max_height/16); in vlVdpDecoderQueryCapabilities()
211 *max_height = 0; in vlVdpDecoderQueryCapabilities()
225 … VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height) in vlVdpOutputSurfaceQueryCapabilities() argument
243 if (!(is_supported && max_width && max_height)) in vlVdpOutputSurfaceQueryCapabilities()
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dsample_distorted_bounding_box_op.cc127 int max_height = static_cast<int>(lrintf(std::sqrt(max_area / aspect_ratio))); in GenerateRandomCrop() local
131 if (lrintf(max_height * aspect_ratio) > original_width) { in GenerateRandomCrop()
135 max_height = static_cast<int>((original_width + 0.5 - kEps) / aspect_ratio); in GenerateRandomCrop()
139 if (lrintf(max_height * aspect_ratio) > original_width) { in GenerateRandomCrop()
140 max_height -= 1; in GenerateRandomCrop()
144 if (max_height > original_height) { in GenerateRandomCrop()
145 max_height = original_height; in GenerateRandomCrop()
148 if (height >= max_height) { in GenerateRandomCrop()
149 height = max_height; in GenerateRandomCrop()
152 if (height < max_height) { in GenerateRandomCrop()
[all …]
/external/perfetto/src/trace_processor/dynamic/
Dexperimental_slice_layout_generator.cc29 : start(_start), end(_end), max_height(_max_height) {} in GroupInfo()
32 uint32_t max_height; member
186 it->second.max_height = std::max(it->second.max_height, depth + 1); in AddLayoutColumn()
210 uint32_t max_height = group->max_height; in AddLayoutColumn() local
232 uint32_t end_depth = layout_depth + max_height; in AddLayoutColumn()
235 start_depth < open->layout_depth + open->max_height; in AddLayoutColumn()
237 end_depth <= open->layout_depth + open->max_height; in AddLayoutColumn()
/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/OpenCL-CTS/test_conformance/allocations/
Dallocation_functions.cpp31 size_t max_width, max_height, num_pixels, found_width, found_height; in find_good_image_size() local
46 …lGetDeviceInfo( device_id, CL_DEVICE_IMAGE2D_MAX_HEIGHT, sizeof( max_height ), &max_height, NULL ); in find_good_image_size()
52 long long unsigned max_pixels = (long long unsigned)max_width * max_height; in find_good_image_size()
56 *max_size = max_width * max_height * sizeof(cl_uint) * 4; in find_good_image_size()
71 if (found_height > max_height) { in find_good_image_size()
72 found_height = max_height; in find_good_image_size()
Dmain.cpp137 size_t max_width, max_height; in doTest() local
142 …= clGetDeviceInfo( device, CL_DEVICE_IMAGE2D_MAX_HEIGHT, sizeof( max_height ), &max_height, NULL ); in doTest()
145 cl_ulong max_image2d_size = (cl_ulong)max_height * max_width * 4 * sizeof(cl_uint); in doTest()
/external/freetype/src/pshinter/
Dpshglob.c713 FT_Short max_height = 1; in psh_globals_new() local
716 max_height = psh_calc_max_height( priv->num_blue_values, in psh_globals_new()
718 max_height ); in psh_globals_new()
719 max_height = psh_calc_max_height( priv->num_other_blues, in psh_globals_new()
721 max_height ); in psh_globals_new()
722 max_height = psh_calc_max_height( priv->num_family_blues, in psh_globals_new()
724 max_height ); in psh_globals_new()
725 max_height = psh_calc_max_height( priv->num_family_other_blues, in psh_globals_new()
727 max_height ); in psh_globals_new()
730 max_scale = FT_DivFix( 1000, max_height ); in psh_globals_new()
/external/mesa3d/src/gallium/frontends/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/mesa3d/src/gallium/drivers/r600/
Dr600_test_dma.c210 unsigned bpp, max_width, max_height, max_depth, j, num; in r600_test_dma() local
299 max_height = MIN2(tsrc.height0, tdst.height0); in r600_test_dma()
313 height = max_height; in r600_test_dma()
327 if (max_width < 8 || max_height < 8) in r600_test_dma()
330 height = ((rand() % (max_height / 8)) + 1) * 8; in r600_test_dma()
339 assert(max_width > 0 && max_height > 0); in r600_test_dma()
342 height = (rand() % max_height) + 1; in r600_test_dma()
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_test_dma.c205 unsigned max_width, max_height, max_depth, j, num; in si_test_dma() local
299 max_height = MIN2(tsrc.height0, tdst.height0); in si_test_dma()
314 height = max_height; in si_test_dma()
326 if (max_width < 8 || max_height < 8) in si_test_dma()
329 height = ((rand() % (max_height / 8)) + 1) * 8; in si_test_dma()
338 assert(max_width > 0 && max_height > 0); in si_test_dma()
341 height = (rand() % max_height) + 1; in si_test_dma()
/external/skqp/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.c379 max_height, in MontageImageList() local
585 max_height=0; in MontageImageList()
595 if (image_list[tile]->rows > max_height) in MontageImageList()
596 max_height=image_list[tile]->rows; in MontageImageList()
608 height=concatenate != MagickFalse ? max_height : extract_info.height; in MontageImageList()
614 max_height=0; in MontageImageList()
712 max_height=0; in MontageImageList()
725 if (image->rows > max_height) in MontageImageList()
726 max_height=image->rows; in MontageImageList()
727 height=concatenate != MagickFalse ? max_height : extract_info.height; in MontageImageList()
[all …]
/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/skia/gm/
Dblurrect.cpp198 int max_height = 0; variable
225 cur_y += max_height + fPadding;
226 max_height = 0;
236 if (bm.height() > max_height)
237 max_height = bm.height();
/external/mesa3d/src/mesa/drivers/x11/
Dxfonts.c221 unsigned int max_width, max_height, max_bm_width, max_bm_height; in Fake_glXUseXFont() local
239 max_height = fs->max_bounds.ascent + fs->max_bounds.descent; in Fake_glXUseXFont()
241 max_bm_height = max_height; in Fake_glXUseXFont()
/external/mesa3d/src/gallium/frontends/glx/xlib/
Dglx_usefont.c223 unsigned int max_width, max_height, max_bm_width, max_bm_height; in glXUseXFont() local
242 max_height = fs->max_bounds.ascent + fs->max_bounds.descent; in glXUseXFont()
244 max_bm_height = max_height; in 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/kernel-headers/original/uapi/linux/
Dv4l2-subdev.h97 __u32 max_height; member
/external/mesa3d/src/gallium/frontends/xvmc/tests/
Dtestlib.c83 surface_info[j].max_height >= height in GetPort()
/external/libhevc/encoder/
Dihevce_entropy_interface.c176 WORD32 max_height = ps_init_prms->s_tgt_lyr_prms.as_tgt_params[i4_resolution_id].i4_height; in ihevce_entropy_get_mem_recs() local
178 WORD32 max_align_height = ALIGN64(max_height); in ihevce_entropy_get_mem_recs()
/external/freetype/src/autofit/
Daflatin.c1258 FT_Pos max_height; in af_latin_metrics_scale_dim() local
1266 max_height = metrics->units_per_em; in af_latin_metrics_scale_dim()
1270 max_height = FT_MAX( max_height, Axis->blues[nn].ascender ); in af_latin_metrics_scale_dim()
1271 max_height = FT_MAX( max_height, -Axis->blues[nn].descender ); in af_latin_metrics_scale_dim()
1274 dist = FT_ABS( FT_MulFix( max_height, new_scale - scale ) ); in af_latin_metrics_scale_dim()
/external/mesa3d/src/gallium/drivers/r300/
Dr300_state.c906 unsigned max_width, max_height, i; in r300_set_framebuffer_state() local
911 max_width = max_height = 4096; in r300_set_framebuffer_state()
913 max_width = max_height = 4021; in r300_set_framebuffer_state()
915 max_width = max_height = 2560; in r300_set_framebuffer_state()
918 if (state->width > max_width || state->height > max_height) { in r300_set_framebuffer_state()
/external/apache-commons-bcel/docs/
Dclassfile.mdl43 max_height 28350
582 max_height 28350
1594 max_height 28350
2116 max_height 28350
2128 max_height 28350

12