Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:_bufferBase
(Results
1 - 4
of
4
) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZ/
H
A
D
BinTree.java
141
int temp = CrcTable[
_bufferBase
[cur] & 0xFF] ^ (
_bufferBase
[cur + 1] & 0xFF);
in GetMatches()
143
temp ^= ((int)(
_bufferBase
[cur + 2] & 0xFF) << 8);
in GetMatches()
145
hashValue = (temp ^ (CrcTable[
_bufferBase
[cur + 3] & 0xFF] << 5)) & _hashMask;
in GetMatches()
148
hashValue = ((
_bufferBase
[cur] & 0xFF) ^ ((int)(
_bufferBase
[cur + 1] & 0xFF) << 8));
in GetMatches()
158
if (
_bufferBase
[_bufferOffset + curMatch2] ==
_bufferBase
[cur])
in GetMatches()
164
if (
_bufferBase
[_bufferOffset + curMatch3] ==
_bufferBase
[cu
in GetMatches()
[all...]
H
A
D
InWindow.java
9
public byte[]
_bufferBase
; // pointer to buffer with data
field in InWindow
35
_bufferBase
[i] =
_bufferBase
[offset + i];
in MoveBlock()
48
int numReadBytes = _stream.read(
_bufferBase
, _bufferOffset + _streamPos, size);
in ReadBlock()
65
void Free() {
_bufferBase
= null; }
in Free()
72
if (
_bufferBase
== null || _blockSize != blockSize)
in Create()
76
_bufferBase
= new byte[_blockSize];
in Create()
105
public byte GetIndexByte(int index) { return
_bufferBase
[_bufferOffset + _pos + index]; }
in GetIndexByte()
118
for (i = 0; i < limit &&
_bufferBase
[pby + i] ==
_bufferBase
[pb
in GetMatchLen()
[all...]
/third_party/lzma/CS/7zip/Compress/LZ/
H
A
D
LzBinTree.cs
141
UInt32 temp = CRC.Table[
_bufferBase
[cur]] ^
_bufferBase
[cur + 1];
in GetMatches()
143
temp ^= ((UInt32)(
_bufferBase
[cur + 2]) << 8);
in GetMatches()
145
hashValue = (temp ^ (CRC.Table[
_bufferBase
[cur + 3]] << 5)) & _hashMask;
in GetMatches()
148
hashValue =
_bufferBase
[cur] ^ ((UInt32)(
_bufferBase
[cur + 1]) << 8);
in GetMatches()
158
if (
_bufferBase
[_bufferOffset + curMatch2] ==
_bufferBase
[cur])
in GetMatches()
164
if (
_bufferBase
[_bufferOffset + curMatch3] ==
_bufferBase
[cu
in GetMatches()
[all...]
H
A
D
LzInWindow.cs
9
public Byte[]
_bufferBase
= null; // pointer to buffer with data
field in SevenZip.Compression.LZ.InWindow
35
_bufferBase
[i] =
_bufferBase
[offset + i];
in MoveBlock()
48
int numReadBytes = _stream.Read(
_bufferBase
, (int)(_bufferOffset + _streamPos), size);
in ReadBlock()
65
void Free() {
_bufferBase
= null; }
in Free()
72
if (
_bufferBase
== null || _blockSize != blockSize)
in Create()
76
_bufferBase
= new Byte[_blockSize];
in Create()
105
public Byte GetIndexByte(Int32 index) { return
_bufferBase
[_bufferOffset + _pos + index]; }
in GetIndexByte()
118
for (i = 0; i < limit &&
_bufferBase
[pby + i] ==
_bufferBase
[pb
in GetMatchLen()
[all...]
Completed in 3 milliseconds