OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Average2
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/libwebp/dsp/
lossless_neon.c
146
static WEBP_INLINE uint32_t
Average2
(const uint32_t* const a,
184
return
Average2
(&left, top - 1);
188
return
Average2
(&left, top + 0);
193
return
Average2
(top - 1, top + 0);
198
return
Average2
(top + 0, top + 1);
lossless_sse2.c
88
static WEBP_INLINE uint32_t
Average2
(uint32_t a0, uint32_t a1) {
122
const uint32_t pred =
Average2
(left, top[-1]);
126
const uint32_t pred =
Average2
(left, top[0]);
130
const uint32_t pred =
Average2
(top[-1], top[0]);
135
const uint32_t pred =
Average2
(top[0], top[1]);
lossless.c
400
static WEBP_INLINE uint32_t
Average2
(uint32_t a0, uint32_t a1) {
405
return
Average2
(
Average2
(a0, a2), a1);
410
return
Average2
(
Average2
(a0, a1),
Average2
(a2, a3));
445
const uint32_t ave =
Average2
(c0, c1);
506
const uint32_t pred =
Average2
(left, top[-1]);
510
const uint32_t pred =
Average2
(left, top[0]);
514
const uint32_t pred =
Average2
(top[-1], top[0])
[
all
...]
Completed in 53 milliseconds