HomeSort by relevance Sort by last modified time
    Searched full:bytes (Results 1 - 25 of 10215) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/s390x/
clc.stdout.exp 1 0 bytes:0
2 0 bytes:1
3 0 bytes:1
4 0 bytes:0
5 0 bytes:0
6 0 bytes:0
7 0 bytes:2
8 0 bytes:0
9 0 bytes:2
10 0 bytes:
    [all...]
  /external/valgrind/main/memcheck/tests/
leak-0.stderr.exp 1 leaked: 0 bytes in 0 blocks
2 dubious: 0 bytes in 0 blocks
3 reachable: 0 bytes in 1 blocks
4 suppressed: 0 bytes in 0 blocks
leak-cases-summary.stderr.exp 1 leaked: 80 bytes in 5 blocks
2 dubious: 96 bytes in 6 blocks
3 reachable: 64 bytes in 4 blocks
4 suppressed: 0 bytes in 0 blocks
error_counts.stderr.exp 7 leaked: 0 bytes in 0 blocks
8 dubious: 0 bytes in 0 blocks
9 reachable: 0 bytes in 0 blocks
10 suppressed: 0 bytes in 0 blocks
14 leaked: 77 bytes in 1 blocks
15 dubious: 88 bytes in 1 blocks
16 reachable: 99 bytes in 1 blocks
17 suppressed: 0 bytes in 0 blocks
filter_allocs 4 sed -e "s/in use at exit: [0-9,]* bytes in [0-9,]* blocks/in use at exit: ... bytes in ... blocks/" \
5 -e "s/total heap usage: [0-9,]* allocs, [0-9,]* frees, [0-9,]* bytes allocated/total heap usage: ... allocs, ... frees, ... bytes allocated/"
leak-delta.c 16 fprintf(stderr, "expecting details 10 bytes reachable\n"); fflush(stderr); breakme();
24 fprintf(stderr, "expecting details +10 bytes lost, +21 bytes reachable\n"); fflush(stderr); breakme();
29 fprintf(stderr, "expecting details +65 bytes reachable\n"); fflush(stderr); breakme();
36 fprintf(stderr, "expecting details +10 bytes reachable\n"); fflush(stderr); breakme();
40 fprintf(stderr, "expecting details -10 bytes reachable, +10 bytes lost\n"); fflush(stderr); breakme();
44 fprintf(stderr, "expecting details -10 bytes lost, +10 bytes reachable\n"); fflush(stderr); breakme();
48 fprintf(stderr, "expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable\n"); fflush(stderr); breakme()
    [all...]
  /external/valgrind/main/none/tests/x86-linux/
seg_override.stdout.exp 2 got 65536 bytes
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
X9IntegerConverter.java 26 byte[] bytes = s.toByteArray();
28 if (qLength < bytes.length)
32 System.arraycopy(bytes, bytes.length - tmp.length, tmp, 0, tmp.length);
36 else if (qLength > bytes.length)
40 System.arraycopy(bytes, 0, tmp, tmp.length - bytes.length, bytes.length);
45 return bytes;
  /external/javassist/sample/hotswap/
Test.java 10 byte[] bytes = new byte[(int)newfile.length()];
11 new FileInputStream(newfile).read(bytes);
14 hs.reload("HelloWorld", bytes);
18 bytes = new byte[(int)newfile.length()];
19 new FileInputStream(newfile).read(bytes);
22 hs.reload("HelloWorld", bytes);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
a.out.h 7 unsigned a_text; /* length of text, in bytes */
8 unsigned a_data; /* length of data, in bytes */
9 unsigned a_bss; /* length of uninitialized data area for file, in bytes */
10 unsigned a_syms; /* length of symbol table data in file, in bytes */
12 unsigned a_trsize; /* length of relocation info for text, in bytes */
13 unsigned a_drsize; /* length of relocation info for data, in bytes */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
a.out.h 7 unsigned a_text; /* length of text, in bytes */
8 unsigned a_data; /* length of data, in bytes */
9 unsigned a_bss; /* length of uninitialized data area for file, in bytes */
10 unsigned a_syms; /* length of symbol table data in file, in bytes */
12 unsigned a_trsize; /* length of relocation info for text, in bytes */
13 unsigned a_drsize; /* length of relocation info for data, in bytes */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
a.out.h 7 unsigned a_text; /* length of text, in bytes */
8 unsigned a_data; /* length of data, in bytes */
9 unsigned a_bss; /* length of uninitialized data area for file, in bytes */
10 unsigned a_syms; /* length of symbol table data in file, in bytes */
12 unsigned a_trsize; /* length of relocation info for text, in bytes */
13 unsigned a_drsize; /* length of relocation info for data, in bytes */
  /external/guava/guava-tests/test/com/google/common/primitives/
BytesTest.java 32 * Unit test for {@link Bytes}.
48 assertEquals(((Byte) value).hashCode(), Bytes.hashCode(value));
53 assertFalse(Bytes.contains(EMPTY, (byte) 1));
54 assertFalse(Bytes.contains(ARRAY1, (byte) 2));
55 assertFalse(Bytes.contains(ARRAY234, (byte) 1));
56 assertTrue(Bytes.contains(new byte[] {(byte) -1}, (byte) -1));
57 assertTrue(Bytes.contains(ARRAY234, (byte) 2));
58 assertTrue(Bytes.contains(ARRAY234, (byte) 3));
59 assertTrue(Bytes.contains(ARRAY234, (byte) 4));
63 assertEquals(-1, Bytes.indexOf(EMPTY, (byte) 1))
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Enumerated.java 8 ASN1Enumerated(byte[] bytes)
10 super(bytes);
ASN1GeneralizedTime.java 8 ASN1GeneralizedTime(byte[] bytes)
10 super(bytes);
ASN1Integer.java 8 ASN1Integer(byte[] bytes)
10 super(bytes);
ASN1UTCTime.java 8 ASN1UTCTime(byte[] bytes)
10 super(bytes);
DEREnumerated.java 11 byte[] bytes; field in class:DEREnumerated
57 bytes = BigInteger.valueOf(value).toByteArray();
63 bytes = value.toByteArray();
67 byte[] bytes)
69 this.bytes = bytes;
74 return new BigInteger(bytes);
81 out.writeEncoded(ENUMERATED, bytes);
94 return Arrays.areEqual(this.bytes, other.bytes);
    [all...]
DERInteger.java 11 byte[] bytes; field in class:DERInteger
57 bytes = BigInteger.valueOf(value).toByteArray();
63 bytes = value.toByteArray();
67 byte[] bytes)
69 this.bytes = bytes;
74 return new BigInteger(bytes);
83 return new BigInteger(1, bytes);
90 out.writeEncoded(INTEGER, bytes);
97 for (int i = 0; i != bytes.length; i++
    [all...]
  /external/valgrind/main/exp-sgcheck/tests/
filter_add 7 # Anonymise "before" distances (if greater than 9 bytes)
8 sed "s/Address 0x........ is [0-9][0-9]\+ bytes /Address 0x........ is ... bytes /"
  /libcore/luni/src/main/java/libcore/icu/
CollationKeyICU.java 22 private final byte[] bytes; field in class:CollationKeyICU
29 CollationKeyICU(String source, byte[] bytes) {
31 this.bytes = bytes;
35 // Get the bytes from the other collation key.
38 rhsBytes = ((CollationKeyICU) other).bytes;
43 if (bytes == null || bytes.length == 0) {
54 int count = Math.min(bytes.length, rhsBytes.length);
56 int s = bytes[i] & 0xff
    [all...]
  /external/skia/src/gpu/
GrAllocPool.cpp 32 bool canAlloc(size_t bytes) const {
33 return bytes <= fBytesFree;
36 void* alloc(size_t bytes) {
37 GrAssert(bytes <= fBytesFree);
38 fBytesFree -= bytes;
40 fPtr += bytes;
44 size_t release(size_t bytes) {
45 GrAssert(bytes > 0);
46 size_t free = GrMin(bytes, fBytesTotal - fBytesFree);
49 return bytes - free
    [all...]
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/
bcmendian.h 121 #define htol16_ua_store(val, bytes) ({ \
123 uint8 *_bytes = (uint8 *)(bytes); \
128 #define htol32_ua_store(val, bytes) ({ \
130 uint8 *_bytes = (uint8 *)(bytes); \
137 #define hton16_ua_store(val, bytes) ({ \
139 uint8 *_bytes = (uint8 *)(bytes); \
144 #define hton32_ua_store(val, bytes) ({ \
146 uint8 *_bytes = (uint8 *)(bytes); \
153 #define ltoh16_ua(bytes) ({ \
154 const uint8 *_bytes = (const uint8 *)(bytes); \
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmendian.h 121 #define htol16_ua_store(val, bytes) ({ \
123 uint8 *_bytes = (uint8 *)(bytes); \
128 #define htol32_ua_store(val, bytes) ({ \
130 uint8 *_bytes = (uint8 *)(bytes); \
137 #define hton16_ua_store(val, bytes) ({ \
139 uint8 *_bytes = (uint8 *)(bytes); \
144 #define hton32_ua_store(val, bytes) ({ \
146 uint8 *_bytes = (uint8 *)(bytes); \
153 #define ltoh16_ua(bytes) ({ \
154 const uint8 *_bytes = (const uint8 *)(bytes); \
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm-indirect.h 32 int hw_ready; /* Bytes ready for play (or captured) in hw ring buffer */
35 unsigned int sw_io; /* Current software pointer in bytes */
36 int sw_ready; /* Bytes ready to be transferred to/from hw */
41 struct snd_pcm_indirect *rec, size_t bytes);
66 unsigned int bytes = qsize - rec->hw_ready; local
67 if (rec->sw_ready < (int)bytes)
68 bytes = rec->sw_ready;
69 if (hw_to_end < bytes)
70 bytes = hw_to_end;
71 if (sw_to_end < bytes)
95 int bytes = ptr - rec->hw_io; local
131 size_t bytes = rec->sw_buffer_size - rec->sw_ready; local
161 int bytes = ptr - rec->hw_io; local
    [all...]

Completed in 868 milliseconds

1 2 3 4 5 6 7 8 91011>>