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:premultiplied
(Results
1 - 3
of
3
) sorted by relevance
/third_party/skia/docs/examples/
H
A
D
PreMultiplyARGB.cpp
8
SkPMColor
premultiplied
= SkPreMultiplyARGB(160, 128, 160, 192);
in REG_FIDDLE()
local
12
std::string str = "alpha=" + std::to_string(SkColorGetA(
premultiplied
));
in REG_FIDDLE()
13
str += " red=" + std::to_string(SkColorGetR(
premultiplied
));
in REG_FIDDLE()
14
str += " green=" + std::to_string(SkColorGetG(
premultiplied
));
in REG_FIDDLE()
15
str += " blue=" + std::to_string(SkColorGetB(
premultiplied
));
in REG_FIDDLE()
H
A
D
PreMultiplyColor.cpp
9
SkPMColor
premultiplied
= SkPreMultiplyColor(unpremultiplied);
in REG_FIDDLE()
local
17
str = "alpha=" + std::to_string(SkColorGetA(
premultiplied
));
in REG_FIDDLE()
18
str += " red=" + std::to_string(SkColorGetR(
premultiplied
));
in REG_FIDDLE()
19
str += " green=" + std::to_string(SkColorGetG(
premultiplied
));
in REG_FIDDLE()
20
str += " blue=" + std::to_string(SkColorGetB(
premultiplied
));
in REG_FIDDLE()
/third_party/rust/crates/aho-corasick/src/
H
A
D
dfa.rs
402
premultiplied
: bool,
492
assert!(!self.
premultiplied
, "can't swap states in
premultiplied
DFA");
in swap_states()
515
!self.
premultiplied
,
in shuffle_match_states()
516
"cannot shuffle match states of
premultiplied
DFA"
in shuffle_match_states()
566
if self.
premultiplied
|| self.state_count <= 1 {
in premultiply()
585
self.
premultiplied
= true;
in premultiply()
622
///
premultiplied
(which is enabled by default).
635
premultiplied
: false,
in build()
Completed in 3 milliseconds