HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 101 - 125 of 3342) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu/icu4c/source/common/unicode/
bytestriebuilder.h 58 * The bytes will be copied; the builder does not keep
176 char *bytes; member in class:BytesTrieBuilder
  /external/iproute2/examples/bpf/
bpf_shared.h 14 long bytes; member in struct:count_tuple
  /external/kmod/shared/
strbuf.c 44 tmp = realloc(buf->bytes, sz);
47 buf->bytes = tmp;
54 buf->bytes = NULL;
61 free(buf->bytes);
66 char *bytes; local
68 bytes = realloc(buf->bytes, buf->used + 1);
69 if (!bytes) {
70 free(buf->bytes);
73 bytes[buf->used] = '\0'
    [all...]
  /external/libavc/test/encoder/
recon.c 55 WORD32 bytes; local
73 bytes = fwrite(pu1_buf, sizeof(UWORD8), wd, fp);
74 if(bytes != wd)
  /external/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/mesa3d/src/glsl/glcpp/
glcpp.c 50 size_t bytes; local
61 bytes = fread (text + total_read, 1, CHUNK, fp);
62 total_read += bytes;
64 if (bytes < CHUNK) {
  /external/mesa3d/src/mesa/main/
texcompress.c 468 * \param srcRowStride stride in bytes between rows of blocks in the
480 GLuint bytes, bw, bh; local
482 bytes = _mesa_get_format_bytes(format);
492 texImage.RowStride = srcRowStride * bh / bytes;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ExtensionDescriptor.java 36 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));
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/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/tests/
PDFMetadataAttributeTest.cpp 43 const uint8_t* bytes = data->bytes(); local
49 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 86 const unsigned char *bytes = local
89 bytes[0], bytes[1], bytes[2],
90 bytes[3], bytes[4], bytes[5]);
  /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:__anon32663
76 copy_from_real ( &u.bytes, BIOS_SEG, offset, len );
78 sum += u.bytes[i];
  /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));
xargs.c 21 -s Size in bytes per command line
50 long entries, bytes;
54 // If out==NULL count TT.bytes and TT.entries, stopping at max.
83 if (++TT.bytes >= TT.max_bytes && TT.max_bytes) return save;
98 TT.bytes += strlen(data)+1;
99 if (TT.max_bytes && TT.bytes >= TT.max_bytes) return data;
112 int entries, bytes, done = 0, status; local
125 for (entries = 0, bytes = -1; entries < toys.optc; entries++, bytes++)
126 bytes += strlen(toys.optargs[entries])
    [all...]
  /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]);
  /frameworks/av/drm/common/
ReadWriteUtils.cpp 46 char* bytes = new char[length]; local
47 if (length == read(fd, (void*) bytes, length)) {
48 string.append(bytes, length);
50 delete[] bytes;

Completed in 1299 milliseconds

1 2 3 45 6 7 8 91011>>