/external/libwebm/testing/ |
D | mkvparser_tests.cc | 183 const BlockEntry* block_entry; in TEST_F() local 184 EXPECT_EQ(0, cluster->GetFirst(block_entry)); in TEST_F() 185 ASSERT_TRUE(block_entry != NULL); in TEST_F() 186 EXPECT_FALSE(block_entry->EOS()); in TEST_F() 187 CompareBlockContents(cluster, block_entry->GetBlock(), 0, kVideoTrackNumber, in TEST_F() 191 EXPECT_EQ(0, cluster->GetNext(block_entry, block_entry)); in TEST_F() 192 ASSERT_TRUE(block_entry != NULL); in TEST_F() 193 EXPECT_FALSE(block_entry->EOS()); in TEST_F() 194 CompareBlockContents(cluster, block_entry->GetBlock(), 2000000, in TEST_F() 198 EXPECT_EQ(0, cluster->GetNext(block_entry, block_entry)); in TEST_F() [all …]
|
D | mkvparser_fuzzer.cc | 76 const mkvparser::BlockEntry* block_entry = in GetBlockEntryFromCluster() local 78 return block_entry; in GetBlockEntryFromCluster() 100 const mkvparser::BlockEntry* block_entry = in WalkCues() local 102 static_cast<void>(block_entry); in WalkCues() 108 const mkvparser::BlockEntry* block_entry; in ParseCluster() local 109 long status = cluster.GetFirst(block_entry); in ParseCluster() 114 while (block_entry != nullptr && !block_entry->EOS()) { in ParseCluster() 115 const mkvparser::Block* const block = block_entry->GetBlock(); in ParseCluster() 120 status = cluster.GetNext(block_entry, block_entry); in ParseCluster()
|
/external/libvpx/ |
D | webmdec.cc | 39 webm_ctx->block_entry = nullptr; in reset() 134 const mkvparser::BlockEntry *block_entry = in webm_read_frame() local 135 reinterpret_cast<const mkvparser::BlockEntry *>(webm_ctx->block_entry); in webm_read_frame() 140 if (block_entry == nullptr && !block_entry_eos) { in webm_read_frame() 141 status = cluster->GetFirst(block_entry); in webm_read_frame() 143 } else if (block_entry_eos || block_entry->EOS()) { in webm_read_frame() 150 status = cluster->GetFirst(block_entry); in webm_read_frame() 156 status = cluster->GetNext(block_entry, block_entry); in webm_read_frame() 157 if (block_entry == nullptr || block_entry->EOS()) { in webm_read_frame() 163 if (status || block_entry == nullptr) { in webm_read_frame() [all …]
|
D | webmdec.h | 26 const void *block_entry; member
|
/external/libaom/common/ |
D | webmdec.cc | 41 webm_ctx->block_entry = NULL; in reset() 135 const mkvparser::BlockEntry *block_entry = in webm_read_frame() local 136 reinterpret_cast<const mkvparser::BlockEntry *>(webm_ctx->block_entry); in webm_read_frame() 141 if (block_entry == NULL && !block_entry_eos) { in webm_read_frame() 142 status = cluster->GetFirst(block_entry); in webm_read_frame() 144 } else if (block_entry_eos || block_entry->EOS()) { in webm_read_frame() 151 status = cluster->GetFirst(block_entry); in webm_read_frame() 157 status = cluster->GetNext(block_entry, block_entry); in webm_read_frame() 158 if (block_entry == NULL || block_entry->EOS()) { in webm_read_frame() 164 if (status || block_entry == NULL) { in webm_read_frame() [all …]
|
D | webmdec.h | 27 const void *block_entry; member
|
/external/libwebm/m2ts/ |
D | webm2pes.cc | 234 const mkvparser::BlockEntry* block_entry = nullptr; in ConvertToFile() local 235 std::int64_t block_status = cluster->GetFirst(block_entry); in ConvertToFile() 243 while (block_entry != nullptr && block_entry->EOS() == false) { in ConvertToFile() 244 const mkvparser::Block* block = block_entry->GetBlock(); in ConvertToFile() 275 block_status = cluster->GetNext(block_entry, block_entry); in ConvertToFile() 304 const mkvparser::BlockEntry* block_entry = nullptr; in ConvertToPacketReceiver() local 305 std::int64_t block_status = cluster->GetFirst(block_entry); in ConvertToPacketReceiver() 313 while (block_entry != nullptr && block_entry->EOS() == false) { in ConvertToPacketReceiver() 314 const mkvparser::Block* block = block_entry->GetBlock(); in ConvertToPacketReceiver() 342 block_status = cluster->GetNext(block_entry, block_entry); in ConvertToPacketReceiver()
|
/external/libwebm/common/ |
D | vp9_header_parser_tests.cc | 83 const mkvparser::BlockEntry* block_entry; in ProcessTheFrames() local 84 long status = cluster->GetFirst(block_entry); // NOLINT in ProcessTheFrames() 87 while ((block_entry != NULL) && !block_entry->EOS()) { in ProcessTheFrames() 88 const mkvparser::Block* const block = block_entry->GetBlock(); in ProcessTheFrames() 115 status = cluster->GetNext(block_entry, block_entry); in ProcessTheFrames()
|
D | vp9_level_stats_tests.cc | 72 const mkvparser::BlockEntry* block_entry; in ProcessTheFrames() local 73 long status = cluster->GetFirst(block_entry); // NOLINT in ProcessTheFrames() 76 while ((block_entry != NULL) && !block_entry->EOS()) { in ProcessTheFrames() 77 const mkvparser::Block* const block = block_entry->GetBlock(); in ProcessTheFrames() 102 status = cluster->GetNext(block_entry, block_entry); in ProcessTheFrames()
|
/external/libwebm/ |
D | vttdemux.cc | 190 const mkvparser::BlockEntry* block_entry); 748 const mkvparser::BlockEntry* block_entry; in ProcessCluster() local 750 long result = c->GetFirst(block_entry); // NOLINT in ProcessCluster() 756 while (block_entry != NULL && !block_entry->EOS()) { in ProcessCluster() 757 if (!ProcessBlockEntry(m, block_entry)) in ProcessCluster() 760 result = c->GetNext(block_entry, block_entry); in ProcessCluster() 771 const mkvparser::BlockEntry* block_entry) { in ProcessBlockEntry() argument 775 const mkvparser::Block* const block = block_entry->GetBlock(); in ProcessBlockEntry() 784 if (block_entry->GetKind() != mkvparser::BlockEntry::kBlockGroup) in ProcessBlockEntry() 788 const BG* const block_group = static_cast<const BG*>(block_entry); in ProcessBlockEntry()
|
D | mkvmuxer_sample.cc | 687 const mkvparser::BlockEntry* block_entry; in main() local 689 long status = cluster->GetFirst(block_entry); in main() 696 while (block_entry != NULL && !block_entry->EOS()) { in main() 697 const mkvparser::Block* const block = block_entry->GetBlock(); in main() 751 status = cluster->GetNext(block_entry, block_entry); in main()
|
D | webm_info.cc | 848 const mkvparser::BlockEntry* block_entry; in OutputCluster() local 849 long status = cluster.GetFirst(block_entry); in OutputCluster() 887 const mkvparser::BlockEntry* block_entry; in OutputCluster() local 888 long status = cluster.GetFirst(block_entry); in OutputCluster() 895 while (block_entry != NULL && !block_entry->EOS()) { in OutputCluster() 896 const mkvparser::Block* const block = block_entry->GetBlock(); in OutputCluster() 916 if (block_entry->GetKind() == mkvparser::BlockEntry::kBlockGroup) { in OutputCluster() 1046 if (block_entry->GetKind() == mkvparser::BlockEntry::kBlockGroup) { in OutputCluster() 1058 status = cluster.GetNext(block_entry, block_entry); in OutputCluster()
|
/external/mesa3d/src/compiler/nir/ |
D | nir_lower_io_to_temporaries.c | 108 set_foreach(impl->end_block->predecessors, block_entry) { in emit_output_copies_impl() 109 struct nir_block *block = (void *)block_entry->key; in emit_output_copies_impl()
|
/external/e2fsprogs/lib/ext2fs/ |
D | fileio.c | 35 struct block_entry { struct 39 typedef struct block_entry *block_entry_t; argument
|
/external/mesa3d/src/freedreno/ir3/ |
D | ir3_nir_lower_tess.c | 970 set_foreach(impl->end_block->predecessors, block_entry) { in ir3_nir_lower_gs() 971 struct nir_block *block = (void *)block_entry->key; in ir3_nir_lower_gs()
|