Lines Matching refs:iend
406 const BYTE* const iend = ip + cSize;
407 while (ip < iend) {
445 const BYTE* const iend = (const BYTE*)compressedBuffer + cSize;
448 while (ip < iend) {
452 if (iSize > (size_t)(iend-ip)) iSize = (size_t)(iend-ip);
772 BYTE* iend = (BYTE*)compressedBuffer + cSize + 8;
781 while (ip < iend) {
785 if (iSize > (size_t)(iend-ip)) iSize = (size_t)(iend-ip);
798 iend = ip+8;
800 while (ip < iend) {
804 if (iSize > (size_t)(iend-ip)) iSize = (size_t)(iend-ip);
816 iend = ip+18;
817 while (ip < iend) {
820 if (iSize > (size_t)(iend-ip)) iSize = (size_t)(iend-ip);
882 const BYTE* const iend = ip + cSize;
893 assert(ip < iend);
894 while (ip < iend) {
898 size_t const iSizeMax = MIN(iSizeCand, (size_t)(iend-ip));
1062 const BYTE* const iend = srcStart + srcSize;
1073 while (ip < iend) {
1076 size_t iSize = MIN(sampleMax, (size_t)(iend-ip));
1122 } /* while (ip<iend) */