Searched defs:bytes (Results 126 - 150 of 1231) sorted by relevance

1234567891011>>

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DExtensionDescriptor.java36 byte[] bytes; field in class:ExtensionDescriptor
60 bytes = new byte[sizeOfInstance];
61 bb.get(bytes);
69 sb.append("{bytes=").append(bytes == null ? "null" : Hex.encodeHex(bytes));
H A DExtensionProfileLevelDescriptor.java33 byte[] bytes; field in class:ExtensionProfileLevelDescriptor
38 bytes = new byte[getSize()];
39 bb.get(bytes);
47 sb.append("{bytes=").append(bytes == null ? "null" : Hex.encodeHex(bytes));
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DResponseBody.java37 * Returns the number of bytes in that will returned by {@link #bytes}, or
48 public final byte[] bytes() throws IOException { method in class:ResponseBody
55 byte[] bytes;
57 bytes = source.readByteArray();
61 if (contentLength != -1 && contentLength != bytes.length) {
64 return bytes;
83 return new String(bytes(), charset().name());
/external/openssh/
H A Dbuffer.c81 buffer_consume_ret(Buffer *buffer, u_int bytes) argument
83 int ret = sshbuf_consume(buffer, bytes);
93 buffer_consume(Buffer *buffer, u_int bytes) argument
95 if (buffer_consume_ret(buffer, bytes) == -1)
100 buffer_consume_end_ret(Buffer *buffer, u_int bytes) argument
102 int ret = sshbuf_consume_end(buffer, bytes);
112 buffer_consume_end(Buffer *buffer, u_int bytes) argument
114 if (buffer_consume_end_ret(buffer, bytes) == -1)
H A Dhash.c35 unsigned long long bytes = inlen; local
49 padded[119] = bytes >> 61;
50 padded[120] = bytes >> 53;
51 padded[121] = bytes >> 45;
52 padded[122] = bytes >> 37;
53 padded[123] = bytes >> 29;
54 padded[124] = bytes >> 21;
55 padded[125] = bytes >> 13;
56 padded[126] = bytes >> 5;
57 padded[127] = bytes <<
[all...]
/external/protobuf/csharp/src/Google.Protobuf/
H A DByteArray.cs48 /// Determines which copy routine to use based on the number of bytes to be copied.
67 /// Reverses the order of bytes in the array
69 internal static void Reverse(byte[] bytes) argument
71 for (int first = 0, last = bytes.Length - 1; first < last; first++, last--)
73 byte temp = bytes[first];
74 bytes[first] = bytes[last];
75 bytes[last] = temp;
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DUnknownFieldData.java49 final byte[] bytes; field in class:UnknownFieldData
51 UnknownFieldData(int tag, byte[] bytes) { argument
53 this.bytes = bytes;
59 size += bytes.length;
65 output.writeRawBytes(bytes);
78 return tag == other.tag && Arrays.equals(bytes, other.bytes);
85 result = 31 * result + Arrays.hashCode(bytes);
/external/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc27 ByteVector bytes; local
29 bytes.push_back(TEST_OTF_DATA[i]);
31 ByteArrayPtr array = new MemoryByteArray(&(bytes[0]), bytes.size());
/external/skia/experimental/DrawingBoard/
H A DSkNetPipeController.cpp38 void SkNetPipeController::notifyWritten(size_t bytes) { argument
39 SkASSERT(fBytesWritten + bytes <= fBlockSize);
42 fStatus = fReader.playback((const char*)fBlock + fBytesWritten, bytes);
46 fBytesWritten += bytes;
47 fTotalWritten += bytes;
/external/skia/src/codec/
H A DSkJpegUtility.cpp26 size_t bytes = src->fStream->read(src->fBuffer, skjpeg_source_mgr::kBufferSize); local
29 if (bytes == 0) {
34 src->bytes_in_buffer = bytes;
39 * Skip a certain number of bytes in the stream
43 size_t bytes = (size_t) numBytes; local
45 if (bytes > src->bytes_in_buffer) {
46 size_t bytesToSkip = bytes - src->bytes_in_buffer;
/external/skia/src/core/
H A DSkVarAlloc.cpp47 void SkVarAlloc::makeSpace(size_t bytes) { argument
48 SkASSERT(SkIsAlignPtr(bytes));
51 while (alloc < bytes + sizeof(Block)) {
H A DSkVarAlloc.h15 // Smallest block we'll allocate is 2**N bytes.
17 // Same as above, but first uses up to len bytes from storage.
22 // Returns contiguous bytes aligned at least for pointers.
23 char* alloc(size_t bytes) { argument
24 bytes = SkAlignPtr(bytes);
26 if (bytes > fRemaining) {
27 this->makeSpace(bytes);
29 SkASSERT(bytes <= fRemaining);
32 fByte += bytes;
[all...]
/external/skia/src/utils/mac/
H A DSkStream_mac.cpp33 static size_t get_bytes_proc(void* info, void* buffer, size_t bytes) { argument
35 return ((SkStream*)info)->read(buffer, bytes);
38 static off_t skip_forward_proc(void* info, off_t bytes) { argument
39 return ((SkStream*)info)->skip((size_t) bytes);
/external/skia/tests/
H A DPDFMetadataAttributeTest.cpp43 const uint8_t* bytes = data->bytes(); local
49 if (0 == memcmp(bytes + i, expectation, len)) {
/external/smali/util/src/main/java/org/jf/util/
H A DRandomAccessFileInputStream.java54 @Override public int read(byte[] bytes) throws IOException { argument
56 int bytesRead = raf.read(bytes);
61 @Override public int read(byte[] bytes, int offset, int length) throws IOException { argument
63 int bytesRead = raf.read(bytes, offset, length);
/external/squashfs-tools/kernel/fs/squashfs/
H A Dsymlink.c55 int bytes, copied; local
63 * Skip index bytes into symlink metadata.
66 bytes = squashfs_read_metadata(sb, NULL, &block, &offset,
68 if (bytes < 0) {
77 * Read length bytes from symlink metadata. Squashfs_read_metadata
80 * squashfs_cache_get routine. As length bytes may overlap metadata
83 for (bytes = 0; bytes < length; offset = 0, bytes += copied) {
94 copied = squashfs_copy_data(pageaddr + bytes, entr
[all...]
/external/strace/
H A Dxmalloc.c65 size_t bytes = nmemb * size; local
68 size && bytes / size != nmemb)
71 void *p = realloc(ptr, bytes);
/external/swiftshader/src/Common/
H A DResource.cpp21 Resource::Resource(size_t bytes) : size(bytes) argument
29 buffer = allocateZero(bytes);
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430MachineFunctionInfo.h25 /// stack frame in bytes.
38 void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; } argument
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
H A DSystemZMachineFunctionInfo.h25 /// stack frame in bytes.
40 void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; } argument
/external/syslinux/com32/elflink/ldlinux/
H A Dloadhigh.c22 * EAX = maximum number of bytes to load
45 uint32_t bytes; local
55 bytes = regs->eax.l;
64 while (bytes) {
74 chunk = bytes;
91 bytes -= bytes_read;
/external/syslinux/com32/lib/sys/
H A Dzfile.c87 ssize_t bytes; local
105 bytes = n - zs->avail_out;
106 nout += bytes;
107 p += bytes;
108 n -= bytes;
/external/syslinux/gpxe/src/arch/i386/firmware/pcbios/
H A Dpnpbios.c63 uint8_t bytes[256]; /* 256 is maximum length possible */ member in union:__anon20058
76 copy_from_real ( &u.bytes, BIOS_SEG, offset, len );
78 sum += u.bytes[i];
/external/toybox/toys/posix/
H A Duuencode.c43 int j, x, bytes = i - (in-buf); local
45 if (bytes > 3) bytes = 3;
50 if (j < bytes) x |= (*(in++) & 0x0ff) << (8*(2-j));
52 xputc(m ? (j > bytes ? '=' : toybuf[out]) : (out ? out + 0x20 : 0x60));
/external/valgrind/none/tests/solaris/
H A Dproc_psinfo.c35 ssize_t bytes = read(fd, &psinfo, sizeof(psinfo)); local
36 if (bytes != sizeof(psinfo)) {

Completed in 739 milliseconds

1234567891011>>