Home
last modified time | relevance | path

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

/external/libaom/libaom/test/
Dselfguided_filter_test.cc134 const int max_w = 260, max_h = 260, stride = 672, out_stride = 672; in RunCorrectnessTest() local
156 for (k = -16; k < max_w + 16; ++k) in RunCorrectnessTest()
166 int test_w = max_w - (i / 9); in RunCorrectnessTest()
318 const int max_w = 260, max_h = 260, stride = 672, out_stride = 672; in RunCorrectnessTest() local
342 for (k = -16; k < max_w + 16; ++k) in RunCorrectnessTest()
352 int test_w = max_w - (i / 9); in RunCorrectnessTest()
/external/pdfium/testing/image_diff/
Dimage_diff.cpp128 int max_w = std::max(baseline.w(), actual.w()); in CountImageSizeMismatchAsPixelDifference() local
131 *pixels_different += (max_w - w) * h; in CountImageSizeMismatchAsPixelDifference()
133 *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.c208 const unsigned max_w = 1024; in nv04_surface_copy_swizzle() local
210 unsigned sub_w = w > max_w ? max_w : w; in nv04_surface_copy_swizzle()
/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.cpp648 const auto max_w = device_limits.maxViewportDimensions[0]; in manual_PreCallValidateViewport() local
654 … } else if (!(f_lte_u32_exact(viewport.width, max_w) || f_lte_u32_direct(viewport.width, max_w))) { in manual_PreCallValidateViewport()
658 parameter_name.get_name().c_str(), viewport.width, max_w); in manual_PreCallValidateViewport()
659 } else if (!f_lte_u32_exact(viewport.width, max_w) && f_lte_u32_direct(viewport.width, max_w)) { in manual_PreCallValidateViewport()
663 fn_name, parameter_name.get_name().c_str(), viewport.width, max_w); in manual_PreCallValidateViewport()
/external/libkmsxx/kms++util/src/
Dvideodevice.cpp273 s.max_w = v4lfrms.stepwise.max_width; in get_frame_sizes()
/external/tensorflow/tensorflow/python/ops/
Dimage_ops_test.py2635 def _ResizeImageCall(self, x, max_h, max_w, preserve_aspect_ratio, argument
2638 target_max = ops.convert_to_tensor([max_h, max_w])
2642 target_max = [max_h, max_w]
3154 def _ResizeImageCall(self, x, max_h, max_w, preserve_aspect_ratio, argument
3157 target_max = ops.convert_to_tensor([max_h, max_w])
3161 target_max = [max_h, max_w]