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:nextSrc
(Results
1 - 8
of
8
) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_compress_internal.h
185
BYTE const*
nextSrc
; /* next block here to continue on current prefix */
member
900
size_t const endT = (size_t)(window->
nextSrc
- window->base);
in ZSTD_window_clear()
911
(window.
nextSrc
- window.base) == ZSTD_WINDOW_START_INDEX;
in ZSTD_window_isEmpty()
1191
window->
nextSrc
= window->base + ZSTD_WINDOW_START_INDEX; /* see issue #1241 */
in ZSTD_window_init()
1214
if (src != window->
nextSrc
|| forceNonContiguous) {
1216
size_t const distanceFromBase = (size_t)(window->
nextSrc
- window->base);
1227
window->
nextSrc
= ip + srcSize;
H
A
D
zstd_lazy.c
173
const BYTE* const dictEnd = dms->window.
nextSrc
;
in ZSTD_DUBT_findBetterDictMatch()
174
U32 const dictHighLimit = (U32)(dms->window.
nextSrc
- dms->window.base);
in ZSTD_DUBT_findBetterDictMatch()
523
const BYTE* const ddsEnd = dms->window.
nextSrc
;
in ZSTD_dedicatedDictSearch_lazy_search()
724
const BYTE* const dmsEnd = dms->window.
nextSrc
;
in ZSTD_HcFindBestMatch()
1253
const BYTE* const dmsEnd = dms->window.
nextSrc
;
in ZSTD_RowFindBestMatch()
1503
const BYTE* const dictEnd = isDxS ? dms->window.
nextSrc
: NULL;
in ZSTD_compressBlock_lazy_generic()
H
A
D
zstd_ldm.c
521
assert(ldmState->window.
nextSrc
>= (BYTE const*)src + srcSize);
in ZSTD_ldm_generateSequences()
H
A
D
zstd_fast.c
398
const BYTE* const dictEnd = dms->window.
nextSrc
;
in ZSTD_compressBlock_fast_dictMatchState_generic()
H
A
D
zstd_double_fast.c
287
const BYTE* const dictEnd = dms->window.
nextSrc
;
in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
H
A
D
zstd_opt.c
597
const BYTE* const dmsEnd = dictMode == ZSTD_dictMatchState ? dms->window.
nextSrc
: NULL;
in ZSTD_insertBtAndGetAllMatches()
H
A
D
zstd_compress.c
1601
* Requires
nextSrc
and base to be set (can be NULL).
1729
return (size_t)(w.
nextSrc
- w.base) > (ZSTD_CURRENT_MAX - ZSTD_INDEXOVERFLOW_MARGIN);
in ZSTD_indexTooCloseToMax()
1992
{ const U32 cdictEnd = (U32)( cdict->matchState.window.
nextSrc
in ZSTD_resetCCtx_byAttachingCDict()
2005
cctx->blockState.matchState.window.
nextSrc
=
in ZSTD_resetCCtx_byAttachingCDict()
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
compress.c
54
const BYTE *
nextSrc
; /* next block here to continue on curr prefix */
member
219
U32 const end = (U32)(cctx->
nextSrc
- cctx->base);
in ZSTD_continueCCtx()
292
zc->
nextSrc
= NULL;
in ZSTD_resetCCtx_advanced()
372
dstCCtx->
nextSrc
= srcCCtx->
nextSrc
;
in ZSTD_copyCCtx()
2508
if (src != cctx->
nextSrc
) {
in ZSTD_compressContinue_internal()
2510
ptrdiff_t const delta = cctx->
nextSrc
- ip;
in ZSTD_compressContinue_internal()
2512
cctx->dictLimit = (U32)(cctx->
nextSrc
- cctx->base);
in ZSTD_compressContinue_internal()
2527
cctx->
nextSrc
= ip + srcSize;
in ZSTD_compressContinue_internal()
2564
zc->dictLimit = (U32)(zc->
nextSrc
in ZSTD_loadDictionaryContent()
[all...]
Completed in 30 milliseconds