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:dictEnd
(Results
1 - 3
of
3
) sorted by relevance
/third_party/lz4/lib/
H
A
D
lz4.c
939
const BYTE* const
dictEnd
= dictionary ? dictionary + dictSize : dictionary;
in LZ4_compress_generic_validated()
local
1141
const BYTE* limit = ip + (
dictEnd
-match);
in LZ4_compress_generic_validated()
1142
assert(
dictEnd
> match);
in LZ4_compress_generic_validated()
1546
const BYTE* const
dictEnd
= p + dictSize;
in LZ4_loadDict()
local
1569
if ((
dictEnd
- p) > 64 KB) p =
dictEnd
- 64 KB;
in LZ4_loadDict()
1570
base =
dictEnd
- dict->currentOffset;
in LZ4_loadDict()
1572
dict->dictSize = (U32)(
dictEnd
- p);
in LZ4_loadDict()
1575
while (p <=
dictEnd
-HASH_UNIT) {
in LZ4_loadDict()
1618
const BYTE*
dictEnd
in LZ4_renormDictT()
local
1639
const char*
dictEnd
= streamPtr->dictSize ? (const char*)streamPtr->dictionary + streamPtr->dictSize : NULL;
LZ4_compress_fast_continue()
local
1859
const BYTE* const
dictEnd
= dictStart + dictSize;
LZ4_decompress_unsafe_generic()
local
1959
const BYTE* const
dictEnd
= (dictStart == NULL) ? NULL : dictStart + dictSize;
LZ4_decompress_generic()
local
[all...]
H
A
D
lz4hc.c
262
const BYTE* const
dictEnd
= dictStart + prefixIdx - dictIdx;
in LZ4HC_InsertAndGetWiderMatch()
local
357
const BYTE* const iLimit = extDict ?
dictEnd
: iHighLimit;
in LZ4HC_InsertAndGetWiderMatch()
370
backLength += LZ4HC_reverseCountPattern(
dictEnd
, dictStart, rotatedPattern);
in LZ4HC_InsertAndGetWiderMatch()
1138
const BYTE* const
dictEnd
= ctxPtr->dictStart + (ctxPtr->dictLimit - ctxPtr->lowLimit);
in LZ4_compressHC_continue_generic()
local
1139
if ((sourceEnd > dictBegin) && ((const BYTE*)src <
dictEnd
)) {
in LZ4_compressHC_continue_generic()
1140
if (sourceEnd >
dictEnd
) sourceEnd =
dictEnd
;
in LZ4_compressHC_continue_generic()
/third_party/lz4/programs/
H
A
D
lz4io.c
558
size_t
dictEnd
= 0;
in LZ4IO_createDict()
local
579
readSize = fread(circularBuf +
dictEnd
, 1, circularBufSize -
dictEnd
, dictFile);
in LZ4IO_createDict()
580
dictEnd
= (
dictEnd
+ readSize) % circularBufSize;
in LZ4IO_createDict()
590
dictStart = (circularBufSize +
dictEnd
- dictLen) % circularBufSize;
in LZ4IO_createDict()
Completed in 11 milliseconds