OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:alpha_size
(Results
1 - 5
of
5
) sorted by null
/external/webp/src/dec/
alpha_dec.c
153
const uint64_t
alpha_size
= (uint64_t)stride * height;
local
156
(uint8_t*)WebPSafeMalloc(
alpha_size
, sizeof(*dec->alpha_plane_));
frame_dec.c
699
//
alpha_size
is the only one that scales as width x height.
700
const uint64_t
alpha_size
= (dec->alpha_data_ != NULL) ?
local
705
+ cache_size +
alpha_size
+ WEBP_ALIGN_CST;
770
dec->alpha_plane_ =
alpha_size
? mem : NULL;
771
mem +=
alpha_size
;
/external/webp/src/enc/
alpha_enc.c
368
size_t
alpha_size
= 0;
local
375
filter, effort_level, &alpha_data, &
alpha_size
)) {
378
if (
alpha_size
!= (uint32_t)
alpha_size
) { // Sanity check.
382
enc->alpha_data_size_ = (uint32_t)
alpha_size
;
/external/webp/src/mux/
muxread.c
396
const size_t
alpha_size
= need_vp8x ? ChunkDiskSize(wpi->alpha_) : 0;
local
398
const size_t size = RIFF_HEADER_SIZE + vp8x_size +
alpha_size
+
/external/deqp/external/openglcts/modules/gl/
gl3cTextureSizePromotion.cpp
513
glw::GLint
alpha_size
= 0;
local
531
gl.getTexLevelParameteriv(target, 0, GL_TEXTURE_ALPHA_SIZE, &
alpha_size
);
549
is_ok = is_ok && (
alpha_size
>= descriptor.min_alpha_size);
572
<< ", queried alpha size = " <<
alpha_size
<< ", queried depth size = " << depth_size
[
all
...]
Completed in 401 milliseconds