Home
last modified time | relevance | path

Searched defs:BlockHeader (Results 1 – 16 of 16) sorted by relevance

/external/libwebm/webm_parser/src/
Dblock_header_parser.h22 struct BlockHeader { struct
27 bool operator==(const BlockHeader& other) const { argument
/external/icing/icing/file/posting_list/
Dindex-block.h251 struct BlockHeader { struct
254 uint32_t next_block_index;
258 PostingListIndex free_list_posting_list_index;
263 uint32_t posting_list_bytes;
/external/rust/android-crates-io/crates/tokio/src/sync/mpsc/
Dblock.rs24 struct BlockHeader<T> { struct
28 start_index: usize,
31 next: AtomicPtr<Block<T>>,
34 ready_slots: AtomicUsize,
38 observed_tail_position: UnsafeCell<usize>,
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/fdeflate-0.3.6/src/
Ddecompress.rs49 struct BlockHeader { struct
50 hlit: usize,
51 hdist: usize,
52 hclen: usize,
53 num_lengths_read: usize,
56 table: [u32; 128],
57 code_lengths: [u8; 320],
82 BlockHeader, enumerator
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/fdeflate-0.3.6/src/
Ddecompress.rs49 struct BlockHeader { struct
50 hlit: usize,
51 hdist: usize,
52 hclen: usize,
53 num_lengths_read: usize,
56 table: [u32; 128],
57 code_lengths: [u8; 320],
82 BlockHeader, enumerator
/external/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
DProfile.cpp45 struct BlockHeader { struct
46 uint32_t Size;
47 uint32_t Number;
48 uint64_t Thread;
/external/swiftshader/third_party/llvm-16.0/llvm/lib/XRay/
DProfile.cpp45 struct BlockHeader { struct
46 uint32_t Size;
47 uint32_t Number;
48 uint64_t Thread;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DDebugLinesSubsection.cpp25 const LineBlockFragmentHeader *BlockHeader; in operator ()() local
114 LineBlockFragmentHeader BlockHeader; in commit() local
/external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/CodeView/
DDebugLinesSubsection.cpp25 const LineBlockFragmentHeader *BlockHeader; in operator ()() local
114 LineBlockFragmentHeader BlockHeader; in commit() local
/external/cronet/tot/base/metrics/
Dpersistent_memory_allocator.cc113 struct PersistentMemoryAllocator::BlockHeader { struct in base::PersistentMemoryAllocator
114 uint32_t size; // Number of bytes in this block, including header.
115 uint32_t cookie; // Constant value indicating completed allocation.
116 std::atomic<uint32_t> type_id; // Arbitrary number indicating data type.
117 std::atomic<uint32_t> next; // Pointer to the next block when iterating.
/external/libchrome/base/metrics/
Dpersistent_memory_allocator.cc100 struct PersistentMemoryAllocator::BlockHeader { struct in base::PersistentMemoryAllocator
101 uint32_t size; // Number of bytes in this block, including header.
102 uint32_t cookie; // Constant value indicating completed allocation.
103 std::atomic<uint32_t> type_id; // Arbitrary number indicating data type.
104 std::atomic<uint32_t> next; // Pointer to the next block when iterating.
/external/cronet/stable/base/metrics/
Dpersistent_memory_allocator.cc113 struct PersistentMemoryAllocator::BlockHeader { struct in base::PersistentMemoryAllocator
114 uint32_t size; // Number of bytes in this block, including header.
115 uint32_t cookie; // Constant value indicating completed allocation.
116 std::atomic<uint32_t> type_id; // Arbitrary number indicating data type.
117 std::atomic<uint32_t> next; // Pointer to the next block when iterating.
/external/cronet/tot/net/disk_cache/blockfile/
Dblock_files.cc48 BlockHeader::BlockHeader() : header_(nullptr) {} in BlockHeader() function in disk_cache::BlockHeader
50 BlockHeader::BlockHeader(BlockFileHeader* header) : header_(header) { in BlockHeader() function in disk_cache::BlockHeader
53 BlockHeader::BlockHeader(MappedFile* file) in BlockHeader() function in disk_cache::BlockHeader
/external/cronet/stable/net/disk_cache/blockfile/
Dblock_files.cc48 BlockHeader::BlockHeader() : header_(nullptr) {} in BlockHeader() function in disk_cache::BlockHeader
50 BlockHeader::BlockHeader(BlockFileHeader* header) : header_(header) { in BlockHeader() function in disk_cache::BlockHeader
53 BlockHeader::BlockHeader(MappedFile* file) in BlockHeader() function in disk_cache::BlockHeader
/external/llvm/include/llvm/DebugInfo/CodeView/
DModuleSubstreamVisitor.h35 const LineFileBlockHeader *BlockHeader; in operator() local
/external/scapy/scapy/contrib/
Dpnio_rpc.py325 class BlockHeader(Packet): class