Home
last modified time | relevance | path

Searched refs:max_w (Results 1 – 10 of 10) sorted by relevance

/external/libaom/libaom/test/
Dselfguided_filter_test.cc136 const int max_w = 260, max_h = 260, stride = 672, out_stride = 672; in RunCorrectnessTest() local
158 for (k = -16; k < max_w + 16; ++k) in RunCorrectnessTest()
168 int test_w = max_w - (i / 9); in RunCorrectnessTest()
325 const int max_w = 260, max_h = 260, stride = 672, out_stride = 672; in RunCorrectnessTest() local
349 for (k = -16; k < max_w + 16; ++k) in RunCorrectnessTest()
359 int test_w = max_w - (i / 9); in RunCorrectnessTest()
/external/pdfium/testing/image_diff/
Dimage_diff.cpp138 int max_w = std::max(baseline.w(), actual.w()); in CountImageSizeMismatchAsPixelDifference() local
141 *pixels_different += (max_w - w) * h; in CountImageSizeMismatchAsPixelDifference()
143 *pixels_different += (max_h - h) * max_w; in CountImageSizeMismatchAsPixelDifference()
/external/libkmsxx/kms++util/inc/kms++util/
Dvideodevice.h13 uint32_t min_w, max_w, step_w; member
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnv04_surface.c204 const unsigned max_w = 1024; in nv04_surface_copy_swizzle() local
206 unsigned sub_w = w > max_w ? max_w : w; in nv04_surface_copy_swizzle()
/external/OpenCL-CTS/test_common/harness/
DimageHelpers.h522 float max_w = imageInfo->width; in sample_image_pixel_offset() local
554 max_w = (float)((imageInfo->width >> lod) ? (imageInfo->width >> lod) : 1); in sample_image_pixel_offset()
556 …get_integer_coords_offset( x, y, z, xAddressOffset, yAddressOffset, zAddressOffset, max_w, max_h, … in sample_image_pixel_offset()
/external/libaom/libaom/aom_dsp/
Dnoise_model.c35 const int max_w = AOMMIN(w - x_o, block_size); \
38 for (int x = 0; x < max_w; ++x) { \
42 return block_mean / (max_w * max_h); \
64 const int max_w = AOMMIN(w - x_o, block_size_x); \
68 for (int x = 0; x < max_w; ++x) { \
75 noise_mean /= (max_w * max_h); \
76 return noise_var / (max_w * max_h) - noise_mean * noise_mean; \
/external/vulkan-validation-layers/layers/
Dparameter_validation_utils.cpp675 const auto max_w = device_limits.maxViewportDimensions[0]; in manual_PreCallValidateViewport() local
681 … } else if (!(f_lte_u32_exact(viewport.width, max_w) || f_lte_u32_direct(viewport.width, max_w))) { in manual_PreCallValidateViewport()
685 parameter_name.get_name().c_str(), viewport.width, max_w); in manual_PreCallValidateViewport()
686 } else if (!f_lte_u32_exact(viewport.width, max_w) && f_lte_u32_direct(viewport.width, max_w)) { in manual_PreCallValidateViewport()
690 fn_name, parameter_name.get_name().c_str(), viewport.width, max_w); in manual_PreCallValidateViewport()
/external/igt-gpu-tools/tools/
Dintel_gpu_top.c1208 unsigned int max_w = con_w - 1; in print_engine() local
1220 print_percentage_bar(val, max_w - len); in print_engine()
/external/libkmsxx/kms++util/src/
Dvideodevice.cpp330 s.max_w = v4lfrms.stepwise.max_width; in get_frame_sizes()
/external/tensorflow/tensorflow/python/ops/
Dimage_ops_test.py2703 def _ResizeImageCall(self, x, max_h, max_w, preserve_aspect_ratio, argument
2706 target_max = ops.convert_to_tensor([max_h, max_w])
2710 target_max = [max_h, max_w]
3222 def _ResizeImageCall(self, x, max_h, max_w, preserve_aspect_ratio, argument
3225 target_max = ops.convert_to_tensor([max_h, max_w])
3229 target_max = [max_h, max_w]