Home | History | Annotate | Download | only in Compress

Lines Matching defs:bufferPos

102   UInt32 bufferPos = 0;

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