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:code_int
(Results
1 - 2
of
2
) sorted by relevance
/third_party/skia/third_party/externals/libjpeg-turbo/
H
A
D
wrgif.c
40
typedef INT16
code_int
; /* must hold -1 .. 2**MAX_LZW_BITS */
typedef
42
#define LZW_TABLE_SIZE ((
code_int
)1 << MAX_LZW_BITS)
48
#define MAXCODE(n_bits) (((
code_int
)1 << (n_bits)) - 1)
64
typedef int hash_entry; /* must hold (
code_int
<< 8) | byte */
78
code_int
maxcode; /* maximum code, given n_bits */
84
code_int
waiting_code; /* symbol not yet output; may be extendable */
88
code_int
ClearCode; /* clear code (doesn't change) */
89
code_int
EOFCode; /* EOF code (ditto) */
90
code_int
free_code; /* LZW: first not-yet-used symbol code */
91
code_int
code_counte
[all...]
/third_party/python/Modules/
H
A
D
errnomodule.c
50
_add_errcode(PyObject *module_dict, PyObject *error_dict, const char *name_str, int
code_int
)
in _add_errcode()
argument
57
PyObject *code = PyLong_FromLong(
code_int
);
in _add_errcode()
Completed in 4 milliseconds