HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 501 - 525 of 4212) sorted by null

<<21222324252627282930>>

  /external/skia/src/utils/mac/
SkStream_mac.cpp 20 static size_t get_bytes_proc(void* info, void* buffer, size_t bytes) {
22 return ((SkStream*)info)->read(buffer, bytes);
25 static off_t skip_forward_proc(void* info, off_t bytes) {
26 return ((SkStream*)info)->skip((size_t) bytes);
  /external/smack/src/org/xbill/DNS/
Address.java 187 * Convert a string containing an IP address to an array of 4 or 16 bytes.
298 byte [] bytes;
299 bytes = toByteArray(addr, IPv4);
300 if (bytes != null)
301 return InetAddress.getByAddress(addr, bytes);
302 bytes = toByteArray(addr, IPv6);
303 if (bytes != null)
304 return InetAddress.getByAddress(addr, bytes);
321 byte [] bytes;
322 bytes = toByteArray(addr, family)
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
RandomAccessFileInputStream.java 54 @Override public int read(byte[] bytes) throws IOException {
56 int bytesRead = raf.read(bytes);
61 @Override public int read(byte[] bytes, int offset, int length) throws IOException {
63 int bytesRead = raf.read(bytes, offset, length);
  /external/speex/include/speex/
speex_bits.h 80 void speex_bits_read_from(SpeexBits *bits, char *bytes, int len);
82 /** Append bytes to the bit-stream
85 * @param bytes pointer to the bytes what will be appended
86 * @param len Number of bytes of append
88 void speex_bits_read_whole_bytes(SpeexBits *bits, char *bytes, int len);
93 * @param bytes Memory location where to write the bits
94 * @param max_len Maximum number of bytes to write (i.e. size of the "bytes" buffer)
95 * @return Number of bytes written to the "bytes" buffe
    [all...]
  /external/strace/test/
ubi.c 17 .bytes = 1125899906842624ULL,
23 .bytes = 1125899906842624ULL,
35 uint64_t bytes = ((uint64_t)1 << 50) | 0x123; local
41 ioctl(fd, UBI_IOCVOLUP, &bytes);
  /external/valgrind/main/drd/tests/
tc01_simple_race.stderr.exp 4 Location 0x........ is 0 bytes inside global var "x"
9 Location 0x........ is 0 bytes inside global var "x"
  /external/valgrind/main/gdbserver_tests/
mcclean_after_fork.stderr.exp 9 in use at exit: 0 bytes in 0 blocks
10 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
mcmain_pic.stderr.exp 7 in use at exit: 16 bytes in 1 blocks
8 total heap usage: 1 allocs, 0 frees, 16 bytes allocated
  /external/valgrind/main/memcheck/tests/
accounting.stderr.exp 5 in use at exit: 0 bytes in 0 blocks
6 total heap usage: 1 allocs, 1 frees, 1 bytes allocated
brk2.stderr.exp 4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
bug287260.stderr.exp 5 in use at exit: 0 bytes in 0 blocks
6 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
erringfds.stderr.exp 5 in use at exit: ... bytes in ... blocks
6 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-cycle.stderr.exp 1 leaked: 288 bytes in 18 blocks
2 dubious: 0 bytes in 0 blocks
3 reachable: 0 bytes in 0 blocks
4 suppressed: 0 bytes in 0 blocks
5 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
11 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
17 96 (16 direct, 80 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
23 96 (16 direct, 80 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
leak-pool-0.stderr.exp 4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-1.stderr.exp 4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-2.stderr.exp 4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-3.stderr.exp 4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-4.stderr.exp 4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-5.stderr.exp 4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
  /external/valgrind/main/memcheck/tests/linux/
brk.stderr.exp 4 in use at exit: ... bytes in ... blocks
5 total heap usage: ... allocs, ... frees, ... bytes allocated
capget.stderr.exp 8 in use at exit: ... bytes in ... blocks
9 total heap usage: ... allocs, ... frees, ... bytes allocated
lsframe1.stderr.exp 6 in use at exit: ... bytes in ... blocks
7 total heap usage: ... allocs, ... frees, ... bytes allocated
lsframe2.stderr.exp 6 in use at exit: ... bytes in ... blocks
7 total heap usage: ... allocs, ... frees, ... bytes allocated
sigqueue.stderr.exp 5 in use at exit: 0 bytes in 0 blocks
6 total heap usage: 1 allocs, 1 frees, 128 bytes allocated
sys-openat.stderr.exp 5 in use at exit: 0 bytes in 0 blocks
6 total heap usage: 0 allocs, 0 frees, 0 bytes allocated

Completed in 990 milliseconds

<<21222324252627282930>>