HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 126 - 150 of 3210) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ExtensionProfileLevelDescriptor.java 33 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/protobuf/javanano/src/main/java/com/google/protobuf/nano/
UnknownFieldData.java 49 final byte[] bytes; field in class:UnknownFieldData
51 UnknownFieldData(int tag, byte[] bytes) {
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/python/cpython3/Include/
asdl.h 6 typedef PyObject * bytes; typedef
  /external/sfntly/cpp/src/test/
open_type_data_test.cc 27 ByteVector bytes; local
29 bytes.push_back(TEST_OTF_DATA[i]);
31 ByteArrayPtr array = new MemoryByteArray(&(bytes[0]), bytes.size());
  /external/skia/include/core/
SkData.h 19 * but the actual ptr that is returned (by data() or bytes()) is guaranteed
25 * Returns the number of bytes stored.
40 const uint8_t* bytes() const { function in class:final
59 * Returns the actual number of bytes copied, after clamping offset and
61 * only the computed number of bytes is returned.
91 * (a null-terminated array of bytes). The returned SkData will have size()
142 * Attempt to read size bytes into a SkData. If the read succeeds, return the data,
  /external/skia/src/codec/
SkJpegUtility.cpp 42 size_t bytes = src->fStream->read(src->fBuffer, skjpeg_source_mgr::kBufferSize); local
45 if (bytes == 0) {
53 src->bytes_in_buffer = bytes;
58 * Skip a certain number of bytes in the stream
62 size_t bytes = (size_t) numBytes; local
64 if (bytes > src->bytes_in_buffer) {
65 size_t bytesToSkip = bytes - src->bytes_in_buffer;
102 size_t bytes = static_cast<size_t>(num_bytes); local
103 if(bytes > src->bytes_in_buffer) {
107 src->next_input_byte += bytes;
    [all...]
  /external/skia/tests/
PDFMetadataAttributeTest.cpp 42 const uint8_t* bytes = data->bytes(); local
48 if (0 == memcmp(bytes + i, expectation, len)) {
  /external/skqp/include/core/
SkData.h 19 * but the actual ptr that is returned (by data() or bytes()) is guaranteed
25 * Returns the number of bytes stored.
40 const uint8_t* bytes() const { function in class:final
59 * Returns the actual number of bytes copied, after clamping offset and
61 * only the computed number of bytes is returned.
91 * (a null-terminated array of bytes). The returned SkData will have size()
142 * Attempt to read size bytes into a SkData. If the read succeeds, return the data,
  /external/skqp/src/codec/
SkJpegUtility.cpp 42 size_t bytes = src->fStream->read(src->fBuffer, skjpeg_source_mgr::kBufferSize); local
45 if (bytes == 0) {
53 src->bytes_in_buffer = bytes;
58 * Skip a certain number of bytes in the stream
62 size_t bytes = (size_t) numBytes; local
64 if (bytes > src->bytes_in_buffer) {
65 size_t bytesToSkip = bytes - src->bytes_in_buffer;
102 size_t bytes = static_cast<size_t>(num_bytes); local
103 if(bytes > src->bytes_in_buffer) {
107 src->next_input_byte += bytes;
    [all...]
  /external/skqp/tests/
PDFMetadataAttributeTest.cpp 42 const uint8_t* bytes = data->bytes(); local
48 if (0 == memcmp(bytes + i, expectation, len)) {
  /external/squashfs-tools/kernel/fs/squashfs/
symlink.c 55 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, entry, offset
    [all...]
  /external/strace/
sock.c 81 const unsigned char *bytes = local
84 bytes[0], bytes[1], bytes[2],
85 bytes[3], bytes[4], bytes[5]);
xmalloc.c 78 size_t bytes = nmemb * size; local
81 size && bytes / size != nmemb)
84 void *p = realloc(ptr, bytes);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
StreamingMemoryObject.h 34 /// Drop s bytes from the front of the stream, pushing the positions of the
35 /// remaining bytes down by s. This is used to skip past the bitcode header,
36 /// since we don't know a priori if it's present, and we can't put bytes
45 /// The number of bytes read at a time from the data streamer.
49 mutable std::vector<unsigned char> Bytes;
51 mutable size_t BytesRead; // Bytes read from stream
52 size_t BytesSkipped;// Bytes skipped at start of stream (e.g. wrapper/header)
56 // Fetch enough bytes such that Pos can be read (i.e. BytesRead >
59 // requests will be small, but we fetch at kChunkSize bytes at a
66 Bytes.resize(BytesRead + BytesSkipped + kChunkSize)
67 size_t bytes = Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped], local
    [all...]
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Support/
StreamingMemoryObject.h 34 /// Drop s bytes from the front of the stream, pushing the positions of the
35 /// remaining bytes down by s. This is used to skip past the bitcode header,
36 /// since we don't know a priori if it's present, and we can't put bytes
45 /// The number of bytes read at a time from the data streamer.
49 mutable std::vector<unsigned char> Bytes;
51 mutable size_t BytesRead; // Bytes read from stream
52 size_t BytesSkipped;// Bytes skipped at start of stream (e.g. wrapper/header)
56 // Fetch enough bytes such that Pos can be read (i.e. BytesRead >
59 // requests will be small, but we fetch at kChunkSize bytes at a
66 Bytes.resize(BytesRead + BytesSkipped + kChunkSize)
67 size_t bytes = Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped], local
    [all...]
  /external/syslinux/com32/elflink/ldlinux/
loadhigh.c 22 * 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/
zfile.c 87 ssize_t bytes; local
105 bytes = n - zs->avail_out;
106 nout += bytes;
107 p += bytes;
108 n -= bytes;
  /external/syslinux/com32/libutil/
base64.c 80 int len, bytes; local
86 bytes = genbase64(buf, argv[i], len, BASE64_MIME | BASE64_PAD);
87 printf(" MIME: \"%s\" (%d)\n", buf, bytes);
88 bytes = genbase64(buf, argv[i], len, BASE64_SAFE);
89 printf(" Safe: \"%s\" (%d)\n", buf, bytes);
  /external/syslinux/efi/
diskio.c 12 sector_t lba, UINTN bytes, void *buf)
14 return uefi_call_wrapper(bio->ReadBlocks, 5, bio, id, lba, bytes, buf);
18 sector_t lba, UINTN bytes, void *buf)
20 return uefi_call_wrapper(bio->WriteBlocks, 5, bio, id, lba, bytes, buf);
29 UINTN bytes = count * disk->sector_size; local
32 status = write_blocks(bio, disk->disk_number, lba, bytes, buf);
34 status = read_blocks(bio, disk->disk_number, lba, bytes, buf);
  /external/syslinux/gpxe/src/arch/i386/firmware/pcbios/
pnpbios.c 63 uint8_t bytes[256]; /* 256 is maximum length possible */ member in union:__anon37758
76 copy_from_real ( &u.bytes, BIOS_SEG, offset, len );
78 sum += u.bytes[i];
  /external/tensorflow/tensorflow/compiler/xla/
packed_literal_reader.cc 66 uint64 bytes = elements * sizeof(float); local
68 auto s = file_->Read(offset_, bytes, &sp, data);
75 CHECK_EQ(sp.size(), bytes);
  /external/tensorflow/tensorflow/contrib/lite/
string_util.cc 70 // Total bytes include:
75 int32_t bytes = data_.size() // size of content local
80 char* tensor_buffer = static_cast<char*>(malloc(bytes));
99 tensor_buffer, bytes, kTfLiteDynamic, tensor->allocation,
  /external/toybox/toys/posix/
uuencode.c 43 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/webrtc/webrtc/base/
bufferqueue.cc 35 bool BufferQueue::ReadFront(void* buffer, size_t bytes, size_t* bytes_read) {
45 bytes = std::min(bytes, packet->size());
46 memcpy(buffer, packet->data(), bytes);
48 *bytes_read = bytes;
57 bool BufferQueue::WriteBack(const void* buffer, size_t bytes,
70 packet = new Buffer(bytes, default_size_);
73 packet->SetData(static_cast<const uint8_t*>(buffer), bytes); local
75 *bytes_written = bytes;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
byte_io_unittest.cc 54 // Template arguments: Type T, read method RM(buffer), B bytes of data.
63 uint8_t bytes[B + kAlignments]; local
67 PopulateTestData(bytes + i, test_value, B, big_endian);
70 EXPECT_EQ(test_value, RM(bytes + i));
76 // Template arguments: Type T, write method WM(buffer, value), B bytes of data
86 uint8_t bytes[B + kAlignments]; local
93 memset(bytes, 0, B + kAlignments);
94 WM(bytes + i, test_value);
98 EXPECT_EQ(expected_bytes[i + j], bytes[i + j]);

Completed in 750 milliseconds

1 2 3 4 56 7 8 91011>>