HomeSort by relevance Sort by last modified time
    Searched defs:Chunk (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/llvm/lib/DebugInfo/CodeView/
StreamWriter.cpp 68 // each contiguous chunk until we've consumed the entire stream.
70 ArrayRef<uint8_t> Chunk;
71 if (auto EC = SrcReader.readLongestContiguousChunk(Chunk))
73 if (auto EC = writeBytes(Chunk))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
  /external/python/cpython2/Lib/
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
  /external/python/cpython3/Lib/
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
Chunk.java 22 * A chunk of DDM data. This is really just meant to hold a few pieces
28 public class Chunk {
33 public int type; // chunk type
34 public byte[] data; // chunk data
40 public Chunk() {}
45 public Chunk(int type, byte[] data, int offset, int length) {
53 * Construct from a ByteBuffer. The chunk is assumed to start at
56 public Chunk(int type, ByteBuffer buf) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
chunk.py 3 An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
15 The ID is a 4-byte string which identifies the type of chunk.
18 gives the size of the whole chunk, including the 8-byte header.
21 usage of the Chunk class defined here is to instantiate an instance at
22 the start of each chunk and read from the instance until it reaches
30 chunk = Chunk(file)
33 chunktype = chunk.getname()
35 data = chunk.read(nbytes)
42 Extra methods are: skip() (called by close, skips to the end of the chunk),
    [all...]
  /external/tensorflow/tensorflow/core/framework/
tracking_allocator.h 123 struct Chunk {
128 std::unordered_map<const void*, Chunk> in_use_ GUARDED_BY(mu_);
  /external/llvm/lib/Target/AArch64/
AArch64ExpandPseudoInsts.cpp 85 /// \brief Helper function which extracts the specified 16-bit chunk from a
88 assert(ChunkIdx < 4 && "Out of range chunk index specified!");
93 /// \brief Helper function which replicates a 16-bit chunk within a 64-bit
96 assert((FromIdx < 4) && (ToIdx < 4) && "Out of range chunk index specified!");
99 // Replicate the source chunk to the destination position.
100 const uint64_t Chunk = getChunk(Imm, FromIdx) << ShiftAmt;
101 // Clear the destination chunk.
103 // Insert the replicated chunk.
104 return Imm | Chunk;
113 assert(ChunkIdx < 4 && "Out of range chunk index specified!")
    [all...]
  /frameworks/base/libs/androidfw/include/androidfw/
Chunk.h 36 // of the chunk.
37 class Chunk {
39 explicit Chunk(const ResChunk_header* chunk) : device_chunk_(chunk) {}
41 // Returns the type of the chunk. Caller need not worry about endianness.
44 // Returns the size of the entire chunk. This can be useful for skipping
45 // over the entire chunk. Caller need not worry about endianness.
71 // The caller should check if there was an error during chunk validation
77 // const Chunk chunk = iter.Next()
    [all...]
  /external/v8/src/
bignum.h 76 typedef uint32_t Chunk;
79 static const int kChunkSize = sizeof(Chunk) * 8;
84 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
104 Chunk BigitAt(int index) const;
107 Chunk bigits_buffer_[kBigitCapacity];
110 Vector<Chunk> bigits_;
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 19 /** \class Chunk
20 * \brief Chunk is the basic unit of the storage of the LinearAllocator
25 class Chunk {
30 Chunk() : next(NULL), bound(0) {}
43 Chunk* next;
49 class Chunk<DataType, 0> {
54 Chunk() : next(NULL), bound(0) {
61 ~Chunk() {
79 Chunk* next;
86 size_t Chunk<DataType, 0>::m_Size = 0
    [all...]
  /external/perfetto/src/tracing/core/
shared_memory_abi.cc 37 // Returns the largest 4-bytes aligned chunk size <= |page_size| / |divider|
131 SharedMemoryABI::Chunk SharedMemoryABI::GetChunkUnchecked(size_t page_idx,
136 // Compute the chunk virtual address and write it into |chunk|.
140 Chunk chunk(page_start(page_idx) + chunk_offset_in_page, chunk_size,
142 PERFETTO_DCHECK(chunk.end() <= end());
143 return chunk;
146 SharedMemoryABI::Chunk SharedMemoryABI::TryAcquireChunk(
160 return Chunk();
178 Chunk chunk = GetChunkUnchecked(page_idx, layout, chunk_idx); local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
Thumb1RegisterInfo.cpp 145 unsigned Chunk = ((1 << NumBits) - 1) * Scale;
148 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes;
153 Chunk = ((1 << NumBits) - 1) * Scale;
156 NumMIs += Bytes / Chunk;
157 if ((Bytes % Chunk) != 0)
237 unsigned Chunk = (1 << 3) - 1;
238 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes;
253 unsigned Chunk = ((1 << NumBits) - 1) * Scale
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
SystemZFrameLowering.cpp 69 unsigned Opc; uint64_t Chunk;
75 Chunk = (1LL << 31) - 1;
78 Chunk = (1LL << 15) - 1;
84 uint64_t ThisVal = (Offset > Chunk) ? Chunk : Offset;
  /external/valgrind/perf/
many-loss-records.c 42 struct Chunk {
43 struct Chunk* child;
47 struct Chunk** topblocks;
58 void free_chunks (struct Chunk ** mem)
70 void release (struct Chunk ** mem)
87 int sz = sizeof(struct Chunk*) + malloc_data;
92 struct Chunk *new = NULL; // shut gcc up
93 struct Chunk *prev = NULL;
206 topblocks = malloc(sizeof(struct Chunk*) * stacks * malloc_fan);
  /system/core/libmemunreachable/
Allocator.cpp 68 class Chunk;
81 void MoveToFullList(Chunk* chunk, int bucket_);
82 void MoveToFreeList(Chunk* chunk, int bucket_);
87 LinkedList<Chunk*> free_chunks_[kNumBuckets];
88 LinkedList<Chunk*> full_chunks_[kNumBuckets];
90 void MoveToList(Chunk* chunk, LinkedList<Chunk*>* head)
381 Chunk* chunk = Chunk::ptr_to_chunk(ptr); local
    [all...]
  /device/linaro/bootloader/edk2/ArmVirtPkg/Library/PlatformBootManagerLib/
QemuKernel.c 886 UINT32 Chunk;
888 Chunk = (Left < SIZE_1MB) ? Left : SIZE_1MB;
889 QemuFwCfgReadBytes (Chunk, Blob->Data + (Blob->Size - Left));
890 Left -= Chunk;
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Command.c 764 UINTN Chunk = HEXDUMP_CHUNK;
780 Location = AllocatePool (Chunk);
797 for (; Offset + HEXDUMP_CHUNK <= Size; Offset += Chunk) {
798 Chunk = HEXDUMP_CHUNK;
799 Status = EfiRead (File, Location, &Chunk);
805 Status = OutputData (Location, Chunk, Width, File->BaseOffset + Offset);
816 Chunk = Size - Offset;
817 Status = EfiRead (File, Location, &Chunk);
823 Status = OutputData (Location, Chunk, Width, File->BaseOffset + Offset);
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 81 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text)
155 CodeCompletionString::Chunk
156 CodeCompletionString::Chunk::CreateText(const char *Text) {
157 return Chunk(CK_Text, Text);
160 CodeCompletionString::Chunk
161 CodeCompletionString::Chunk::CreateOptional(CodeCompletionString *Optional) {
162 Chunk Result;
168 CodeCompletionString::Chunk
169 CodeCompletionString::Chunk::CreatePlaceholder(const char *Placeholder)
    [all...]
  /external/llvm/lib/DebugInfo/PDB/Raw/
MappedBlockStream.cpp 245 const uint8_t *Chunk = Buffer.data() + BytesWritten;
246 ArrayRef<uint8_t> ChunkData(Chunk, BytesToWriteInChunk);
  /external/llvm/lib/MC/
MCCodeView.cpp 397 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize);
424 support::endian::Writer<support::little>(OS).write<uint16_t>(Chunk);
427 Bias += Chunk;
428 RangeSize -= Chunk;
  /external/perfetto/include/perfetto/tracing/core/
shared_memory_abi.h 60 // Page(s) are partitioned by the Producer into variable size Chunk(s):
67 // | Chunk | | Chunk |
68 // +--------+ Chunk +--------+ <----+
69 // | Chunk | | Chunk | |
77 // | Chunk | | Chunk |
78 // +--------+ Chunk +--------+
79 // | Chunk | | Chunk
    [all...]

Completed in 1391 milliseconds

1 2 3 4 5 6