Lines Matching refs:pEntry
1540 Entry* pEntry = m_entries; in Parse() local
1556 if (ParseEntry(pReader, pos, size, pEntry)) { in Parse()
1557 Entry& e = *pEntry++; in Parse()
1577 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries); in Parse()
1733 Entry* pEntry) { in ParseEntry() argument
1780 pEntry->id = ReadUInt(pReader, pos, len); // payload in ParseEntry()
1782 if (pEntry->id <= 0) in ParseEntry()
1813 pEntry->pos = UnserializeUInt(pReader, pos, seekPosSize); in ParseEntry()
1815 if (pEntry->pos < 0) in ParseEntry()
6630 long Cluster::GetEntry(long index, const mkvparser::BlockEntry*& pEntry) const { in GetEntry()
6633 pEntry = NULL; in GetEntry()
6646 pEntry = m_entries[index]; in GetEntry()
6647 assert(pEntry); in GetEntry()
6971 const BlockEntry* pEntry; in GetFirstTime() local
6973 const long status = GetFirst(pEntry); in GetFirstTime()
6978 if (pEntry == NULL) // empty cluster in GetFirstTime()
6981 const Block* const pBlock = pEntry->GetBlock(); in GetFirstTime()
6988 const BlockEntry* pEntry; in GetLastTime() local
6990 const long status = GetLast(pEntry); in GetLastTime()
6995 if (pEntry == NULL) // empty cluster in GetLastTime()
6998 const Block* const pBlock = pEntry->GetBlock(); in GetLastTime()
7137 BlockEntry*& pEntry = *ppEntry; in CreateBlockGroup() local
7139 pEntry = new (std::nothrow) in CreateBlockGroup()
7142 if (pEntry == NULL) in CreateBlockGroup()
7145 BlockGroup* const p = static_cast<BlockGroup*>(pEntry); in CreateBlockGroup()
7154 delete pEntry; in CreateBlockGroup()
7155 pEntry = 0; in CreateBlockGroup()
7169 BlockEntry*& pEntry = *ppEntry; in CreateSimpleBlock() local
7171 pEntry = new (std::nothrow) SimpleBlock(this, idx, st, sz); in CreateSimpleBlock()
7173 if (pEntry == NULL) in CreateSimpleBlock()
7176 SimpleBlock* const p = static_cast<SimpleBlock*>(pEntry); in CreateSimpleBlock()
7185 delete pEntry; in CreateSimpleBlock()
7186 pEntry = 0; in CreateSimpleBlock()
7317 const BlockEntry* const pEntry = m_entries[index]; in GetEntry() local
7318 assert(pEntry); in GetEntry()
7319 assert(!pEntry->EOS()); in GetEntry()
7321 const Block* const pBlock = pEntry->GetBlock(); in GetEntry()
7329 if (pTrack->VetEntry(pEntry)) { in GetEntry()
7331 return pEntry; in GetEntry()
7338 pResult = pEntry; // have a candidate in GetEntry()
7372 const BlockEntry* const pEntry = m_entries[index]; in GetEntry() local
7373 assert(pEntry); in GetEntry()
7374 assert(!pEntry->EOS()); in GetEntry()
7376 const Block* const pBlock = pEntry->GetBlock(); in GetEntry()
7381 return pEntry; in GetEntry()
7404 const BlockEntry* const pEntry = m_entries[index]; in GetEntry() local
7405 assert(pEntry); in GetEntry()
7406 assert(!pEntry->EOS()); in GetEntry()
7408 const Block* const pBlock = pEntry->GetBlock(); in GetEntry()
7438 return pEntry; in GetEntry()
7446 return pEntry; in GetEntry()