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:pInLimit
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/lib/lz4/
H
A
D
lz4defs.h
196
const BYTE *
pInLimit
)
in LZ4_count()
200
while (likely(pIn <
pInLimit
- (STEPSIZE - 1))) {
in LZ4_count()
215
if ((pIn < (
pInLimit
- 3))
in LZ4_count()
222
if ((pIn < (
pInLimit
- 1))
in LZ4_count()
228
if ((pIn <
pInLimit
) && (*pMatch == *pIn))
in LZ4_count()
193
LZ4_count( const BYTE *pIn, const BYTE *pMatch, const BYTE *
pInLimit
)
LZ4_count()
argument
/kernel/linux/linux-6.6/lib/lz4/
H
A
D
lz4defs.h
198
const BYTE *
pInLimit
)
in LZ4_count()
202
while (likely(pIn <
pInLimit
- (STEPSIZE - 1))) {
in LZ4_count()
217
if ((pIn < (
pInLimit
- 3))
in LZ4_count()
224
if ((pIn < (
pInLimit
- 1))
in LZ4_count()
230
if ((pIn <
pInLimit
) && (*pMatch == *pIn))
in LZ4_count()
195
LZ4_count( const BYTE *pIn, const BYTE *pMatch, const BYTE *
pInLimit
)
LZ4_count()
argument
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_compress_internal.h
741
MEM_STATIC size_t ZSTD_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* const
pInLimit
)
in ZSTD_count()
argument
744
const BYTE* const pInLoopLimit =
pInLimit
- (sizeof(size_t)-1);
in ZSTD_count()
756
if (MEM_64bits() && (pIn<(
pInLimit
-3)) && (MEM_read32(pMatch) == MEM_read32(pIn))) { pIn+=4; pMatch+=4; }
in ZSTD_count()
757
if ((pIn<(
pInLimit
-1)) && (MEM_read16(pMatch) == MEM_read16(pIn))) { pIn+=2; pMatch+=2; }
in ZSTD_count()
758
if ((pIn<
pInLimit
) && (*pMatch == *pIn)) pIn++;
in ZSTD_count()
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
compress.c
907
static size_t ZSTD_count(const BYTE *pIn, const BYTE *pMatch, const BYTE *const
pInLimit
)
in ZSTD_count()
argument
910
const BYTE *const pInLoopLimit =
pInLimit
- (sizeof(size_t) - 1);
in ZSTD_count()
923
if ((pIn < (
pInLimit
- 3)) && (ZSTD_read32(pMatch) == ZSTD_read32(pIn))) {
in ZSTD_count()
927
if ((pIn < (
pInLimit
- 1)) && (ZSTD_read16(pMatch) == ZSTD_read16(pIn))) {
in ZSTD_count()
931
if ((pIn <
pInLimit
) && (*pMatch == *pIn))
in ZSTD_count()
Completed in 11 milliseconds