HomeSort by relevance Sort by last modified time
    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 708 // alpha_size is the only one that scales as width x height.
709 const uint64_t alpha_size = (dec->alpha_data_ != NULL) ? local
714 + cache_size + alpha_size + WEBP_ALIGN_CST;
779 dec->alpha_plane_ = alpha_size ? mem : NULL;
780 mem += alpha_size;
  /external/webp/src/enc/
alpha_enc.c 367 size_t alpha_size = 0; local
374 filter, effort_level, &alpha_data, &alpha_size)) {
377 if (alpha_size != (uint32_t)alpha_size) { // Sanity check.
381 enc->alpha_data_size_ = (uint32_t)alpha_size;
  /external/webp/src/mux/
muxread.c 381 const size_t alpha_size = need_vp8x ? ChunkDiskSize(wpi->alpha_) : 0; local
383 const size_t size = RIFF_HEADER_SIZE + vp8x_size + alpha_size +
  /external/deqp/external/openglcts/modules/gl/
gl3cTextureSizePromotion.cpp 495 glw::GLint alpha_size = 0; local
513 gl.getTexLevelParameteriv(target, 0, GL_TEXTURE_ALPHA_SIZE, &alpha_size);
531 is_ok = is_ok && (alpha_size >= descriptor.min_alpha_size);
554 << ", queried alpha size = " << alpha_size << ", queried depth size = " << depth_size
    [all...]

Completed in 243 milliseconds