HomeSort by relevance Sort by last modified time
    Searched refs:large (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/icu4c/test/cintltst/
sorttest.c 30 uint32_t large[]={ 21, 10, 20, 19, 11, 12, 13, 10, 10, 10, 10, local
68 /* sort large array (not stable) */
70 uprv_sortArray(large, LENGTHOF(large), sizeof(large[0]), uprv_uint32Comparator, NULL, FALSE, &errorCode);
72 log_err("uprv_sortArray(large) failed - %s\n", u_errorName(errorCode));
75 for(i=1; i<LENGTHOF(large); ++i) {
76 if(large[i-1]>large[i]) {
77 log_err("uprv_sortArray(large) mis-sorted [%d]=%u > [%d]=%u\n", i-1, large[i-1], i, large[i])
    [all...]
cdattst.c 1083 const double large = 1e+30; \/* well beyond usable UDate range *\/ local
    [all...]
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/drawable/
MipmapDrawableTest.java 69 Drawable large = new MockDrawable(128); local
78 mMipmapDrawable.addDrawable(large);
81 assertSame(large, mDrawableContainerState.getChildren()[2]);
87 assertSame(large, mDrawableContainerState.getChildren()[3]);
94 assertSame(large, mDrawableContainerState.getChildren()[4]);
96 mMipmapDrawable.addDrawable(large);
101 assertSame(large, mDrawableContainerState.getChildren()[4]);
102 assertSame(large, mDrawableContainerState.getChildren()[5]);
140 Drawable large = new MockDrawable(128); local
142 mMipmapDrawable.addDrawable(large);
184 Drawable large = new MockDrawable(128, 64); local
202 Drawable large = new MockDrawable(128); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
BigCache.java 31 * This activity contains two Views, one as big as the screen, one much larger. The large one
54 final View large = new View(this); local
55 large.setId(R.id.b);
56 large.setBackgroundColor(0xFF00FF00);
59 large.setLayoutParams(new LinearLayout.LayoutParams(screenWidth, height));
66 testBed.addView(large);
  /external/icu4c/config/
mh-linux-va 18 SHAREDLIBCFLAGS = -qpic=large
19 SHAREDLIBCXXFLAGS = -qpic=large
45 SHLIB.c= $(CC) $(CFLAGS) -qmkshrobj -qpic=large -G $(LDFLAGS)
46 SHLIB.cc= $(CXX) $(CXXFLAGS) -qmkshrobj -qpic=large -G $(LDFLAGS)
  /external/clang/test/CodeGen/
asm.c 84 struct large { struct
88 unsigned long t15(int x, struct large *P) {
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 72 constexpr pixel large(4); // now valid
  /external/zlib/examples/
enough.c 86 to exceed the capacity of an eight-byte integer with a large number of
87 symbols and a large maximum code length, so multiple-precision arithmetic
169 local int large; /* largest code table so far */ variable
317 the current sub-table is rem. Uses the globals max, code, root, large, and
339 if (mem > large) {
340 large = mem;
411 large = 1 << root; /* base table */
430 printf("done: maximum of %d table entries\n", large);
  /external/tremolo/Tremolo/
bitwise.c 551 static unsigned long large[]= local
603 or->buffer->data[i*4] = large[i]&0xff;
604 or->buffer->data[i*4+1] = (large[i]>>8)&0xff;
605 or->buffer->data[i*4+2] = (large[i]>>16)&0xff;
606 or->buffer->data[i*4+3] = (large[i]>>24)&0xff;
613 if(test!=large[i]){
614 fprintf(stderr,"%ld != %ld (%lx!=%lx):",test,large[i],
615 test,large[i]);
  /external/webkit/LayoutTests/fast/encoding/resources/
invalid-xml.js 3 // this only tests one of a large number of conditions that should cause fatal errors
  /external/zlib/watcom/
watcom_l.mak 2 # OpenWatcom large model
  /external/v8/test/mjsunit/
copy-on-write-assert.js 40 // Force copy. Because the array is large it will test the slow array
41 // cloning in large object space.
big-array-literal.js 28 // Test that we can make large object literals that work.
big-object-literal.js 28 // Test that we can make large object literals that work.
  /dalvik/tests/074-gc-thrash/src/
Main.java 112 Large large = new Large(); local
117 large.start();
128 large.join();
157 * Uses a single large array of references, replaced repeatedly in round-robin
311 * Allocates large useless objects.
313 class Large extends Thread {
333 System.out.println("Large: sleepCount=" + sleepCount);
  /dalvik/tests/003-omnibus-opcodes/src/
IntMath.java 424 static void checkConsts(byte small, short medium, int large, long huge) {
430 assert(large == -88888); // const
431 assert(large == -88888L); // const-wide/32
  /cts/tools/theme-test-tools/
themetestscripts.sh 57 # Does not generate for large form factors (phones-only).
78 # Does not generate for large form factors (phones-only).
100 # Generate for large and small form factors (phones and tablets).
102 # is a large form factor mdpi device (stingray or wingray).
119 mkdir -p $ANDROID_HOST_OUT/cts/theme-assets-large-mdpi && \
120 adb pull data/data/com.android.cts.stub/files/ $ANDROID_HOST_OUT/cts/theme-assets-large-mdpi/ && \
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
script.js 15 var minDepth = 1024; // A random large number, the depth of a
  /external/openssl/
import_openssl.sh 140 perl crypto/sha/asm/sha1-armv4-large.pl > crypto/sha/asm/sha1-armv4-large.s
  /external/webkit/LayoutTests/fast/url/script-tests/
ipv4.js 73 // Very large numbers.
  /external/zlib/contrib/pascal/
example.pas 269 * Test deflate with large buffers and dynamic change of compression level
321 * Test inflate with large buffers
348 CHECK_ERR(err, 'large inflate');
356 WriteLn('bad large inflate: ', d_stream.total_out);
573 WriteLn('** Testing deflate with large buffers');
577 WriteLn('** Testing inflate with large buffers');
  /bionic/libc/arch-sh/bionic/
memset.S 54 cmp/hs REG_TMP1,REG_LEN /* if (len >= 28) goto large; */
55 bt/s large
195 large: label
  /external/v8/test/mjsunit/regress/
splice-missing-wb.js 30 // Create array large enough to span several page regions.
  /external/icu4c/
icu4c.css 321 font-size: large;
326 font-size: large;
332 font-size: large;
  /external/v8/tools/
consarray.js 33 * when concatenating on large (10K items) arrays due to memory copying.

Completed in 241 milliseconds

1 2 3 4