OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:argb_
(Results
1 - 6
of
6
) sorted by null
/external/opencv3/3rdparty/libwebp/enc/
vp8li.h
30
uint32_t*
argb_
; // Transformed argb image data.
member in struct:__anon21909
vp8l.c
645
const uint32_t* const argb = enc->
argb_
;
673
VP8LSubtractGreenFromBlueAndRed(enc->
argb_
, width * height);
686
VP8LResidualImage(width, height, pred_bits, enc->
argb_
, enc->argb_scratch_,
708
enc->
argb_
, enc->transform_data_);
805
enc->
argb_
= mem;
896
dst = enc->
argb_
;
966
free(enc->
argb_
);
[
all
...]
/external/webp/src/enc/
vp8li.h
31
uint32_t*
argb_
; // Transformed argb image data.
member in struct:__anon27471
vp8l.c
[
all
...]
delta_palettization.c
426
// replaces enc->
argb_
by a palettizable approximation of it,
431
uint32_t* dst = enc->
argb_
;
/external/webp/src/dsp/
lossless_enc_mips_dsp_r2.c
149
const uint32_t
argb_
= data[0];
local
150
const uint32_t green =
argb_
>> 8;
151
const uint32_t red =
argb_
>> 16;
152
uint32_t new_blue =
argb_
;
159
data[0] = (
argb_
& 0xff00ff00u) | (new_red << 16) | (new_blue);
Completed in 87 milliseconds