OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:_bufferBase
(Results
1 - 3
of
3
) sorted by null
/external/lzma/CPP/7zip/Common/
InBuffer.h
21
Byte *
_bufferBase
;
77
UInt64 GetProcessedSize() const { return _processedSize + (_buffer -
_bufferBase
); }
/external/lzma/CS/7zip/Compress/LZ/
LzInWindow.cs
9
public Byte[]
_bufferBase
= null; // pointer to buffer with data
35
_bufferBase
[i] =
_bufferBase
[offset + i];
48
int numReadBytes = _stream.Read(
_bufferBase
, (int)(_bufferOffset + _streamPos), size);
65
void Free() {
_bufferBase
= null; }
72
if (
_bufferBase
== null || _blockSize != blockSize)
76
_bufferBase
= new Byte[_blockSize];
105
public Byte GetIndexByte(Int32 index) { return
_bufferBase
[_bufferOffset + _pos + index]; }
118
for (i = 0; i < limit &&
_bufferBase
[pby + i] ==
_bufferBase
[pby + i - distance]; i++);
[
all
...]
/external/lzma/Java/SevenZip/Compression/LZ/
InWindow.java
9
public byte[]
_bufferBase
; // pointer to buffer with data
35
_bufferBase
[i] =
_bufferBase
[offset + i];
48
int numReadBytes = _stream.read(
_bufferBase
, _bufferOffset + _streamPos, size);
65
void Free() {
_bufferBase
= null; }
72
if (
_bufferBase
== null || _blockSize != blockSize)
76
_bufferBase
= new byte[_blockSize];
105
public byte GetIndexByte(int index) { return
_bufferBase
[_bufferOffset + _pos + index]; }
118
for (i = 0; i < limit &&
_bufferBase
[pby + i] ==
_bufferBase
[pby + i - distance]; i++);
[
all
...]
Completed in 136 milliseconds