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:prefix_code
(Results
1 - 3
of
3
) sorted by relevance
/third_party/skia/third_party/externals/libwebp/src/dsp/
H
A
D
lossless_common.h
129
const VP8LPrefixCode
prefix_code
= kPrefixEncodeCode[distance];
in VP8LPrefixEncodeBits()
local
130
*code =
prefix_code
.code_;
in VP8LPrefixEncodeBits()
131
*extra_bits =
prefix_code
.extra_bits_;
in VP8LPrefixEncodeBits()
141
const VP8LPrefixCode
prefix_code
= kPrefixEncodeCode[distance];
in VP8LPrefixEncode()
local
142
*code =
prefix_code
.code_;
in VP8LPrefixEncode()
143
*extra_bits =
prefix_code
.extra_bits_;
in VP8LPrefixEncode()
/third_party/libphonenumber/tools/cpp/src/cpp-build/
H
A
D
generate_geocoding_data.cc
179
int32
prefix_code
;
in ParsePrefixes()
local
204
if (!StrToInt(prefix, &
prefix_code
)) {
in ParsePrefixes()
207
(*prefixes)[
prefix_code
] = string(sep + 1, end);
in ParsePrefixes()
/third_party/ffmpeg/libavcodec/
H
A
D
webp.c
653
int
prefix_code
, length, distance, ref_x, ref_y;
in decode_entropy_coded_image()
local
656
prefix_code
= v - NUM_LITERAL_CODES;
in decode_entropy_coded_image()
657
if (
prefix_code
< 4) {
in decode_entropy_coded_image()
658
length =
prefix_code
+ 1;
in decode_entropy_coded_image()
660
int extra_bits = (
prefix_code
- 2) >> 1;
in decode_entropy_coded_image()
661
int offset = 2 + (
prefix_code
& 1) << extra_bits;
in decode_entropy_coded_image()
664
prefix_code
= huff_reader_get_symbol(&hg[HUFF_IDX_DIST], &s->gb);
in decode_entropy_coded_image()
665
if (
prefix_code
> 39U) {
in decode_entropy_coded_image()
667
"distance prefix code too large: %d\n",
prefix_code
);
in decode_entropy_coded_image()
670
if (
prefix_code
<
in decode_entropy_coded_image()
[all...]
Completed in 6 milliseconds