Searched defs:alpha_size (Results 1 - 4 of 4) sorted by relevance

/external/libxslt/libxslt/
H A Dnumbers.c238 double alpha_size = (double)(sizeof(alpha_upper_list) - 1); local
247 *(--pointer) = alpha_list[((int)fmod(number, alpha_size))];
248 number /= alpha_size;
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_sysvideo.h298 int alpha_size; member in struct:SDL_VideoDevice::__anon10545
/external/webp/src/dec/
H A Dframe.c426 // alpha_size is the only one that scales as width x height.
427 const uint64_t alpha_size = (dec->alpha_data_ != NULL) ? local
432 + cache_size + alpha_size + ALIGN_MASK;
497 dec->alpha_plane_ = alpha_size ? (uint8_t*)mem : NULL;
498 mem += alpha_size;
H A Dwebp.c146 // If an alpha chunk is found, *alpha_data and *alpha_size are set
152 size_t* const alpha_size) {
164 assert(alpha_size != NULL);
166 *alpha_size = 0;
195 *alpha_size = chunk_size;
148 ParseOptionalChunks(const uint8_t** const data, size_t* const data_size, size_t const riff_size, const uint8_t** const alpha_data, size_t* const alpha_size) argument

Completed in 572 milliseconds