Lines Matching refs:bufferPos
102 UInt32 bufferPos = 0; in CodeReal() local
115 UInt32 size = kBufferSize - (bufferPos + processedSize); in CodeReal()
119 RINOK(inStream->Read(_buffer + bufferPos + processedSize, size, &processedSizeLoc)); in CodeReal()
124 UInt32 endPos = bufferPos + processedSize; in CodeReal()
129 for (bufferPos = 0; bufferPos < endPos; bufferPos++) in CodeReal()
131 Byte b = _buffer[bufferPos]; in CodeReal()
151 bufferPos = 0; in CodeReal()
154 while(bufferPos <= limit) in CodeReal()
156 Byte b = _buffer[bufferPos]; in CodeReal()
160 bufferPos++; in CodeReal()
164 Byte nextByte = _buffer[bufferPos + 4]; in CodeReal()
167 (UInt32(_buffer[bufferPos + 3]) << 16) | in CodeReal()
168 (UInt32(_buffer[bufferPos + 2]) << 8) | in CodeReal()
169 (_buffer[bufferPos + 1]); in CodeReal()
170 UInt32 dest = (nowPos + bufferPos + 5) + src; in CodeReal()
175 UInt64 currentPos = (nowPos64 + bufferPos); in CodeReal()
218 bufferPos += 5; in CodeReal()
227 bufferPos++; in CodeReal()
231 nowPos += bufferPos; in CodeReal()
232 nowPos64 += bufferPos; in CodeReal()
247 while(bufferPos < endPos) in CodeReal()
248 _buffer[i++] = _buffer[bufferPos++]; in CodeReal()
249 bufferPos = i; in CodeReal()