Home | History | Annotate | Download | only in libwebm

Lines Matching refs:pCurr

2530 const CuePoint* Cues::GetNext(const CuePoint* pCurr) const {
2531 if (pCurr == NULL)
2534 assert(pCurr->GetTimeCode() >= 0);
2541 size_t index = pCurr->m_index;
2546 assert(pp[index] == pCurr);
2558 long index = pCurr->m_index;
2563 assert(pp[index] == pCurr);
2958 const Cluster* Segment::GetNext(const Cluster* pCurr) {
2959 assert(pCurr);
2960 assert(pCurr != &m_eos);
2963 long idx = pCurr->m_index;
2968 assert(pCurr == m_clusters[idx]);
2985 long long pos = pCurr->m_element_start;
3013 // assert((pCurr->m_size <= 0) || (pCurr->m_size == size));
3127 long Segment::ParseNext(const Cluster* pCurr, const Cluster*& pResult,
3129 assert(pCurr);
3130 assert(!pCurr->EOS());
3135 if (pCurr->m_index >= 0) { // loaded (not merely preloaded)
3136 assert(m_clusters[pCurr->m_index] == pCurr);
3138 const long next_idx = pCurr->m_index + 1;
3177 pos = pCurr->m_element_start;
3179 if (pCurr->m_element_size >= 0)
3180 pos += pCurr->m_element_size;
3241 // assert((pCurr->m_size <= 0) || (pCurr->m_size == size));
7493 long Cluster::GetNext(const BlockEntry* pCurr, const BlockEntry*& pNext) const {
7494 assert(pCurr);
7498 size_t idx = pCurr->GetIndex();
7500 assert(m_entries[idx] == pCurr);