Home | History | Annotate | Download | only in mkvparser

Lines Matching refs:total

182   long long total, available;
184 int status = pReader->Length(&total, &available);
185 if (status < 0 || (total >= 0 && available > total))
404 long long total = 0;
407 const long status = pReader->Length(&total, &available);
408 if (status < 0 || (total >= 0 && available > total))
442 long long total = 0;
445 long status = pReader->Length(&total, &available);
446 if (status < 0 || (total >= 0 && available > total))
519 long long total, available;
521 long status = pReader->Length(&total, &available);
570 if ((total >= 0) && ((total - pos) < len))
586 if ((total >= 0) && ((total - pos) < result))
714 long long total, available;
716 const long status = pReader->Length(&total, &available);
724 if ((total >= 0) && (available > total))
737 // total file size is unknown. We could decide to always
739 // we happen to know the total file length). This would have
745 if ((total >= 0) && (pos >= total))
755 if ((total >= 0) && ((pos + len) > total))
776 if ((total >= 0) && ((pos + len) > total))
798 else if (total < 0)
801 else if ((pos + size) > total)
814 if ((total >= 0) && ((pos + size) > total))
828 long long total, available;
830 const int status = m_pReader->Length(&total, &available);
835 if (total > 0 && available > total)
840 if ((segment_stop >= 0 && total >= 0 && segment_stop > total) ||
846 if ((total >= 0) && (m_pos >= total))
933 // We read EBML elements either in total or nothing at all.
1043 long long total, avail;
1045 long status = m_pReader->Length(&total, &avail);
1050 if (total >= 0 && avail > total)
1059 if ((total >= 0) && (m_pos >= total))
1269 if ((total >= 0) && (pos >= total)) {
1270 m_pos = total;
1635 long long total, avail;
1637 const int status = m_pReader->Length(&total, &avail);
1642 assert((total < 0) || (avail <= total));
1646 if ((total < 0) || (pos >= total))
1726 if ((total >= 0) && (element_stop > total))
2476 long long total, avail;
2478 const int status = m_pReader->Length(&total, &avail);
2483 if (total < 0)
2486 return (m_pos >= total);
2728 long long total, avail;
2730 long status = m_pReader->Length(&total, &avail);
2735 assert((total < 0) || (avail <= total));
2835 long long total, avail;
2837 long status = m_pReader->Length(&total, &avail);
2842 assert((total < 0) || (avail <= total));
2854 if ((total >= 0) && (pos >= total))
3059 if ((total >= 0) && (pos >= total))
6010 long long total, avail;
6011 const int status = pReader->Length(&total, &avail);
6016 if (total >= 0 && (avail > total || m_pos > total))
6241 long long total, avail;
6243 status = pReader->Length(&total, &avail);
6248 if (total >= 0 && avail > total)
6257 if ((total >= 0) && (pos >= total)) {
6356 } else if ((total >= 0) && (block_stop > total)) {
6357 m_element_size = total - m_element_start;
6358 pos = total;
6398 if ((total >= 0) && (start > total))
6407 if ((total >= 0) && (stop > total))
6421 long long total, avail;
6423 long status = pReader->Length(&total, &avail);
6428 assert((total < 0) || (avail <= total));
6519 long long total, avail;
6521 long status = pReader->Length(&total, &avail);
6526 assert((total < 0) || (avail <= total));
6528 if ((total >= 0) && (payload_stop > total))
6832 long long total, avail;
6834 long status = pReader->Length(&total, &avail);
6839 assert((total < 0) || (avail <= total));
6843 if ((total >= 0) && (pos >= total))
6868 if ((total >= 0) && ((pos + len) > total))
6902 if ((total >= 0) && ((pos + len) > total))
6929 if ((total >= 0) && (cluster_stop > total))