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:alpha256
(Results
1 - 3
of
3
) sorted by relevance
/third_party/skia/src/core/
H
A
D
SkBlitRow_D32.cpp
199
unsigned
alpha256
= SkAlpha255To256(alpha);
in blit_row_s32a_blend()
210
dst_scale = SkAlphaMulInv256(dst_scale,
alpha256
);
in blit_row_s32a_blend()
213
vsrc_wide = vmulq_n_u16(vsrc_wide,
alpha256
);
in blit_row_s32a_blend()
242
vsrc_scale = vdupq_n_u16(
alpha256
);
in blit_row_s32a_blend()
250
// This is valid if
alpha256
<= 255.
in blit_row_s32a_blend()
/third_party/skia/include/core/
H
A
D
SkColorPriv.h
30
(i.e. return (value *
alpha256
) >> 8)
32
#define SkAlphaMul(value,
alpha256
) (((value) * (
alpha256
)) >> 8)
/third_party/skia/include/private/
H
A
D
SkColorData.h
126
/** Calculates 256 - (value *
alpha256
) / 255 in range [0,256],
127
* for [0,255] value and [0,256]
alpha256
.
129
static inline U16CPU SkAlphaMulInv256(U16CPU value, U16CPU
alpha256
) {
in SkAlphaMulInv256()
argument
130
unsigned prod = 0xFFFF - value *
alpha256
;
in SkAlphaMulInv256()
Completed in 3 milliseconds