Searched refs:bytes (Results 176 - 200 of 1205) sorted by relevance

1234567891011>>

/external/valgrind/main/memcheck/tests/
H A Dnew_override.stderr.exp4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dsbfragment.stderr.exp4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dpartial_load_ok.stderr.exp4 Address 0x........ is 1 bytes inside a block of size 4 alloc'd
10 Address 0x........ is 0 bytes inside a block of size 1 alloc'd
16 Address 0x........ is 0 bytes inside a block of size 4 free'd
22 in use at exit: ... bytes in ... blocks
23 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dleak-cases-full.stderr.exp1 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
5 16 bytes in 1 blocks are possibly lost in loss record ... of ...
11 16 bytes in 1 blocks are possibly lost in loss record ... of ...
17 16 bytes in 1 blocks are possibly lost in loss record ... of ...
23 16 bytes in 1 blocks are possibly lost in loss record ... of ...
29 16 bytes in 1 blocks are possibly lost in loss record ... of ...
35 16 bytes i
[all...]
/external/webkit/Source/WebCore/dom/
H A DDecodedDataDocumentParser.h47 virtual void appendBytes(DocumentWriter*, const char* bytes, int length, bool flush);
/external/webkit/Source/WebCore/fileapi/
H A DAsyncFileWriterClient.h44 virtual void didWrite(long long bytes, bool complete) = 0;
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKData.h39 WK_EXPORT WKDataRef WKDataCreate(const unsigned char* bytes, size_t size);
/external/bison/lib/
H A Dbitsetv.c33 size_t bytes; local
37 /* Determine number of bytes for each set. */
38 bytes = bitset_bytes (type, n_bits);
41 if (BITSET_SIZE_MAX / (sizeof (bitset) + bytes) <= n_vecs)
45 vector_bytes = (n_vecs + 1) * sizeof (bitset) + bytes - 1;
46 vector_bytes -= vector_bytes % bytes;
47 bsetv = xcalloc (1, vector_bytes + bytes * n_vecs);
51 bsetv[i] = (bitset) (void *) ((char *) bsetv + vector_bytes + i * bytes);
/external/libvorbis/examples/
H A Ddecoder_example.c57 int bytes; local
90 bytes=fread(buffer,1,4096,stdin);
91 ogg_sync_wrote(&oy,bytes);
96 if(bytes<4096)break;
177 bytes=fread(buffer,1,4096,stdin);
178 if(bytes==0 && i<2){
182 ogg_sync_wrote(&oy,bytes);
286 bytes=fread(buffer,1,4096,stdin);
287 ogg_sync_wrote(&oy,bytes);
288 if(bytes
[all...]
/external/openssh/
H A Dbuffer.c160 /* Returns the number of bytes of data in the buffer. */
174 error("buffer_get_ret: trying to get more bytes %d than in buffer %d",
190 /* Consumes the given number of bytes from the beginning of the buffer. */
193 buffer_consume_ret(Buffer *buffer, u_int bytes) argument
195 if (bytes > buffer->end - buffer->offset) {
196 error("buffer_consume_ret: trying to get more bytes than in buffer");
199 buffer->offset += bytes;
204 buffer_consume(Buffer *buffer, u_int bytes) argument
206 if (buffer_consume_ret(buffer, bytes) == -1)
210 /* Consumes the given number of bytes fro
213 buffer_consume_end_ret(Buffer *buffer, u_int bytes) argument
222 buffer_consume_end(Buffer *buffer, u_int bytes) argument
[all...]
H A Dprogressmeter.c73 static int bytes_per_second; /* current speed in bytes per second */
87 format_rate(char *buf, int size, off_t bytes) argument
91 bytes *= 100;
92 for (i = 0; bytes >= 100*1000 && unit[i] != 'T'; i++)
93 bytes = (bytes + 512) / 1024;
96 bytes = (bytes + 512) / 1024;
99 (long long) (bytes + 5) / 100,
100 (long long) (bytes
106 format_size(char *buf, int size, off_t bytes) argument
[all...]
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp.c52 ssize_t bytes; local
63 bytes = read (fd, text + total_read, CHUNK);
64 if (bytes < 0) {
71 if (bytes == 0) {
75 total_read += bytes;
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
H A DByteBufferTest.java771 byte bytes[] = new byte[2];
780 buf.get(bytes);
782 assertEquals(bytes2char(bytes, buf.order()), value);
791 buf.get(bytes);
793 assertEquals(bytes2char(bytes, buf.order()), value);
805 buf.get(bytes);
806 assertTrue(Arrays.equals(bytes, char2bytes(value, buf.order())));
817 buf.get(bytes);
818 assertTrue(Arrays.equals(bytes, char2bytes(value, buf.order())));
827 byte bytes[]
2040 bytes2int(byte bytes[], ByteOrder order) argument
2059 bytes2long(byte bytes[], ByteOrder order) argument
2078 bytes2short(byte bytes[], ByteOrder order) argument
2097 bytes2char(byte bytes[], ByteOrder order) argument
2101 bytes2float(byte bytes[], ByteOrder order) argument
2105 bytes2double(byte bytes[], ByteOrder order) argument
[all...]
/external/chromium/net/base/
H A Dupload_data.h40 // A block of bytes to be sent in chunked encoding immediately, without
57 const std::vector<char>& bytes() const { return bytes_; } function in class:net::UploadData::Element
67 void SetToBytes(const char* bytes, int bytes_len) { argument
69 bytes_.assign(bytes, bytes + bytes_len);
96 // Though similar to bytes, a chunk indicates that the element is sent via
99 void SetToChunk(const char* bytes, int bytes_len, bool is_last_chunk);
145 void AppendBytes(const char* bytes, int bytes_len);
155 // Adds the given chunk of bytes to be sent immediately with chunked transfer
157 void AppendChunk(const char* bytes, in
[all...]
H A Dip_endpoint.cc89 const char* bytes = reinterpret_cast<const char*>(&addr->sin_addr); local
90 address_.assign(&bytes[0], &bytes[kIPv4AddressSize]);
97 const char* bytes = reinterpret_cast<const char*>(&addr->sin6_addr); local
98 address_.assign(&bytes[0], &bytes[kIPv6AddressSize]);
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DCodeAttribute_info.java58 * The value of the code_length item gives the number of bytes in the code array for
60 * not be empty.The code array gives the actual bytes of Java Virtual Machine code that
209 final UDataInputStream bytes)
214 m_max_stack = bytes.readU2 ();
215 m_max_locals = bytes.readU2 ();
217 final long code_length = bytes.readU4 ();
220 bytes.readFully (m_code);
224 final int exception_table_length = bytes.readU2 ();
229 Exception_info exception_info = new Exception_info (bytes);
237 final int attributes_count = bytes
207 CodeAttribute_info(final IConstantCollection constants, final int attribute_name_index, final long attribute_length, final UDataInputStream bytes) argument
[all...]
/external/qemu/audio/
H A Dnoaudio.c47 int64_t bytes; local
51 bytes = muldiv64 (ticks, hw->info.bytes_per_second, get_ticks_per_sec ());
52 bytes = audio_MIN (bytes, INT_MAX);
53 samples = bytes >> hw->info.shift;
107 int64_t bytes = local
111 bytes = audio_MIN (bytes, INT_MAX);
112 samples = bytes >> hw->info.shift;
/external/quake/quake/src/WinQuake/
H A Dsnd_sun.cpp183 int bytes, b; local
194 bytes = (paintedtime - wbufp) * bsize;
196 if (!bytes)
199 if (bytes > sizeof(writebuf)) {
200 bytes = sizeof(writebuf);
201 stop = wbufp + bytes/bsize;
207 for (b = bytes; b; b--) {
214 if (write(audio_fd, writebuf, bytes) < bytes)
/external/dropbear/
H A Dprogressmeter.c63 static int bytes_per_second; /* current speed in bytes per second */
77 format_rate(char *buf, int size, off_t bytes) argument
81 bytes *= 100;
82 for (i = 0; bytes >= 100*1000 && unit[i] != 'T'; i++)
83 bytes = (bytes + 512) / 1024;
86 bytes = (bytes + 512) / 1024;
89 (long long) (bytes + 5) / 100,
90 (long long) (bytes
96 format_size(char *buf, int size, off_t bytes) argument
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebPDFDocumentExtras.mm107 const UInt8* bytes = 0;
117 bytes = CFDataGetBytePtr(data.get());
120 bytes = CGPDFStringGetBytePtr(string);
123 if (!bytes)
126 NSStringEncoding encoding = (length > 1 && bytes[0] == 0xFE && bytes[1] == 0xFF) ? NSUnicodeStringEncoding : NSUTF8StringEncoding;
127 NSString *script = [[NSString alloc] initWithBytes:bytes length:length encoding:encoding];
/external/openssl/crypto/x509/
H A Dx509name.c175 unsigned char *bytes, int len, int loc, int set)
179 ne = X509_NAME_ENTRY_create_by_OBJ(NULL, obj, type, bytes, len);
187 unsigned char *bytes, int len, int loc, int set)
191 ne = X509_NAME_ENTRY_create_by_NID(NULL, nid, type, bytes, len);
199 const unsigned char *bytes, int len, int loc, int set)
203 ne = X509_NAME_ENTRY_create_by_txt(NULL, field, type, bytes, len);
276 const char *field, int type, const unsigned char *bytes, int len)
289 nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len);
295 int type, unsigned char *bytes, int len)
306 nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,le
174 X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, unsigned char *bytes, int len, int loc, int set) argument
186 X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, unsigned char *bytes, int len, int loc, int set) argument
198 X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, const unsigned char *bytes, int len, int loc, int set) argument
275 X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, const char *field, int type, const unsigned char *bytes, int len) argument
294 X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, int type, unsigned char *bytes, int len) argument
311 X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len) argument
349 X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, const unsigned char *bytes, int len) argument
[all...]
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DCodedOutputStreamTest.java50 * Helper to construct a byte array from a bunch of bytes. The inputs are
54 private byte[] bytes(int... bytesAsInts) { method in class:CodedOutputStreamTest
55 byte[] bytes = new byte[bytesAsInts.length];
57 bytes[i] = (byte) bytesAsInts[i];
59 return bytes;
63 private List<Byte> toList(byte[] bytes) { argument
65 for (byte b : bytes) {
77 * checks that the result matches the given bytes.
130 assertWriteVarint(bytes(0x00), 0);
131 assertWriteVarint(bytes(
[all...]
/external/webkit/Source/WebCore/platform/text/wince/
H A DTextCodecWinCE.cpp190 static inline const char* findFirstNonAsciiCharacter(const char* bytes, size_t length) argument
192 for (const char* bytesEnd = bytes + length; bytes < bytesEnd; ++bytes) {
193 if (*bytes & 0x80)
196 return bytes;
199 static void decodeInternal(Vector<UChar, 8192>& result, UINT codePage, const char* bytes, size_t length, size_t* left) argument
202 if (!bytes || !length)
210 int resultLength = MultiByteToWideChar(codePage, flags, bytes, testLength, 0, 0);
216 MultiByteToWideChar(codePage, flags, bytes, testLengt
236 decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemWriter.java42 * Return the number of bytes or characters required to contain the
46 * @return an estimate of the number of bytes
99 private void writeEncoded(byte[] bytes) argument
102 bytes = Base64.encode(bytes);
104 for (int i = 0; i < bytes.length; i += buf.length)
110 if ((i + index) >= bytes.length)
114 buf[index] = (char)bytes[i + index];
/external/emma/core/java12/com/vladium/jcd/cls/
H A DMethod_info.java76 final UDataInputStream bytes)
79 m_access_flags = bytes.readU2 ();
81 m_name_index = bytes.readU2 ();
82 m_descriptor_index = bytes.readU2 ();
86 final int attributes_count = bytes.readU2 ();
91 final Attribute_info attribute_info = Attribute_info.new_Attribute_info (constants, bytes);
75 Method_info(final IConstantCollection constants, final UDataInputStream bytes) argument

Completed in 531 milliseconds

1234567891011>>