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

1 2 3 4

  /external/clang/test/Sema/
ms-inline-asm.c 24 mov eax, LENGTH bar // expected-error {{Unable to lookup expr!}}
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
SHA1PRNG_SecureRandomTest.java 33 private static final int LENGTH = 20; // constant defining loop limit
72 for ( int i = 0; i < LENGTH; i++ ) {
75 assertFalse("unexpected: myBytes.length != i :: i==" + i +
76 " myBytes.length=" + myBytes.length, myBytes.length != i);
91 for ( int i = 0; i < LENGTH; i+=INCR ) {
132 // case1: sequencies are of the same length
133 for ( int i = 1; i < LENGTH; i+=INCR ) {
143 for ( int k = 1; k < LENGTH; k+=INCR )
    [all...]
SHA1_MessageDigestTest.java 49 * whose length are in the LENGTHS array below.
50 * Numbers in the LENGTH array cover diapason from 1 to 9999
128 private static final int LENGTH = 100; //
153 byte[] bytes = new byte[LENGTH];
154 for (int i = 0; i < bytes.length; i++ ) {
158 md.update(bytes, 0, LENGTH);
163 assertEquals("digest.length != digestClone.length :: " + digestClone.length,
164 digest.length, digestClone.length)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/provider/crypto/
SHA1PRNG_SecureRandomTest.java 34 private static final int LENGTH = 20; // constant defining loop limit
73 for (int i = 0; i < LENGTH; i++) {
75 assertFalse("unexpected: myBytes.length != i :: i==" + i + " myBytes.length="
76 + myBytes.length, myBytes.length != i);
89 for (int i = 0; i < LENGTH; i += INCR) {
126 // case1: sequencies are of the same length
127 for (int i = 1; i < LENGTH; i += INCR) {
136 for (int k = 1; k < LENGTH; k += INCR)
    [all...]
  /external/clang/test/CodeGen/
ms-inline-asm.cpp 44 __asm mov eax, LENGTH Foo::ptr
46 __asm mov eax, LENGTH Foo::Bar::ptr
48 __asm mov eax, LENGTH Foo::arr
50 __asm mov eax, LENGTH Foo::Bar::arr
ms-inline-asm.c 178 __asm mov eax, LENGTH foo
179 __asm mov eax, LENGTH bar
180 __asm mov eax, LENGTH _foo
181 __asm mov eax, LENGTH _bar
301 __asm mov olen, LENGTH arr
  /external/chromium_org/third_party/zlib/
inflate.h 25 EXLEN, /* i: waiting for extra length (gzip) */
34 STORED, /* i: waiting for stored size (length and complement) */
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
42 LENEXT, /* i: waiting for length extra bits */
48 LENGTH, /* i: waiting for 32-bit length (gzip) */
77 CHECK -> LENGTH -> DONE
101 unsigned length; /* literal or length of data to copy * member in struct:inflate_state
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 25 EXLEN, /* i: waiting for extra length (gzip) */
34 STORED, /* i: waiting for stored size (length and complement) */
37 LENLENS, /* i: waiting for code length code lengths */
38 CODELENS, /* i: waiting for length/lit and distance code lengths */
39 LEN, /* i: waiting for length/lit code */
40 LENEXT, /* i: waiting for length extra bits */
46 LENGTH, /* i: waiting for 32-bit length (gzip) */
73 CHECK -> LENGTH -> DONE
97 unsigned length; /* literal or length of data to copy * member in struct:inflate_state
    [all...]
  /external/zlib/src/
inflate.h 25 EXLEN, /* i: waiting for extra length (gzip) */
34 STORED, /* i: waiting for stored size (length and complement) */
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
42 LENEXT, /* i: waiting for length extra bits */
48 LENGTH, /* i: waiting for 32-bit length (gzip) */
77 CHECK -> LENGTH -> DONE
101 unsigned length; /* literal or length of data to copy * member in struct:inflate_state
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
LongSparseArrayTest.java 29 private static final int LENGTH = VALUES.length;
37 int length = VALUES.length; local
39 for (int i = 0; i < length; i++) {
44 for (int i = 0; i < length; i++) {
48 for (int i = 0; i < length; i++) {
57 assertEquals(LENGTH, sparseArray.size());
60 assertEquals(LENGTH, sparseArray.size());
102 int length = VALUES.length local
    [all...]
SparseArrayTest.java 25 private static final int LENGTH = VALUES.length;
33 int length = VALUES.length; local
35 for (int i = 0; i < length; i++) {
40 for (int i = 0; i < length; i++) {
44 for (int i = 0; i < length; i++) {
53 assertEquals(LENGTH, sparseArray.size());
56 assertEquals(LENGTH, sparseArray.size());
98 int length = VALUES.length local
    [all...]
SparseLongArrayTest.java 29 private static final int LENGTH = VALUES.length;
37 int length = VALUES.length; local
39 for (int i = 0; i < length; i++) {
44 for (int i = 0; i < length; i++) {
48 for (int i = 0; i < length; i++) {
57 assertEquals(LENGTH, sparseArray.size());
60 assertEquals(LENGTH, sparseArray.size());
98 int length = VALUES.length local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
SparseArrayTest.java 41 private static final int LENGTH = VALUES.length;
51 int length = VALUES.length; local
53 for (int i = 0; i < length; i++) {
58 for (int i = 0; i < length; i++) {
62 for (int i = 0; i < length; i++) {
71 assertEquals(LENGTH, sparseArray.size());
74 assertEquals(LENGTH, sparseArray.size());
117 int length = VALUES.length local
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
AssetFileDescriptorTest.java 33 private static final long LENGTH = 100;
54 mAssetFileDes = new AssetFileDescriptor(mFd, START_OFFSET, LENGTH);
102 byte[] dataFromFile = new byte[FILE_DATA.length];
105 while ((readByte != FILE_END) && (readLength < FILE_DATA.length)) {
108 readLength, FILE_DATA.length - readLength);
110 assertEquals(FILE_DATA.length, readLength);
155 assertEquals(LENGTH, mAssetFileDes.getLength());
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
fast_masking.i 43 %apply (char *STRING, int LENGTH) {
  /external/chromium_org/third_party/tcmalloc/chromium/src/
pagemap.h 71 static const int LENGTH = 1 << BITS;
90 return n <= LENGTH - x; // an overflow-free way to do "x + n <= LENGTH"
134 static const int LENGTH = 1 << BITS;
175 // Make sure we divided LENGTH evenly.
176 ASSERT(sizeof(committed_) * 8 == (LENGTH * sizeof(*array_)) >> kPageShift);
210 if (n > LENGTH - x)
249 size_t length = (last_page - first_page + 1) << kPageShift; local
258 ASSERT(info.RegionSize >= length); // Entire length is uncommitted
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelTest.java 69 CONTENT_AS_BYTES_LENGTH = CONTENT_AS_BYTES.length;
75 private static final int CONTENT_LENGTH = CONTENT.length();
484 // content[0...length()]
508 assertEquals(fileOfReadOnlyFileChannel.length(), readOnlyFileChannel
641 assertEquals(CONTENT_LENGTH, fileOfReadWriteFileChannel.length());
646 assertEquals(CONTENT_LENGTH, fileOfReadWriteFileChannel.length());
651 assertEquals(truncateLength, fileOfReadWriteFileChannel.length());
    [all...]
  /frameworks/base/obex/javax/obex/
HeaderSet.java 71 * Represents the OBEX Length header. This is the length of the object in
74 * The value of <code>LENGTH</code> is 0xC3 (195).
76 public static final int LENGTH = 0xC3;
198 private byte[] mWho; // length prefixed byte sequence
200 private byte[] mAppParam; // byte sequence of the form tag length value
280 case LENGTH:
286 throw new IllegalArgumentException("Length must be a Long");
290 throw new IllegalArgumentException("Length must be between 0 and 0xFFFFFFFF");
319 mTarget = new byte[((byte[])headerValue).length];
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/gcov-src/
gcov-io.h 41 padded with 1 to 4 NUL bytes, to bring the length up to a multiple
43 string. Zero length and NULL strings are simply stored as a length
48 string: int32:0 | int32:length char* char:0 padding
81 A record has a tag, length and variable amount of data.
84 header: int32:tag int32:length
90 LENGTH is the number of 4bytes that follow and is usually used to
117 can be inferred from its data length. There is one ARCS record per
119 data length. It enumerates the destination bb and per-arc flags.
432 #define GCOV_TAG_BLOCKS_NUM(LENGTH) (LENGTH
808 unsigned length; \/* Read limit in the block. *\/ member in struct:gcov_var
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/gcov-src/
gcov-io.h 41 padded with 1 to 4 NUL bytes, to bring the length up to a multiple
43 string. Zero length and NULL strings are simply stored as a length
48 string: int32:0 | int32:length char* char:0 padding
81 A record has a tag, length and variable amount of data.
84 header: int32:tag int32:length
90 LENGTH is the number of 4bytes that follow and is usually used to
117 can be inferred from its data length. There is one ARCS record per
119 data length. It enumerates the destination bb and per-arc flags.
432 #define GCOV_TAG_BLOCKS_NUM(LENGTH) (LENGTH
808 unsigned length; \/* Read limit in the block. *\/ member in struct:gcov_var
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.6/lib/gcc/mipsel-linux-android/4.6/gcov-src/
gcov-io.h 41 padded with 1 to 4 NUL bytes, to bring the length up to a multiple
43 string. Zero length and NULL strings are simply stored as a length
48 string: int32:0 | int32:length char* char:0 padding
81 A record has a tag, length and variable amount of data.
84 header: int32:tag int32:length
90 LENGTH is the number of 4bytes that follow and is usually used to
117 can be inferred from its data length. There is one ARCS record per
119 data length. It enumerates the destination bb and per-arc flags.
432 #define GCOV_TAG_BLOCKS_NUM(LENGTH) (LENGTH
808 unsigned length; \/* Read limit in the block. *\/ member in struct:gcov_var
    [all...]
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/gcov-src/
gcov-io.h 41 padded with 1 to 4 NUL bytes, to bring the length up to a multiple
43 string. Zero length and NULL strings are simply stored as a length
48 string: int32:0 | int32:length char* char:0 padding
81 A record has a tag, length and variable amount of data.
84 header: int32:tag int32:length
90 LENGTH is the number of 4bytes that follow and is usually used to
117 can be inferred from its data length. There is one ARCS record per
119 data length. It enumerates the destination bb and per-arc flags.
432 #define GCOV_TAG_BLOCKS_NUM(LENGTH) (LENGTH
808 unsigned length; \/* Read limit in the block. *\/ member in struct:gcov_var
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/gcov-src/
gcov-io.h 41 padded with 1 to 4 NUL bytes, to bring the length up to a multiple
43 string. Zero length and NULL strings are simply stored as a length
48 string: int32:0 | int32:length char* char:0 padding
81 A record has a tag, length and variable amount of data.
84 header: int32:tag int32:length
90 LENGTH is the number of 4bytes that follow and is usually used to
117 can be inferred from its data length. There is one ARCS record per
119 data length. It enumerates the destination bb and per-arc flags.
432 #define GCOV_TAG_BLOCKS_NUM(LENGTH) (LENGTH
808 unsigned length; \/* Read limit in the block. *\/ member in struct:gcov_var
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/gcov-src/
gcov-io.h 41 padded with 1 to 4 NUL bytes, to bring the length up to a multiple
43 string. Zero length and NULL strings are simply stored as a length
48 string: int32:0 | int32:length char* char:0 padding
81 A record has a tag, length and variable amount of data.
84 header: int32:tag int32:length
90 LENGTH is the number of 4bytes that follow and is usually used to
117 can be inferred from its data length. There is one ARCS record per
119 data length. It enumerates the destination bb and per-arc flags.
432 #define GCOV_TAG_BLOCKS_NUM(LENGTH) (LENGTH
808 unsigned length; \/* Read limit in the block. *\/ member in struct:gcov_var
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/gcov-src/
gcov-io.h 41 padded with 1 to 4 NUL bytes, to bring the length up to a multiple
43 string. Zero length and NULL strings are simply stored as a length
48 string: int32:0 | int32:length char* char:0 padding
81 A record has a tag, length and variable amount of data.
84 header: int32:tag int32:length
90 LENGTH is the number of 4bytes that follow and is usually used to
117 can be inferred from its data length. There is one ARCS record per
119 data length. It enumerates the destination bb and per-arc flags.
432 #define GCOV_TAG_BLOCKS_NUM(LENGTH) (LENGTH
808 unsigned length; \/* Read limit in the block. *\/ member in struct:gcov_var
    [all...]

Completed in 1009 milliseconds

1 2 3 4