/external/mesa3d/src/gallium/frontends/vdpau/ |
D | query.c | 68 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/perfetto/src/trace_processor/dynamic/ |
D | experimental_slice_layout_generator.cc | 29 : start(_start), end(_end), max_height(_max_height) {} in GroupInfo() 32 uint32_t max_height; member 208 it->second.max_height = std::max(it->second.max_height, depth + 1); in ComputeLayoutTable() 232 uint32_t max_height = group->max_height; in ComputeLayoutTable() local 254 uint32_t end_depth = layout_depth + max_height; in ComputeLayoutTable() 257 start_depth < open->layout_depth + open->max_height; in ComputeLayoutTable() 259 end_depth <= open->layout_depth + open->max_height; in ComputeLayoutTable()
|
/external/crosvm/devices/src/virtio/video/encoder/ |
D | libvda_encoder.rs | 85 max_height: u32, in new() field 94 max_height, in new() 114 parsed_format.max_height = std::cmp::min(*max_height, parsed_format.max_height); in new() 120 max_height: *max_height, in new() 132 max_height, in new() 146 max: max_height, in new()
|
/external/tensorflow/tensorflow/core/kernels/image/ |
D | sample_distorted_bounding_box_op.cc | 131 int max_height = static_cast<int>(lrintf(std::sqrt(max_area / aspect_ratio))); in GenerateRandomCrop() local 135 if (lrintf(max_height * aspect_ratio) > original_width) { in GenerateRandomCrop() 139 max_height = static_cast<int>((original_width + 0.5 - kEps) / aspect_ratio); in GenerateRandomCrop() 143 if (lrintf(max_height * aspect_ratio) > original_width) { in GenerateRandomCrop() 144 max_height -= 1; in GenerateRandomCrop() 148 if (max_height > original_height) { in GenerateRandomCrop() 149 max_height = original_height; in GenerateRandomCrop() 152 if (height >= max_height) { in GenerateRandomCrop() 153 height = max_height; in GenerateRandomCrop() 156 if (height < max_height) { in GenerateRandomCrop() [all …]
|
/external/OpenCL-CTS/test_conformance/allocations/ |
D | allocation_functions.cpp | 31 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()
|
D | main.cpp | 137 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/ |
D | pshglob.c | 712 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/mesa3d/src/gallium/frontends/xvmc/ |
D | context.c | 56 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/ |
D | r600_test_dma.c | 210 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/tensorflow/tensorflow/compiler/xla/service/spmd/ |
D | schedule_aware_all_gather_cse.cc | 61 int64 max_height = 0; in RunOnComputation() local 68 max_height = std::max(max_height, h); in RunOnComputation()
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_test_dma.c | 205 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/ |
D | blurrect.cpp | 187 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/crosvm/devices/src/virtio/video/decoder/ |
D | capability.rs | 96 let max_height = caps.input_formats.iter().map(|fmt| fmt.max_height).min(); in new() localVariable 104 max: max_height.unwrap_or(0), in new()
|
/external/ImageMagick/MagickCore/ |
D | montage.c | 379 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/ |
D | test_VIDIOC_ENUM_FRAMESIZES.c | 101 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()
|
D | v4l2_show.c | 154 framesize->stepwise.max_height, in show_v4l2_frmsizeenum()
|
/external/mesa3d/src/gallium/frontends/glx/xlib/ |
D | glx_usefont.c | 223 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/mesa/drivers/x11/ |
D | xfonts.c | 221 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/glx/ |
D | xfont.c | 228 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/skia/gm/ |
D | blurrect.cpp | 201 int max_height = 0; variable 228 cur_y += max_height + fPadding; 229 max_height = 0; 239 if (bm.height() > max_height) 240 max_height = bm.height();
|
/external/kernel-headers/original/uapi/linux/ |
D | v4l2-subdev.h | 105 __u32 max_height; member
|
/external/mesa3d/src/gallium/frontends/xvmc/tests/ |
D | testlib.c | 83 surface_info[j].max_height >= height in GetPort()
|
/external/webrtc/video/ |
D | send_statistics_proxy.h | 216 max_height(height), in Frame() 221 uint32_t max_height; // Max height with this timestamp. member
|
/external/libdrm/man/ |
D | drmModeGetResources.3.rst | 45 uint32_t min_height, max_height;
|
/external/libhevc/encoder/ |
D | ihevce_entropy_interface.c | 176 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()
|