Searched refs:bytes (Results 126 - 150 of 1004) sorted by relevance

1234567891011>>

/external/valgrind/main/memcheck/tests/linux/
H A Dbrk.stderr.exp4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dcapget.stderr.exp8 in use at exit: ... bytes in ... blocks
9 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dlsframe1.stderr.exp6 in use at exit: ... bytes in ... blocks
7 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dlsframe2.stderr.exp6 in use at exit: ... bytes in ... blocks
7 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dsigqueue.stderr.exp5 in use at exit: 0 bytes in 0 blocks
6 total heap usage: 1 allocs, 1 frees, 128 bytes allocated
/external/valgrind/main/memcheck/tests/
H A Dlinux-syscalls-2007.stderr.exp4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dlinux-syslog-syscall.stderr.exp5 in use at exit: ... bytes in ... blocks
6 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dmallinfo.stderr.exp5 in use at exit: ... bytes in ... blocks
6 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dnew_override.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/valgrind/main/memcheck/tests/ppc32/
H A Dpower_ISA2_05.stderr.exp4 in use at exit: 0 bytes in 0 blocks
5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
/external/valgrind/main/memcheck/tests/ppc64/
H A Dpower_ISA2_05.stderr.exp4 in use at exit: 0 bytes in 0 blocks
5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
/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/skia/gpu/include/
H A DGrMemory.h28 GrAutoMalloc(size_t bytes) : fPtr(GrMalloc(bytes)), fAllocatedBytes(bytes) {} argument
98 explicit GrAutoSMalloc(size_t bytes) { argument
99 if (bytes > SIZE) {
100 fPtr = GrMalloc(bytes);
101 fAllocatedBytes = bytes;
/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...]
/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...]

Completed in 446 milliseconds

1234567891011>>