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:FIXED_Q_NUM
(Results
1 - 2
of
2
) sorted by relevance
/foundation/arkui/ui_lite/frameworks/draw/
H
A
D
draw_utils.h
43
#define
FIXED_Q_NUM
20
macro
45
#define FO_TRANS_INTEGER_TO_FIXED(f) ((static_cast<int64_t>(f)) <<
FIXED_Q_NUM
)
46
#define FO_DIV(n1, n2) ((static_cast<int64_t>(n1) <<
FIXED_Q_NUM
) / (n2))
47
#define FO_TO_INTEGER(n) ((n) >= 0 ? ((n) >>
FIXED_Q_NUM
) : (((n) >>
FIXED_Q_NUM
) + 1))
49
#define FO_MUL(n1, n2) ((static_cast<int64_t>(n1) * (n2)) >>
FIXED_Q_NUM
)
H
A
D
draw_utils.cpp
899
result.red = static_cast<uint8_t>(outR >>
FIXED_Q_NUM
);
900
result.green = static_cast<uint8_t>(outG >>
FIXED_Q_NUM
);
901
result.blue = static_cast<uint8_t>(outB >>
FIXED_Q_NUM
);
1019
result.red = static_cast<uint8_t>(outR >>
FIXED_Q_NUM
);
1020
result.green = static_cast<uint8_t>(outG >>
FIXED_Q_NUM
);
1021
result.blue = static_cast<uint8_t>(outB >>
FIXED_Q_NUM
);
1170
result.red = static_cast<uint8_t>(outR >>
FIXED_Q_NUM
);
1171
result.green = static_cast<uint8_t>(outG >>
FIXED_Q_NUM
);
1172
result.blue = static_cast<uint8_t>(outB >>
FIXED_Q_NUM
);
1173
result.alpha = static_cast<uint8_t>(outA >>
FIXED_Q_NUM
);
[all...]
Completed in 6 milliseconds