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:bitindex
(Results
1 - 7
of
7
) sorted by relevance
/third_party/lame/mpglib/
H
A
D
common.c
301
rval <<= mp->
bitindex
;
in getbits()
304
mp->
bitindex
+= number_of_bits;
in getbits()
308
mp->wordpointer += (mp->
bitindex
>> 3);
in getbits()
309
mp->
bitindex
&= 7;
in getbits()
323
rval <<= mp->
bitindex
;
in getbits_fast()
325
mp->
bitindex
+= number_of_bits;
in getbits_fast()
329
mp->wordpointer += (mp->
bitindex
>> 3);
in getbits_fast()
330
mp->
bitindex
&= 7;
in getbits_fast()
362
mp->
bitindex
= 0;
in set_pointer()
H
A
D
mpglib.h
101
int
bitindex
;
H
A
D
interface.c
80
mp->
bitindex
= 0;
in InitMP3()
526
mp->
bitindex
= 0;
in decodeMP3_clipchoice()
H
A
D
layer3.c
134
rval = *mp->wordpointer << mp->
bitindex
;
in get1bit()
136
mp->
bitindex
++;
in get1bit()
137
mp->wordpointer += (mp->
bitindex
>> 3);
in get1bit()
138
mp->
bitindex
&= 7;
in get1bit()
/third_party/qrcodegen/rust-no-heap/src/
H
A
D
lib.rs
409
let
bitindex
: usize = index & 7;
in get_module_bounded()
410
get_bit(self.modules[byteindex].into(),
bitindex
as u8)
in get_module_bounded()
429
let
bitindex
: usize = index & 7;
in set_module_bounded()
431
self.modules[byteindex] |= 1u8 <<
bitindex
;
in set_module_bounded()
433
self.modules[byteindex] &= !(1u8 <<
bitindex
);
in set_module_bounded()
/third_party/ffmpeg/libavcodec/
H
A
D
shorten.c
110
int
bitindex
;
member
576
skip_bits(&s->gb, s->
bitindex
);
in shorten_decode_frame()
775
s->
bitindex
= get_bits_count(&s->gb) - 8 * (get_bits_count(&s->gb) / 8);
in shorten_decode_frame()
/third_party/python/Python/
H
A
D
compile.c
159
is_bit_set_in_table(const uint32_t *table, int
bitindex
) {
in is_bit_set_in_table()
argument
162
* Word is indexed by (
bitindex
>>ln(size of int in bits)).
in is_bit_set_in_table()
163
* Bit within word is the low bits of
bitindex
.
in is_bit_set_in_table()
165
if (
bitindex
>= 0 &&
bitindex
< 256) {
in is_bit_set_in_table()
166
uint32_t word = table[
bitindex
>> LOG_BITS_PER_INT];
in is_bit_set_in_table()
167
return (word >> (
bitindex
& MASK_LOW_LOG_BITS)) & 1;
in is_bit_set_in_table()
Completed in 20 milliseconds