Home | History | Annotate | Download | only in libwebm

Lines Matching refs:total

36   //    long long total, available;
37 // status = pReader->Length(&total, &available);
39 // assert((total < 0) || (available <= total));
100 long long total, available;
102 int status = pReader->Length(&total, &available);
104 assert((total < 0) || (available <= total));
326 long long total, available;
328 const long status = pReader->Length(&total, &available);
330 assert((total < 0) || (available <= total));
369 long long total, available;
371 long status = pReader->Length(&total, &available);
373 assert((total < 0) || (available <= total));
436 long long total, available;
438 long status = pReader->Length(&total, &available);
465 if ((total >= 0) && ((total - available) < 5))
471 if ((total >= 0) && ((total - pos) < 5))
508 if ((total >= 0) && ((total - pos) < len))
525 if ((total >= 0) && ((total - pos) < result))
642 long long total, available;
644 const long status = pReader->Length(&total, &available);
652 if ((total >= 0) && (available > total))
665 // total file size is unknown. We could decide to always
667 // we happen to know the total file length). This would have
673 if ((total >= 0) && (pos >= total))
683 if ((total >= 0) && ((pos + len) > total))
704 if ((total >= 0) && ((pos + len) > total))
726 else if (total < 0)
729 else if ((pos + size) > total)
745 if ((total >= 0) && ((pos + size) > total))
759 long long total, available;
761 const int status = m_pReader->Length(&total, &available);
766 assert((total < 0) || (available <= total));
769 assert((segment_stop < 0) || (total < 0) || (segment_stop <= total));
773 if ((total >= 0) && (m_pos >= total))
843 // We read EBML elements either in total or nothing at all.
939 long long total, avail;
941 long status = m_pReader->Length(&total, &avail);
946 assert((total < 0) || (avail <= total));
954 if ((total >= 0) && (m_pos >= total))
1165 if ((total >= 0) && (pos >= total)) {
1166 m_pos = total;
1215 if ((total >= 0) && (pos >= total))
1365 long long total, avail;
1367 long status = m_pReader->Length(&total, &avail);
1372 assert((total < 0) || (avail <= total));
1379 if ((total >= 0) && (pos >= total))
1381 element_size = total - element_start;
1853 long long total, avail;
1855 const int status = m_pReader->Length(&total, &avail);
1860 assert((total < 0) || (avail <= total));
1864 if ((total < 0) || (pos >= total))
1944 if ((total >= 0) && (element_stop > total))
2913 long long total, avail;
2915 const int status = m_pReader->Length(&total, &avail);
2920 if (total < 0)
2923 return (m_pos >= total);
3162 long long total, avail;
3164 long status = m_pReader->Length(&total, &avail);
3169 assert((total < 0) || (avail <= total));
3268 long long total, avail;
3270 long status = m_pReader->Length(&total, &avail);
3275 assert((total < 0) || (avail <= total));
3287 if ((total >= 0) && (pos >= total))
3493 if ((total >= 0) && (pos >= total))
6037 long long total, avail;
6039 const int status = pReader->Length(&total, &avail);
6044 assert((total < 0) || (avail <= total));
6045 assert((total < 0) || (m_pos <= total)); // TODO: verify this
6285 long long total, avail;
6287 status = pReader->Length(&total, &avail);
6292 assert((total < 0) || (avail <= total));
6300 if ((total >= 0) && (pos >= total)) {
6401 } else if ((total >= 0) && (block_stop > total)) {
6402 m_element_size = total - m_element_start;
6403 pos = total;
6438 if ((total >= 0) && (start > total))
6446 if ((total >= 0) && (stop > total))
6460 long long total, avail;
6462 long status = pReader->Length(&total, &avail);
6467 assert((total < 0) || (avail <= total));
6589 long long total, avail;
6591 long status = pReader->Length(&total, &avail);
6596 assert((total < 0) || (avail <= total));
6598 if ((total >= 0) && (payload_stop > total))
6998 long long total, avail;
7000 long status = pReader->Length(&total, &avail);
7005 assert((total < 0) || (avail <= total));
7009 if ((total >= 0) && (pos >= total))
7034 if ((total >= 0) && ((pos + len) > total))
7068 if ((total >= 0) && ((pos + len) > total))
7095 if ((total >= 0) && (cluster_stop > total))