Searched defs:right_plus_one (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/extractors/mp4/
H A DSampleTable.cpp736 uint32_t right_plus_one = mNumSampleSizes; local
737 while (left < right_plus_one) {
738 uint32_t center = left + (right_plus_one - left) / 2;
743 right_plus_one = center;
818 uint32_t right_plus_one = mNumSyncSamples; local
819 while (left < right_plus_one) {
820 uint32_t center = left + (right_plus_one - left) / 2;
824 right_plus_one = center;
/frameworks/av/media/extractors/ogg/
H A DOggExtractor.cpp436 size_t right_plus_one = mTableOfContents.size(); local
437 while (left < right_plus_one) {
438 size_t center = left + (right_plus_one - left) / 2;
443 right_plus_one = center;

Completed in 42 milliseconds