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

<<11121314151617181920>>

/external/valgrind/main/memcheck/tests/
H A Dleak-pool-4.stderr.exp4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dleak-pool-5.stderr.exp4 in use at exit: ... bytes in ... blocks
5 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 Dmalloc1_ks_alloc.stderr.exp3 Address 0x........ is 1 bytes inside a block of size 10 free'd
11 Address 0x........ is 1 bytes before a block of size 10 alloc'd
H A Dmalloc1_ks_alloc_and_free.stderr.exp3 Address 0x........ is 1 bytes inside a block of size 10 free'd
12 Address 0x........ is 1 bytes before a block of size 10 alloc'd
H A Dmalloc1_ks_free.stderr.exp3 Address 0x........ is 1 bytes inside a block of size 10 free'd
9 Address 0x........ is 1 bytes before a block of size 10 alloc'd
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 Dsem.stderr.exp4 in use at exit: 0 bytes in 0 blocks
5 total heap usage: 0 allocs, 0 frees, 0 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
/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
H A Dsys-openat.stderr.exp5 in use at exit: 0 bytes in 0 blocks
6 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
H A Dsyscalls-2007.stderr.exp4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dsyslog-syscall.stderr.exp5 in use at exit: ... bytes in ... blocks
6 total heap usage: ... allocs, ... frees, ... bytes allocated
/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/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/chromium_org/android_webview/native/
H A Dinput_stream_impl.cc34 // Maximum number of bytes to be read in a single read.
61 int bytes = Java_InputStreamUtil_available(env, jobject_.obj()); local
62 if (bytes == kExceptionThrownStatusCode)
64 *bytes_available = bytes;
70 int bytes = Java_InputStreamUtil_skip(env, jobject_.obj(), n); local
71 if (bytes < 0)
73 if (bytes > n)
75 *bytes_skipped = 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/chromium_org/media/midi/
H A Dusb_midi_device_android.cc54 std::vector<uint8> bytes; local
55 base::android::JavaByteArrayToByteVector(env, data, &bytes);
57 const uint8* head = bytes.size() ? &bytes[0] : NULL;
58 delegate_->ReceiveUsbMidiData(this, endpoint_number, head, bytes.size(),
/external/chromium_org/net/quic/
H A Dquic_bandwidth.cc44 QuicBandwidth QuicBandwidth::FromBytesAndTimeDelta(QuicByteCount bytes,
46 DCHECK_LT(bytes,
49 int64 bytes_per_second = (bytes * base::Time::kMicrosecondsPerSecond) /
102 QuicTime::Delta QuicBandwidth::TransferTime(QuicByteCount bytes) const {
104 bytes * 8 * base::Time::kMicrosecondsPerSecond / bits_per_second_);

Completed in 350 milliseconds

<<11121314151617181920>>