HomeSort by relevance Sort by last modified time
    Searched full:bytes (Results 26 - 50 of 10215) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/common/
guid_posix.cc 19 std::string RandomDataToGUIDString(const uint64 bytes[2]) {
21 static_cast<unsigned int>(bytes[0] >> 32),
22 static_cast<unsigned int>((bytes[0] >> 16) & 0x0000ffff),
23 static_cast<unsigned int>(bytes[0] & 0x0000ffff),
24 static_cast<unsigned int>(bytes[1] >> 48),
25 bytes[1] & 0x0000ffffffffffffULL);
  /external/guava/guava/src/com/google/common/hash/
HashCodes.java 26 * Creates a 32-bit {@code HashCode}, of which the bytes will form the passed int, interpreted
62 * Creates a 64-bit {@code HashCode}, of which the bytes will form the passed long, interpreted
106 static HashCode fromBytes(byte[] bytes) {
107 return new BytesHashCode(bytes);
111 final byte[] bytes; field in class:HashCodes.BytesHashCode
113 BytesHashCode(byte[] bytes) {
114 this.bytes = bytes;
118 return bytes.length * 8;
122 return bytes.clone()
    [all...]
  /external/kernel-headers/original/asm-arm/
a.out.h 10 __u32 a_text; /* length of text, in bytes */
11 __u32 a_data; /* length of data, in bytes */
12 __u32 a_bss; /* length of uninitialized data area for file, in bytes */
13 __u32 a_syms; /* length of symbol table data in file, in bytes */
15 __u32 a_trsize; /* length of relocation info for text, in bytes */
16 __u32 a_drsize; /* length of relocation info for data, in bytes */
  /external/kernel-headers/original/asm-mips/
a.out.h 19 unsigned a_text; /* length of text, in bytes */
20 unsigned a_data; /* length of data, in bytes */
22 file, in bytes */
24 in bytes */
27 bytes */
28 unsigned a_drsize; /* length of relocation info for data, in bytes */
  /external/kernel-headers/original/asm-x86/
a.out.h 7 unsigned a_text; /* length of text, in bytes */
8 unsigned a_data; /* length of data, in bytes */
9 unsigned a_bss; /* length of uninitialized data area for file, in bytes */
10 unsigned a_syms; /* length of symbol table data in file, in bytes */
12 unsigned a_trsize; /* length of relocation info for text, in bytes */
13 unsigned a_drsize; /* length of relocation info for data, in bytes */
  /external/valgrind/main/helgrind/tests/
tc16_byterace.c 7 char bytes[10]; variable
13 bytes[2*i + 0] ++; /* child accesses: 0 2 4 6 8 */
28 bytes accessed */
30 bytes[2*i + 1] ++; /* accesses: 1 3 5 7 9 */
32 /* Unprotected relative to child, but harmful; same bytes */
34 bytes[3*i + 1] ++; /* accesses: 1 4(race!) 7 */
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/jgss/
GSSUtilsTest.java 28 byte[] bytes = GSSUtils.getBytes(i, 1);
29 int j = GSSUtils.toInt(bytes, 0 , 1);
33 bytes = GSSUtils.getBytes(i, 1);
34 j = GSSUtils.toInt(bytes, 0 , 1);
38 bytes = GSSUtils.getBytes(i, 2);
39 j = GSSUtils.toInt(bytes, 0, 2);
43 bytes = GSSUtils.getBytes(i, 2);
44 j = GSSUtils.toInt(bytes, 0, 2);
48 bytes = GSSUtils.getBytes(i, 3);
49 j = GSSUtils.toInt(bytes, 0 , 3)
    [all...]
  /external/liblzf/
config.h.in 9 /* The number of bytes in a int. */
12 /* The number of bytes in a long. */
15 /* The number of bytes in a short. */
  /external/chromium/net/tools/flip_server/
buffer_interface.h 14 // Returns the bytes which can be read from the buffer. There is no
15 // guarantee that the bytes are contiguous.
25 // returns the number of bytes free in this buffer.
27 // number of bytes free.
43 // appends up-to-'size' bytes to the buffer.
45 // bytes - bytes which are read, and copied into the buffer.
46 // size - number of bytes which are read and copied.
48 virtual int Write(const char* bytes, int size) = 0;
58 // size - the amount of data (in bytes) that it is safe to write to ptr
    [all...]
  /external/skia/src/core/
SkChunkAlloc.cpp 77 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) {
80 if (block && bytes <= block->fFreeSize) {
85 size_t size = bytes;
102 void* SkChunkAlloc::alloc(size_t bytes, AllocFailType ftype) {
103 bytes = SkAlign4(bytes);
107 if (block == NULL || bytes > block->fFreeSize) {
108 block = this->newBlock(bytes, ftype);
116 SkASSERT(block && bytes <= block->fFreeSize);
119 block->fFreeSize -= bytes;
125 size_t bytes = 0; local
    [all...]
  /frameworks/rs/
rsFifoSocket.cpp 54 bool FifoSocket::writeAsync(const void *data, size_t bytes, bool waitForSpace) {
55 if (bytes == 0) {
58 //ALOGE("writeAsync %p %i", data, bytes);
59 size_t ret = ::send(sv[0], data, bytes, 0);
61 rsAssert(ret == bytes);
76 size_t FifoSocket::read(void *data, size_t bytes) {
81 //ALOGE("read %p %i", data, bytes);
82 size_t ret = ::recv(sv[1], data, bytes, MSG_WAITALL);
83 rsAssert(ret == bytes || mShutdown);
84 //ALOGE("read ret %i bytes %i", ret, bytes)
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcleak.stdinB.gdb 14 # fprintf(stderr, "expecting details 10 bytes reachable\n"); fflush(stderr); breakme();
28 # fprintf(stderr, "expecting details +10 bytes lost, +21 bytes reachable\n"); fflush(stderr); breakme();
36 # fprintf(stderr, "expecting details +65 bytes reachable\n"); fflush(stderr); breakme();
49 # fprintf(stderr, "expecting details +10 bytes reachable\n"); fflush(stderr); breakme();
56 # fprintf(stderr, "expecting details -10 bytes reachable, +10 bytes lost\n"); fflush(stderr); breakme();
63 # fprintf(stderr, "expecting details -10 bytes lost, +10 bytes reachable\n"); fflush(stderr); breakme();
70 # fprintf(stderr, "expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable\n"); fflush(stderr); breakme()
    [all...]
mcleak.stderr.exp 4 expecting details 10 bytes reachable
5 10 bytes in 1 blocks are still reachable in loss record ... of ...
11 expecting details +10 bytes lost, +21 bytes reachable
12 expecting details +65 bytes reachable
14 expecting details +10 bytes reachable
15 expecting details -10 bytes reachable, +10 bytes lost
16 expecting details -10 bytes lost, +10 bytes reachabl
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
QuotedPrintable.java 26 * Decodes an array quoted-printable characters into an array of original bytes.
35 * @param bytes array of quoted-printable characters
36 * @return array of original bytes,
39 public static final byte[] decodeQuotedPrintable(byte[] bytes) {
40 if (bytes == null) {
44 for (int i = 0; i < bytes.length; i++) {
45 int b = bytes[i];
48 if('\r' == (char)bytes[i + 1] &&
49 '\n' == (char)bytes[i + 2]) {
53 int u = Character.digit((char) bytes[++i], 16)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1ObjectIdentifier.java 11 ASN1ObjectIdentifier(byte[] bytes)
13 super(bytes);
  /external/chromium/third_party/libevent/test/
regress.rpc 18 optional bytes some_bytes = 2;
19 bytes fixed_bytes[24] = 3;
  /external/e2fsprogs/lib/uuid/
gen_uuid_nt.c 28 // OUT PUCHAR Seed // 6 bytes
36 void* p1, // 8 bytes
37 void* p2, // 4 bytes
38 void* p3 // 4 bytes
45 void* p1, // 8 bytes
46 void* p2, // 4 bytes
47 void* p3, // 4 bytes
48 void* seed // 6 bytes
  /external/qemu/slirp/
if.h 22 * Set if_maxlinkhdr to 48 because it's 40 bytes for TCP/IP,
23 * and 8 bytes for PPP, but need to have it on an 8byte boundary
47 u_int out_bytes; /* Output bytes */
49 u_int out_errbytes; /* Output Error Bytes */
51 u_int in_bytes; /* Input bytes */
53 u_int in_errbytes; /* Input Error Bytes */
55 u_int bytes_saved; /* Number of bytes that compression "saved" */
56 /* ie: number of bytes that didn't need to be sent over the link
  /external/qemu/slirp-android/
if.h 22 * Set if_maxlinkhdr to 48 because it's 40 bytes for TCP/IP,
23 * and 8 bytes for PPP, but need to have it on an 8byte boundary
47 u_int out_bytes; /* Output bytes */
49 u_int out_errbytes; /* Output Error Bytes */
51 u_int in_bytes; /* Input bytes */
53 u_int in_errbytes; /* Input Error Bytes */
55 u_int bytes_saved; /* Number of bytes that compression "saved" */
56 /* ie: number of bytes that didn't need to be sent over the link
  /external/skia/src/gpu/
GrMemory.cpp 13 void* GrMalloc(size_t bytes) {
14 void* ptr = ::malloc(bytes);
  /libcore/luni/src/main/java/java/lang/
UnsafeByteSequence.java 32 private byte[] bytes; field in class:UnsafeByteSequence
36 this.bytes = new byte[initialCapacity];
52 if (count + length >= bytes.length) {
54 System.arraycopy(bytes, 0, newBytes, 0, count);
55 bytes = newBytes;
57 System.arraycopy(buffer, offset, bytes, count, length);
62 if (count == bytes.length) {
64 System.arraycopy(bytes, 0, newBytes, 0, count);
65 bytes = newBytes;
67 bytes[count++] = (byte) b
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ByteArrayByteInput.java 21 private final byte[] bytes; field in class:ByteArrayByteInput
24 public ByteArrayByteInput(byte... bytes) {
25 this.bytes = bytes;
29 return bytes[position++];
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayByteInput.java 21 private final byte[] bytes; field in class:ByteArrayByteInput
24 public ByteArrayByteInput(byte... bytes) {
25 this.bytes = bytes;
29 return bytes[position++];
  /external/valgrind/main/memcheck/tests/ppc32/
power_ISA2_05.stderr.exp 4 in use at exit: 0 bytes in 0 blocks
5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
14 in use at exit: 0 bytes in 0 blocks
15 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
24 in use at exit: 0 bytes in 0 blocks
25 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
34 in use at exit: 0 bytes in 0 blocks
35 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
44 in use at exit: 0 bytes in 0 blocks
45 total heap usage: 0 allocs, 0 frees, 0 bytes allocate
    [all...]
  /external/valgrind/main/memcheck/tests/ppc64/
power_ISA2_05.stderr.exp 4 in use at exit: 0 bytes in 0 blocks
5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
14 in use at exit: 0 bytes in 0 blocks
15 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
24 in use at exit: 0 bytes in 0 blocks
25 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
34 in use at exit: 0 bytes in 0 blocks
35 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
44 in use at exit: 0 bytes in 0 blocks
45 total heap usage: 0 allocs, 0 frees, 0 bytes allocate
    [all...]

Completed in 2160 milliseconds

12 3 4 5 6 7 8 91011>>