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:value_bits
(Results
1 - 5
of
5
) sorted by relevance
/third_party/skia/third_party/externals/harfbuzz/src/
H
A
D
hb-cache.hh
35
template <unsigned int key_bits, unsigned int
value_bits
, unsigned int cache_bits>
39
static_assert ((key_bits +
value_bits
- cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
55
if ((key_bits +
value_bits
- cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1) ||
in get()
56
(v >>
value_bits
) != (key >> cache_bits))
in get()
58
*value = v & ((1u<<
value_bits
)-1);
in get()
64
if (unlikely ((key >> key_bits) || (value >>
value_bits
)))
in set()
67
unsigned int v = ((key>>cache_bits)<<
value_bits
) | value;
in set()
/third_party/node/deps/v8/src/codegen/loong64/
H
A
D
assembler-loong64.cc
848
int32_t
value_bits
) {
in GenImm()
849
DCHECK(
value_bits
== 6 ||
value_bits
== 12 ||
value_bits
== 14 ||
in GenImm()
850
value_bits
== 16);
in GenImm()
852
if (
value_bits
== 12) {
in GenImm()
854
} else if (
value_bits
== 14) {
in GenImm()
856
} else if (
value_bits
== 16) {
in GenImm()
847
GenImm(Opcode opcode, int32_t value, Register rj, Register rd, int32_t
value_bits
)
GenImm()
argument
H
A
D
assembler-loong64.h
982
int32_t
value_bits
); // 6 | 12 | 14 | 16
/third_party/ffmpeg/libavcodec/
H
A
D
atrac9tab.h
428
const int
value_bits
;
member
H
A
D
atrac9dec.c
428
coeffs[k] = sign_extend(val, huff->
value_bits
);
in read_coeffs_coarse()
429
val >>= huff->
value_bits
;
in read_coeffs_coarse()
Completed in 20 milliseconds