HomeSort by relevance Sort by last modified time
    Searched full:bytes (Results 51 - 75 of 16566) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DecoderSpecificInfo.java 34 byte[] bytes; field in class:DecoderSpecificInfo
39 bytes = new byte[sizeOfInstance];
40 bb.get(bytes);
45 return bytes.length;
49 ByteBuffer out = ByteBuffer.wrap(bytes);
58 sb.append("{bytes=").append(bytes == null ? "null" : Hex.encodeHex(bytes));
74 if (!Arrays.equals(bytes, that.bytes)) {
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
NdefRecordTest.java 15 byte[] bytes = "mumble".getBytes();
16 NdefRecord ndefRecord = new NdefRecord(bytes);
18 assertSame(ndefRecord.getPayload(), bytes); local
  /art/runtime/jdwp/
jdwp_bits.h 35 static inline void Append1BE(std::vector<uint8_t>& bytes, uint8_t value) {
36 bytes.push_back(value);
39 static inline void Append2BE(std::vector<uint8_t>& bytes, uint16_t value) {
40 bytes.push_back(static_cast<uint8_t>(value >> 8));
41 bytes.push_back(static_cast<uint8_t>(value));
44 static inline void Append4BE(std::vector<uint8_t>& bytes, uint32_t value) {
45 bytes.push_back(static_cast<uint8_t>(value >> 24));
46 bytes.push_back(static_cast<uint8_t>(value >> 16));
47 bytes.push_back(static_cast<uint8_t>(value >> 8));
48 bytes.push_back(static_cast<uint8_t>(value))
    [all...]
  /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/chromium_org/net/tools/balsa/
buffer_interface.h 13 // Returns the bytes which can be read from the buffer. There is no
14 // guarantee that the bytes are contiguous.
24 // returns the number of bytes free in this buffer.
26 // number of bytes free.
42 // appends up-to-'size' bytes to the buffer.
44 // bytes - bytes which are read, and copied into the buffer.
45 // size - number of bytes which are read and copied.
47 virtual int Write(const char* bytes, int size) = 0;
57 // size - the amount of data (in bytes) that it is safe to write to ptr
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
stream_unittest.cc 93 size_t bytes; local
97 EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, NULL), SR_SUCCESS);
98 EXPECT_EQ(bytes, kBufSize);
100 EXPECT_TRUE(stream->GetPosition(&bytes));
101 EXPECT_EQ(13U, bytes);
105 EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, NULL), SR_SUCCESS);
106 EXPECT_EQ(bytes, kBufSize);
108 EXPECT_TRUE(stream->GetPosition(&bytes));
109 EXPECT_EQ(20U, bytes);
125 size_t bytes; local
183 size_t bytes; local
462 char bytes[100]; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERInteger.java 11 byte[] bytes; field in class:DERInteger
73 bytes = BigInteger.valueOf(value).toByteArray();
79 bytes = value.toByteArray();
83 byte[] bytes)
85 this.bytes = bytes;
90 return new BigInteger(bytes);
99 return new BigInteger(1, bytes);
109 return 1 + StreamUtil.calculateBodyLength(bytes.length) + bytes.length
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkChunkAlloc.cpp 72 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) {
73 size_t size = bytes;
94 void* SkChunkAlloc::alloc(size_t bytes, AllocFailType ftype) {
95 fTotalUsed += bytes;
97 bytes = SkAlign4(bytes);
101 if (block == NULL || bytes > block->fFreeSize) {
102 block = this->newBlock(bytes, ftype);
110 SkASSERT(block && bytes <= block->fFreeSize);
113 block->fFreeSize -= bytes;
119 size_t bytes = 0; local
    [all...]
  /external/skia/src/core/
SkChunkAlloc.cpp 72 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) {
73 size_t size = bytes;
94 void* SkChunkAlloc::alloc(size_t bytes, AllocFailType ftype) {
95 fTotalUsed += bytes;
97 bytes = SkAlign4(bytes);
101 if (block == NULL || bytes > block->fFreeSize) {
102 block = this->newBlock(bytes, ftype);
110 SkASSERT(block && bytes <= block->fFreeSize);
113 block->fFreeSize -= bytes;
119 size_t bytes = 0; local
    [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...]
  /frameworks/opt/mms/src/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...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmendian.h 29 /* Reverse the bytes in a 16-bit value */
34 /* Reverse the bytes in a 32-bit value */
125 #define htol16_ua_store(val, bytes) ({ \
127 uint8 *_bytes = (uint8 *)(bytes); \
132 #define htol32_ua_store(val, bytes) ({ \
134 uint8 *_bytes = (uint8 *)(bytes); \
141 #define hton16_ua_store(val, bytes) ({ \
143 uint8 *_bytes = (uint8 *)(bytes); \
148 #define hton32_ua_store(val, bytes) ({ \
150 uint8 *_bytes = (uint8 *)(bytes); \
    [all...]
  /external/robolectric/lib/main/
opengl-api-gl1.1-android-2.1_r1.jar 
  /external/chromium/third_party/libevent/test/
regress.rpc 18 optional bytes some_bytes = 2;
19 bytes fixed_bytes[24] = 3;
  /external/chromium_org/third_party/libevent/test/
regress.rpc 18 optional bytes some_bytes = 2;
19 bytes fixed_bytes[24] = 3;
  /external/chromium_org/third_party/skia/src/ports/
SkDiscardableMemory_none.cpp 11 SkDiscardableMemory* SkDiscardableMemory::Create(size_t bytes) {
12 return SkGetGlobalDiscardableMemoryPool()->create(bytes);
  /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/ports/
SkDiscardableMemory_none.cpp 11 SkDiscardableMemory* SkDiscardableMemory::Create(size_t bytes) {
12 return SkGetGlobalDiscardableMemoryPool()->create(bytes);
  /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
  /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
  /ndk/tests/device/test-stlport_shared-exception/jni/
new11.cpp 8 void *operator new[](size_t bytes) throw (std::bad_alloc) {
11 return operator new (bytes);
  /ndk/tests/device/test-stlport_static-exception/jni/
new11.cpp 8 void *operator new[](size_t bytes) throw (std::bad_alloc) {
11 return operator new (bytes);
  /external/chromium_org/third_party/skia/src/gpu/
GrAllocPool.cpp 31 bool canAlloc(size_t bytes) const {
32 return bytes <= fBytesFree;
35 void* alloc(size_t bytes) {
36 SkASSERT(bytes <= fBytesFree);
37 fBytesFree -= bytes;
39 fPtr += bytes;
43 size_t release(size_t bytes) {
44 SkASSERT(bytes > 0);
45 size_t free = GrMin(bytes, fBytesTotal - fBytesFree);
48 return bytes - free
    [all...]

Completed in 1035 milliseconds

1 23 4 5 6 7 8 91011>>