/external/crcalc/tests/src/com/hp/creals/ |
CRTest.java | 80 check_eq(one.max(two),two, "max failed");
|
/external/deqp/modules/gles3/functional/ |
es3fPrimitiveRestartTests.cpp | 554 deUint32 max = 0; local 560 if (index != restartIndex && index > max) 561 max = index; 564 glDrawRangeElements(primTypeGL, 0, (GLuint)max, (GLsizei)count, indexTypeGL, (GLvoid*)getIndexPtr(startNdx));
|
/external/deqp/modules/gles3/stress/ |
es3sDrawTests.cpp | 69 DrawInvalidRangeCase (Context& ctx, const char* name, const char* desc, deUint32 min, deUint32 max, bool useLimitMin = false, bool useLimitMax = false); 89 DrawInvalidRangeCase::DrawInvalidRangeCase (Context& ctx, const char* name, const char* desc, deUint32 min, deUint32 max, bool useLimitMin, bool useLimitMax) 92 , m_max (max) 162 deUint32 max = m_max; local 183 max = 0xFFFFFFFF; 185 max = (deUint32)indexLimit; 203 gl.glDrawRangeElements(GL_POINTS, min, max, m_numIndices, GL_UNSIGNED_INT, DE_NULL);
|
/external/deqp/modules/glshared/ |
glsMemoryStressCase.cpp | 906 int max = m_allocated[0]; local 913 max = deMax32(m_allocated[allocNdx], max); 916 if (min == 0 && max != 0) 923 const float change = (float)(min - max) / (float)(max); 926 log << TestLog::Message << "Allocated objects max: " << max << ", min: " << min << ", difference: " << change << "% threshold: " << threshold << "%" << TestLog::EndMessage;
|
/external/dng_sdk/source/ |
dng_utils.h | 74 inline int32 Pin_int32 (int32 min, int32 x, int32 max) 77 return Max_int32 (min, Min_int32 (x, max)); 84 int32 min, max; local 85 if (a < b) { min = a; max = b; } 86 else { min = b; max = a; } 88 return Pin_int32 (min, x, max); 147 inline uint32 Pin_uint32 (uint32 min, uint32 x, uint32 max) 150 return Max_uint32 (min, Min_uint32 (x, max)); 280 inline int64 Pin_int64 (int64 min, int64 x, int64 max) 283 return Max_int64 (min, Min_int64 (x, max)); [all...] |
/external/e2fsprogs/e2fsck/ |
pass2.c | 77 int count, max; member in struct:check_dir_struct 140 cd.max = ext2fs_dblist_count2(fs->dblist); 143 (void) (ctx->progress)(ctx, 2, 0, cd.max); 180 * update their parent's min and max hash values 639 printf("Blockcnt = %d, min hash 0x%08x, max hash 0x%08x\n", 761 if (ctx->progress && (ctx->progress)(ctx, 2, cd->count++, cd->max)) [all...] |
rehash.c | 75 int max; member in struct:out_dir 228 if (outdir->max) { 243 outdir->max = blocks; 251 outdir->max = 0; 260 if (outdir->num >= outdir->max) { 261 retval = alloc_size_dir(fs, outdir, outdir->max + 50); 419 outdir->max = 0; 719 outdir.max = outdir.num = 0; 837 int cur, max, all_dirs, first = 1; local 852 max = e2fsck_get_num_dirinfo(ctx) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
DB_Results.java | 293 int depth = -1, max = -1; field in class:DB_Results.LogWriter 306 if (this.depth > this.max) this.max = this.depth; 317 for (int i=0; i<this.max; i++) { 323 this.depth = this.max = -1; [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
BarGraph.java | 95 // we calculate the max width 99 maxNameLength= Math.max(maxNameLength, es.x); 116 double max= 0.0; local 118 max= Math.max(max, Math.abs(bars[i].value)); 123 max= 125; 125 if (max > 400.0) { 127 } else if (max > 200.0) { 129 } else if (max > 100.0) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
CSpinner.java | 210 setSelection(Math.max(m_value, m_minimum)); 235 newValue = Math.min(Math.max(m_minimum, newValue), m_maximum); 514 int height = Math.max(spinnerSize.y, textSize.y);
|
CTableCombo.java | 391 select(Math.max(oldIndex - 1, 0)); 419 select(Math.max(index, 0)); 515 //int width = Math.max(comboSize.x, tableRect.width + 2); 554 height = Math.max(hHint, Math.max(textSize.y, arrowSize.y) + 2 * borderWidth); 555 width = Math.max(wHint, Math.max(textSize.x + arrowSize.x, tableWidth) + 2 * borderWidth);
|
/external/freetype/src/autofit/ |
afhints.c | 1175 FT_PtrDist min, max, mid; local [all...] |
/external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/ |
LongsTest.java | 137 Longs.max(); 144 assertEquals(MIN_VALUE, Longs.max(MIN_VALUE)); 145 assertEquals(MAX_VALUE, Longs.max(MAX_VALUE)); 146 assertEquals((long) 9, Longs.max( 429 assertNull("Max long + 1", 431 assertNull("Max long * 10",
|
/external/guava/guava-tests/test/com/google/common/io/ |
ByteStreamsTest.java | 423 private final long max; field in class:ByteStreamsTest.SlowSkipper 425 public SlowSkipper(InputStream in, long max) { 427 this.max = max; 431 return super.skip(Math.min(max, n));
|
/external/guava/guava-tests/test/com/google/common/primitives/ |
DoublesTest.java | 186 Doubles.max(); 193 assertEquals(LEAST, Doubles.max(LEAST)); 194 assertEquals(GREATEST, Doubles.max(GREATEST)); 195 assertEquals((double) 9, Doubles.max( 199 assertEquals(0.0, Doubles.max(-0.0, 0.0)); 200 assertEquals(0.0, Doubles.max(0.0, -0.0)); 201 assertEquals(GREATEST, Doubles.max(NUMBERS)); 202 assertTrue(Double.isNaN(Doubles.max(VALUES)));
|
FloatsTest.java | 184 Floats.max(); 191 assertEquals(GREATEST, Floats.max(GREATEST)); 192 assertEquals(LEAST, Floats.max(LEAST)); 193 assertEquals((float) 9, Floats.max( 197 assertEquals(0f, Floats.max(-0f, 0f)); 198 assertEquals(0f, Floats.max(0f, -0f)); 199 assertEquals(GREATEST, Floats.max(NUMBERS)); 200 assertTrue(Float.isNaN(Floats.max(VALUES)));
|
IntsTest.java | 175 Ints.max(); 182 assertEquals(LEAST, Ints.max(LEAST)); 183 assertEquals(GREATEST, Ints.max(GREATEST)); 184 assertEquals((int) 9, Ints.max( 479 assertNull("Max integer + 1", 481 assertNull("Max integer * 10", 487 assertNull("Max long", Ints.tryParse(Long.toString(Long.MAX_VALUE)));
|
LongsTest.java | 148 Longs.max(); 155 assertEquals(MIN_VALUE, Longs.max(MIN_VALUE)); 156 assertEquals(MAX_VALUE, Longs.max(MAX_VALUE)); 157 assertEquals((long) 9, Longs.max( 462 assertNull("Max long + 1", 464 assertNull("Max long * 10",
|
ShortsTest.java | 183 Shorts.max(); 190 assertEquals(LEAST, Shorts.max(LEAST)); 191 assertEquals(GREATEST, Shorts.max(GREATEST)); 192 assertEquals((short) 9, Shorts.max(
|
/external/harfbuzz_ng/src/ |
hb-ot-cmap-table.hh | 90 int min = 0, max = (int) thiz->segCount - 1; local 94 while (min <= max) 96 int mid = (min + max) / 2; 98 max = mid - 1;
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
LocaleMatcherTest.java | 359 // max("und") = "en_Latn_US", and since matching is based on maximized 366 // To avoid that, we change the matcher's definitions of max 368 // so that max("und")="und". That produces the following, more desirable 446 ULocale max = ULocale.addLikelySubtags(first); local 447 sorted.add(max);
|
/external/icu/icu4c/source/i18n/ |
gregocal.cpp | 840 int32_t max = monthLength(internalGet(UCAL_MONTH)); local 849 (cMonthStart + (cMonthLen=(max-10))*kOneDay >= fGregorianCutover)) { [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
LocaleMatcherTest.java | 355 // max("und") = "en_Latn_US", and since matching is based on maximized 362 // To avoid that, we change the matcher's definitions of max 364 // so that max("und")="und". That produces the following, more desirable 442 ULocale max = ULocale.addLikelySubtags(first); local 443 sorted.add(max);
|
/external/jemalloc/include/jemalloc/internal/ |
prof.h | 69 unsigned max; member in struct:__anon13671
|
/external/libavc/encoder/ |
ih264e_utils.c | 469 WORD32 max = MAX(wd, ht); local 473 (max <= gai4_ih264_max_wd_ht[i])) 608 /* determine max luma samples */ 663 WORD32 pad = MAX(horz_pad, vert_pad); 676 num_luma_samples = MAX(num_luma_samples, pic_size); 697 * For the padded area use MAX(horz_pad, vert_pad) as pad 700 * Since Width and Height can change worst Wd + Ht is when One of the dimensions is max and other is min 723 * Max number of luma pixels in the frame 781 /* max ref buffer cnt * [all...] |