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:FAST_DIV255
(Results
1 - 4
of
4
) sorted by relevance
/third_party/ffmpeg/libavfilter/
H
A
D
vf_overlay.c
337
#define
FAST_DIV255
(x) ((((x) + 128) * 257) >> 16)
macro
409
d[dr] = is_straight ?
FAST_DIV255
(d[dr] * (255 - alpha) + S[sr] * alpha) :
in blend_slice_packed_rgb()
410
FFMIN(
FAST_DIV255
(d[dr] * (255 - alpha)) + S[sr], 255);
in blend_slice_packed_rgb()
411
d[dg] = is_straight ?
FAST_DIV255
(d[dg] * (255 - alpha) + S[sg] * alpha) :
in blend_slice_packed_rgb()
412
FFMIN(
FAST_DIV255
(d[dg] * (255 - alpha)) + S[sg], 255);
in blend_slice_packed_rgb()
413
d[db] = is_straight ?
FAST_DIV255
(d[db] * (255 - alpha) + S[sb] * alpha) :
in blend_slice_packed_rgb()
414
FFMIN(
FAST_DIV255
(d[db] * (255 - alpha)) + S[sb], 255);
in blend_slice_packed_rgb()
425
d[da] +=
FAST_DIV255
((255 - d[da]) * S[sa]);
in blend_slice_packed_rgb()
535
*d =
FAST_DIV255
(*d * (255 - alpha) + *s * alpha); \
545
*d = av_clip(
FAST_DIV255
((*
[all...]
H
A
D
vsrc_life.c
370
#define
FAST_DIV255
(x) ((((x) + 128) * 257) >> 16)
macro
387
*p++ =
FAST_DIV255
((c2[0] << 8) + ((int)c1[0] - (int)c2[0]) * death_age);
in fill_picture_rgb()
388
*p++ =
FAST_DIV255
((c2[1] << 8) + ((int)c1[1] - (int)c2[1]) * death_age);
in fill_picture_rgb()
389
*p++ =
FAST_DIV255
((c2[2] << 8) + ((int)c1[2] - (int)c2[2]) * death_age);
in fill_picture_rgb()
H
A
D
vf_huesaturation.c
82
#define
FAST_DIV255
(x) ((((x) + 128) * 257) >> 16)
macro
86
return v0 +
FAST_DIV255
((v1 - v0) * f);
in lerpi8()
/third_party/ffmpeg/libavcodec/
H
A
D
pngdec.c
1078
#define
FAST_DIV255
(x) ((((x) + 128) * 257) >> 16)
macro
1147
output_alpha = foreground_alpha +
FAST_DIV255
((255 - foreground_alpha) * background_alpha);
in handle_p_frame_apng()
1155
output[b] =
FAST_DIV255
(foreground_alpha * foreground[b] + (255 - foreground_alpha) * background[b]);
in handle_p_frame_apng()
Completed in 7 milliseconds