/external/libaom/libaom/test/ |
D | temporal_filter_yuv_test.cc | 26 const int MAX_WIDTH = 32; variable 229 int y_dif[MAX_WIDTH * MAX_HEIGHT] = { 0 }; in ApplyReferenceFilter() 230 int u_dif[MAX_WIDTH * MAX_HEIGHT] = { 0 }; in ApplyReferenceFilter() 231 int v_dif[MAX_WIDTH * MAX_HEIGHT] = { 0 }; in ApplyReferenceFilter() 414 assert(block_width == MAX_WIDTH && MAX_WIDTH == 32); in ApplyTestFilter() 418 const int mb_pels = MAX_WIDTH * MAX_HEIGHT; in ApplyTestFilter() 488 assert(block_width == MAX_WIDTH && MAX_WIDTH == 32); in ApplyTestFilter() 492 const int mb_pels = MAX_WIDTH * MAX_HEIGHT; in ApplyTestFilter() 558 DECLARE_ALIGNED(16, PixelType, y_src[MAX_WIDTH * MAX_HEIGHT]) = { 0 }; in CompareTestWithParam() 559 DECLARE_ALIGNED(16, PixelType, y_pre[MAX_WIDTH * MAX_HEIGHT]) = { 0 }; in CompareTestWithParam() [all …]
|
/external/skqp/fuzz/ |
D | FuzzEncoders.cpp | 23 constexpr int MAX_WIDTH = 512; variable 29 fuzz->nextRange(&w, 1, MAX_WIDTH); in make_fuzzed_bitmap() 86 if (img->width() > MAX_WIDTH || img->height() > MAX_HEIGHT) { in DEF_FUZZ()
|
/external/skia/fuzz/ |
D | FuzzEncoders.cpp | 23 constexpr int MAX_WIDTH = 512; variable 29 fuzz->nextRange(&w, 1, MAX_WIDTH); in make_fuzzed_bitmap() 86 if (img->width() > MAX_WIDTH || img->height() > MAX_HEIGHT) { in DEF_FUZZ()
|
/external/google-java-format/core/src/test/resources/com/google/googlejavaformat/java/testdata/ |
D | Unformatted.output | 27 private static final int MAX_WIDTH = 100; 48 Formatter.format(javaInput, javaOutput, MAX_WIDTH, errors, 1); 53 javaOutput.writeMerged(stringWriter, linesFlag, MAX_WIDTH, errors);
|
D | Unformatted.input | 22 MAX_WIDTH = 100 ; public void testFormatter ( ) throws Exception { Path 38 format ( javaInput , javaOutput , MAX_WIDTH , errors , 1 ) ; assertTrue ( 42 MAX_WIDTH , errors ) ; String outputString = stringWriter . toString ( ) ;
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/ |
D | WNafUtil.java | 14 private static final int MAX_WIDTH = 16; field in WNafUtil 30 final int confWidth = Math.min(MAX_WIDTH, getWindowSize(bits) + 3); in configureBasepoint() 365 return getWindowSize(bits, DEFAULT_WINDOW_SIZE_CUTOFFS, MAX_WIDTH); in getWindowSize() 389 return getWindowSize(bits, windowSizeCutoffs, MAX_WIDTH); in getWindowSize() 424 int width = Math.max(2, Math.min(MAX_WIDTH, minWidth)); in precompute() 451 width = Math.min(MAX_WIDTH, Math.max(result.getConfWidth(), width)); in precompute()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
D | WNafUtil.java | 10 private static final int MAX_WIDTH = 16; field in WNafUtil 26 final int confWidth = Math.min(MAX_WIDTH, getWindowSize(bits) + 3); in configureBasepoint() 361 return getWindowSize(bits, DEFAULT_WINDOW_SIZE_CUTOFFS, MAX_WIDTH); in getWindowSize() 385 return getWindowSize(bits, windowSizeCutoffs, MAX_WIDTH); in getWindowSize() 420 int width = Math.max(2, Math.min(MAX_WIDTH, minWidth)); in precompute() 447 width = Math.min(MAX_WIDTH, Math.max(result.getConfWidth(), width)); in precompute()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/ec/ |
D | WNafUtil.java | 14 private static final int MAX_WIDTH = 16; field in WNafUtil 30 final int confWidth = Math.min(MAX_WIDTH, getWindowSize(bits) + 3); in configureBasepoint() 365 return getWindowSize(bits, DEFAULT_WINDOW_SIZE_CUTOFFS, MAX_WIDTH); in getWindowSize() 389 return getWindowSize(bits, windowSizeCutoffs, MAX_WIDTH); in getWindowSize() 424 int width = Math.max(2, Math.min(MAX_WIDTH, minWidth)); in precompute() 451 width = Math.min(MAX_WIDTH, Math.max(result.getConfWidth(), width)); in precompute()
|
/external/bc/gen/ |
D | strgen.c | 63 #define MAX_WIDTH (74) macro 175 if (count > MAX_WIDTH) { in main()
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_limits.h | 39 #define MAX_WIDTH (1 << (SP_MAX_TEXTURE_2D_LEVELS - 1)) macro
|
D | sp_tile_cache.c | 58 pos = addr.bits.layer * (MAX_WIDTH / TILE_SIZE) * (MAX_HEIGHT / TILE_SIZE); in addr_to_clear_pos() 59 pos += addr.bits.y * (MAX_WIDTH / TILE_SIZE); in addr_to_clear_pos() 97 assert(MAX_WIDTH >= pipe->screen->get_param(pipe->screen, in sp_create_tile_cache() 102 STATIC_ASSERT((TILE_SIZE << TILE_ADDR_BITS) >= MAX_WIDTH); in sp_create_tile_cache() 198 …tc->clear_flags_size = (MAX_WIDTH / TILE_SIZE) * (MAX_HEIGHT / TILE_SIZE) * tc->num_maps / 32 * si… in sp_tile_cache_set_surface()
|
/external/libmpeg2/decoder/ |
D | impeg2d_structs.h | 31 #define MAX_WIDTH 4096 macro 38 #define MAX_FRM_SIZE (MAX_WIDTH * MAX_HEIGHT * 2) /* Supports only 420P and 422ILE */
|
D | impeg2d_api_main.c | 2310 if(ps_ip->s_ivd_fill_mem_rec_ip_t.u4_max_frm_wd > MAX_WIDTH) in impeg2d_api_check_struct_sanity() 2394 if(ps_ip->s_ivd_init_ip_t.u4_frm_max_wd > MAX_WIDTH) in impeg2d_api_check_struct_sanity()
|
/external/s2-geometry-library-java/tests/com/google/common/geometry/ |
D | S2Test.java | 234 new MetricBundle(S2Projections.MIN_WIDTH, S2Projections.MAX_WIDTH, S2Projections.AVG_WIDTH); 266 < S2Projections.MAX_WIDTH.deriv() * S2Projections.MAX_EDGE.deriv() + 1e-15);
|
D | S2CellTest.java | 401 s.avgWidth, S2Projections.MIN_WIDTH, S2Projections.MAX_WIDTH, in testSubdivide()
|
/external/s2-geometry-library-java/src/com/google/common/geometry/ |
D | S2Projections.java | 150 public static final Metric MAX_WIDTH = new Metric(1, MAX_ANGLE_SPAN.deriv()); field in S2Projections
|
/external/mesa3d/docs/relnotes/ |
D | 7.10.rst | 483 - mesa: replace large/MAX_WIDTH stack allocations with heap allocations 484 - mesa: replace large/MAX_WIDTH stack allocations with heap allocations 488 - mesa: replace more MAX_WIDTH stack allocations with heap allocations
|
/external/mesa3d/docs/ |
D | versions.rst | 1437 - changed max framebuffer size to 4Kx4K (MAX_WIDTH/HEIGHT in config.h)
|