Searched refs:bytes (Results 276 - 300 of 1205) sorted by relevance

<<11121314151617181920>>

/external/valgrind/main/memcheck/tests/
H A Dmismatches.stderr.exp4 Address 0x........ is 0 bytes inside a block of size 10 alloc'd
11 Address 0x........ is 0 bytes inside a block of size 10 alloc'd
18 Address 0x........ is 0 bytes inside a block of size 40 alloc'd
25 Address 0x........ is 0 bytes inside a block of size 40 alloc'd
32 Address 0x........ is 0 bytes inside a block of size 4 alloc'd
39 Address 0x........ is 0 bytes inside a block of size 4 alloc'd
H A Dpartial_load_dflt.stderr.exp4 Address 0x........ is 0 bytes inside a block of size 3 alloc'd
10 Address 0x........ is 1 bytes inside a block of size 4 alloc'd
16 Address 0x........ is 0 bytes inside a block of size 1 alloc'd
22 Address 0x........ is 0 bytes inside a block of size 4 free'd
28 in use at exit: ... bytes in ... blocks
29 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dvarinfo1.stderr.exp4 Address 0x........ is 1 bytes inside a block of size 3 alloc'd
11 Location 0x........ is 0 bytes inside global var "global_u1"
17 Location 0x........ is 0 bytes inside global var "global_i1"
23 Location 0x........ is 0 bytes inside global_u2[3],
29 Location 0x........ is 0 bytes inside global_i2[7],
35 Location 0x........ is 0 bytes inside local var "local"
H A Dfprw.stderr.exp9 Address 0x........ is 0 bytes inside a block of size 8 free'd
15 Address 0x........ is 0 bytes inside a block of size 8 free'd
21 Address 0x........ is 0 bytes inside a block of size 4 free'd
27 Address 0x........ is 0 bytes inside a block of size 4 free'd
38 Address 0x........ is 0 bytes inside a block of size 4 alloc'd
H A Dholey_buffer_too_small.stderr.exp6 Address 0x........ is 4 bytes inside a block of size 8 alloc'd
15 Address 0x........ is 0 bytes after a block of size 8 alloc'd
24 Address 0x........ is 1 bytes before a block of size 8 alloc'd
33 Address 0x........ is 0 bytes after a block of size 8 alloc'd
42 Address 0x........ is 1 bytes before a block of size 8 alloc'd
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DCString.cpp78 char* bytes = result.m_buffer->mutableData(); local
79 bytes[length] = '\0';
80 characterBuffer = bytes;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DFileOutputStreamTest.java43 byte[] bytes; field in class:FileOutputStreamTest
177 assertTrue("Incorrect bytes written", new String(rbytes, 0, fileString
269 fos.write(bytes);
282 fos.write(bytes);
284 fos.write(bytes);
286 fos.write(bytes);
303 fos.write(bytes);
305 fos.write(bytes);
307 fos.write(bytes);
324 fos.write(bytes);
[all...]
H A DBufferedInputStreamTest.java75 // Close underlying FileInputStream, all but 1 buffered bytes should
117 assertTrue("Returned incorrect number of available bytes", is
208 byte[] bytes = new byte[256];
210 bytes[i] = (byte) i;
213 new ByteArrayInputStream(bytes), 12);
218 assertTrue("Wrong bytes", in.read() == 6 && in.read() == 7);
220 in = new BufferedInputStream(new ByteArrayInputStream(bytes), 12);
225 assertTrue("Wrong bytes 2", in.read() == 6 && in.read() == 7);
230 bytes = new byte[3];
231 int result = buf.read(bytes);
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DSecureRandom2Test.java114 byte[] bytes = new byte[313];
115 new SecureRandom().nextBytes(bytes);
198 protected void engineNextBytes(byte[] bytes) { argument
199 for (int i = 0; i < bytes.length; i++) {
200 bytes[i] = (byte) 0xFF;
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DByteBuffer.java56 * @param length the length of valid bytes in the array
101 * @param length the length of valid bytes in the array
116 * @return Returns a byte stream that is limited to the valid amount of bytes.
125 * @return Returns the length, that means the number of valid bytes, of the buffer;
192 * @param bytes a byte array
196 public void append(byte[] bytes, int offset, int len) argument
199 System.arraycopy(bytes, offset, buffer, length, len);
206 * @param bytes a byte array
208 public void append(byte[] bytes) argument
210 append(bytes,
[all...]
/external/emma/core/java12/com/vladium/jcd/parser/
H A DClassDefParser.java36 public static ClassDef parseClass (final byte [] bytes) argument
39 if (bytes == null) throw new IllegalArgumentException ("null input: bytes");
41 classParser parser = new classParser (new UDataInputStream (new ByteArrayIStream (bytes)));
49 public static ClassDef parseClass (final byte [] bytes, final int length) argument
52 if (bytes == null) throw new IllegalArgumentException ("null input: bytes");
54 classParser parser = new classParser (new UDataInputStream (new ByteArrayIStream (bytes, length)));
63 public static ClassDef parseClass (final InputStream bytes) argument
66 if (bytes
93 classParser(final UDataInputStream bytes) argument
[all...]
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecLatin1.cpp119 String TextCodecLatin1::decode(const char* bytes, size_t length, bool, bool, bool&) argument
124 const uint8_t* source = reinterpret_cast<const uint8_t*>(bytes);
125 const uint8_t* end = reinterpret_cast<const uint8_t*>(bytes + length);
163 char* bytes = result.data(); local
180 bytes = result.data();
181 memcpy(bytes + resultLength, replacement, replacementLength);
186 bytes[resultLength++] = b;
189 return CString(bytes, resultLength);
195 char* bytes; local
196 CString string = CString::newUninitialized(length, bytes);
[all...]
/external/chromium/net/base/
H A Dupload_data.cc35 void UploadData::Element::SetToChunk(const char* bytes, argument
39 bytes_.insert(bytes_.end(), bytes, bytes + bytes_len);
129 void UploadData::AppendBytes(const char* bytes, int bytes_len) { argument
133 elements_.back().SetToBytes(bytes, bytes_len);
158 void UploadData::AppendChunk(const char* bytes, argument
163 elements_.back().SetToChunk(bytes, bytes_len, is_last_chunk);
/external/libogg/src/
H A Dbitwise.c60 long bytes=bits>>3; local
62 bits-=bytes*8;
63 b->ptr=b->buffer+bytes;
65 b->endbyte=bytes;
71 long bytes=bits>>3; local
73 bits-=bytes*8;
74 b->ptr=b->buffer+bytes;
76 b->endbyte=bytes;
184 long bytes=bits/8; local
185 bits-=bytes*
249 oggpack_readinit(oggpack_buffer *b,unsigned char *buf,int bytes) argument
255 oggpackB_readinit(oggpack_buffer *b,unsigned char *buf,int bytes) argument
512 long bytes,i; local
547 long bytes,i; local
583 long bytes,i; local
[all...]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryExporter.java49 * denotes a series of bytes that follows sequentially one after the next.)
51 * 1. "number of classes" - four bytes - int value representing the number of
59 * 2. "class alias" - 1...X bytes, where X = ((int) FastMath.log(aliasCount,
64 * 3. "full class name size" - four bytes - int value representing number of
65 * bytes to read in for next field.
68 * 4. "full class name" - 1...X bytes representing a String value, where X = the
73 * 5. "number of fields" - four bytes - int value representing number of blocks
88 * 8. "field name size" - 4 bytes - int value representing the size of the next
92 * 9. "field name" - 1...X bytes representing a String value, where X = the
97 * 10. "number of unique objects" - four bytes
319 fixClassAlias(byte[] bytes, int width) argument
[all...]
/external/dbus/tools/
H A Ddbus-print-message.c57 print_hex (unsigned char *bytes, unsigned int len, int depth) argument
61 printf ("array of bytes [\n");
75 printf ("%02x", bytes[i]);
105 unsigned char *bytes = malloc (DEFAULT_SIZE + 1); local
117 bytes[len] = val;
126 bytes = realloc (bytes, max + 1);
134 bytes[len] = '\0';
135 printf ("array of bytes \"%s\"\n", bytes);
[all...]
/external/icu4c/tools/toolutil/
H A Ducm.h41 * b if bLen<=4: up to 4 bytes
42 * else index to bLen bytes
44 * bLen number of words containing left-justified bytes
45 * bIsMultipleChars indicates that the bytes contain more than one sequence
54 uint8_t bytes[4]; member in union:UCMapping::__anon6168
74 uint8_t *bytes; member in struct:UCMTable
77 /* index map for mapping by bytes first */
114 (((m)->bLen<=4) ? (m)->b.bytes : (t)->bytes+(m)->b.idx)
128 /* @return -1 illegal bytes
[all...]
/external/libvorbis/test/
H A Dwrite_read.c147 int bytes; local
163 bytes = fread (buffer,1,8192,file);
164 ogg_sync_wrote (&oy,bytes);
167 if(bytes < 8192) {
220 bytes = fread (buffer,1,4096,file);
221 if (bytes == 0 && i < 2) {
226 ogg_sync_wrote (&oy,bytes);
278 bytes = fread (buffer,1,4096,file);
279 ogg_sync_wrote (&oy,bytes);
280 if (bytes
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DByteArrayOutput.java66 * &gt;= 8 (if used); the number of bytes of hex output to use
115 * may be larger than the number of bytes written
128 * bytes at the end).
269 public void write(ByteArray bytes) { argument
270 int blen = bytes.size();
281 bytes.getBytes(data, writeAt);
286 public void write(byte[] bytes, int offset, int length) { argument
292 if (((offset | length | end) < 0) || (bytesEnd > bytes.length)) {
293 throw new IndexOutOfBoundsException("bytes.length " +
294 bytes
310 write(byte[] bytes) argument
[all...]
/external/smali/smali/src/main/java/org/jf/smali/
H A DLiteralTools.java308 byte[] bytes = new byte[8];
311 bytes[i] = (byte)value;
314 return bytes;
318 byte[] bytes = new byte[4];
321 bytes[i] = (byte)value;
324 return bytes;
328 byte[] bytes = new byte[2];
330 bytes[0] = (byte)value;
331 bytes[1] = (byte)(value >>> 8);
332 return bytes;
[all...]
/external/tremolo/Tremolo/
H A Dframing.c101 static ogg_buffer *_fetch_buffer(ogg_buffer_state *bs,long bytes){ argument
111 if(ob->size<bytes){
112 ob->data=_ogg_realloc(ob->data,bytes);
113 ob->size=bytes;
118 ob->data=_ogg_malloc(bytes<16?16:bytes);
119 ob->size=bytes;
147 of at least [bytes] length */
148 static ogg_reference *ogg_buffer_alloc(ogg_buffer_state *bs,long bytes){ argument
149 ogg_buffer *ob=_fetch_buffer(bs,bytes);
156 ogg_buffer_realloc(ogg_reference *or,long bytes) argument
611 ogg_sync_bufferin(ogg_sync_state *oy, long bytes) argument
655 ogg_sync_wrote(ogg_sync_state *oy, long bytes) argument
667 _checksum(ogg_reference *or, int bytes) argument
696 long bytes,ret=0; local
781 long bytes=next-now; local
787 long bytes=oy->fifo_tail->length; local
[all...]
/external/bison/lib/
H A Dbitset.c36 /* Return number of bytes required to create a N_BIT bitset
37 of TYPE. The bitset may grow to require more bytes than this. */
41 size_t bytes; local
52 bytes = abitset_bytes (n_bits);
56 bytes = lbitset_bytes (n_bits);
60 bytes = ebitset_bytes (n_bits);
64 bytes = vbitset_bytes (n_bits);
68 return bytes;
136 size_t bytes; local
139 bytes
156 size_t bytes; local
[all...]
/external/icu4c/tools/makeconv/
H A Dgenmbcs.c73 const uint8_t *bytes, int32_t length,
79 const uint8_t *bytes, int32_t length);
83 const uint8_t *bytes, int32_t length,
89 const uint8_t *bytes, int32_t length,
111 printBytes(char *buffer, const uint8_t *bytes, int32_t length) { argument
114 *s++=hexDigit((uint8_t)(*bytes>>4));
115 *s++=hexDigit((uint8_t)(*bytes&0xf));
116 ++bytes;
222 /* allocate 1M * maxCharLength bytes for at most 1M mappings */
367 const uint8_t *bytes, int32_
366 MBCSAddToUnicode(MBCSData *mbcsData, const uint8_t *bytes, int32_t length, UChar32 c, int8_t flag) argument
549 MBCSIsValid(NewConverter *cnvData, const uint8_t *bytes, int32_t length) argument
557 MBCSSingleAddFromUnicode(MBCSData *mbcsData, const uint8_t *bytes, int32_t length, UChar32 c, int8_t flag) argument
675 MBCSAddFromUnicode(MBCSData *mbcsData, const uint8_t *bytes, int32_t length, UChar32 c, int8_t flag) argument
890 MBCSOkForBaseFromUnicode(const MBCSData *mbcsData, const uint8_t *bytes, int32_t length, UChar32 c, int8_t flag) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DAuthorityKeyIdentifier.java111 byte[] bytes = spki.getPublicKeyData().getBytes();
112 digest.update(bytes, 0, bytes.length);
131 byte[] bytes = spki.getPublicKeyData().getBytes();
132 digest.update(bytes, 0, bytes.length);
/external/chromium/chrome/browser/resources/shared/js/cr/
H A Dlocale.js38 * Convert a number of bytes into an appropriate International System of
44 * @param {number} bytes The number of bytes.
46 bytesToSi: function(bytes) {
48 var rounded = Math.round(bytes / s * 10) / 10;
52 // This loop index is used outside the loop if it turns out |bytes|
57 if (bytes < scale[i + 1])

Completed in 3990 milliseconds

<<11121314151617181920>>