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:bit_pos_
(Results
1 - 7
of
7
) sorted by relevance
/third_party/node/deps/brotli/c/dec/
H
A
D
bit_reader.h
38
uint32_t
bit_pos_
; /* current bit-reading position in val_ */
member
45
uint32_t
bit_pos_
;
member
69
to->
bit_pos_
= from->
bit_pos_
;
in BrotliBitReaderSaveState()
77
to->
bit_pos_
= from->
bit_pos_
;
in BrotliBitReaderRestoreState()
84
return (BROTLI_64_BITS ? 64 : 32) - br->
bit_pos_
;
in BrotliGetAvailableBits()
111
if (br->
bit_pos_
>= 56) {
in BrotliFillBitWindow()
113
br->
bit_pos_
^= 56; /* here same as -= 56 because of the if condition */
in BrotliFillBitWindow()
120
if (br->
bit_pos_
>
in BrotliFillBitWindow()
[all...]
H
A
D
bit_reader.c
31
br->
bit_pos_
= sizeof(br->val_) << 3;
in BrotliInitBitReader()
/third_party/skia/third_party/externals/brotli/c/dec/
H
A
D
bit_reader.h
38
uint32_t
bit_pos_
; /* current bit-reading position in val_ */
member
45
uint32_t
bit_pos_
;
member
69
to->
bit_pos_
= from->
bit_pos_
;
in BrotliBitReaderSaveState()
77
to->
bit_pos_
= from->
bit_pos_
;
in BrotliBitReaderRestoreState()
84
return (BROTLI_64_BITS ? 64 : 32) - br->
bit_pos_
;
in BrotliGetAvailableBits()
111
if (br->
bit_pos_
>= 56) {
in BrotliFillBitWindow()
113
br->
bit_pos_
^= 56; /* here same as -= 56 because of the if condition */
in BrotliFillBitWindow()
120
if (br->
bit_pos_
>
in BrotliFillBitWindow()
[all...]
H
A
D
bit_reader.c
31
br->
bit_pos_
= sizeof(br->val_) << 3;
in BrotliInitBitReader()
/third_party/skia/third_party/externals/libwebp/src/utils/
H
A
D
bit_reader_utils.h
145
int
bit_pos_
; // current bit-reading position in val_
member
165
return (uint32_t)(br->val_ >> (br->
bit_pos_
& (VP8L_LBITS - 1)));
in VP8LPrefetchBits()
172
return br->eos_ || ((br->pos_ == br->len_) && (br->
bit_pos_
> VP8L_LBITS));
in VP8LIsEndOfStream()
180
br->
bit_pos_
= val;
in VP8LSetBitPos()
187
if (br->
bit_pos_
>= VP8L_WBITS) VP8LDoFillBitWindow(br);
in VP8LFillBitWindow()
H
A
D
bit_reader_utils.c
150
br->
bit_pos_
= 0;
in VP8LInitBitReader()
177
br->
bit_pos_
= 0; // To avoid undefined behaviour with shifts.
in VP8LSetEndOfStream()
182
while (br->
bit_pos_
>= 8 && br->pos_ < br->len_) {
in ShiftBytes()
186
br->
bit_pos_
-= 8;
in ShiftBytes()
194
assert(br->
bit_pos_
>= VP8L_WBITS);
in VP8LDoFillBitWindow()
198
br->
bit_pos_
-= VP8L_WBITS;
in VP8LDoFillBitWindow()
213
const int new_bits = br->
bit_pos_
+ n_bits;
in VP8LReadBits()
214
br->
bit_pos_
= new_bits;
in VP8LReadBits()
/third_party/skia/third_party/externals/libwebp/src/dec/
H
A
D
vp8l_dec.c
190
VP8LSetBitPos(br, br->
bit_pos_
+ HUFFMAN_TABLE_BITS);
in ReadSymbol()
195
VP8LSetBitPos(br, br->
bit_pos_
+ table->bits);
in ReadSymbol()
209
VP8LSetBitPos(br, br->
bit_pos_
+ code.bits);
in ReadPackedSymbols()
213
VP8LSetBitPos(br, br->
bit_pos_
+ code.bits - BITS_SPECIAL_MARKER);
in ReadPackedSymbols()
281
VP8LSetBitPos(br, br->
bit_pos_
+ p->bits);
in ReadHuffmanCodeLengths()
Completed in 6 milliseconds