Home
last modified time | relevance | path

Searched refs:WEBP_ALIGN_CST (Results 1 – 9 of 9) sorted by relevance

/external/webp/src/utils/
Dutils.h62 #define WEBP_ALIGN_CST 31 macro
63 #define WEBP_ALIGN(PTR) (((uintptr_t)(PTR) + WEBP_ALIGN_CST) & ~WEBP_ALIGN_CST)
/external/webp/src/enc/
Dwebp_enc.c155 const size_t nz_size = (mb_w + 1) * sizeof(*enc->nz_) + WEBP_ALIGN_CST; in InitVP8Encoder()
159 + WEBP_ALIGN_CST; // align all in InitVP8Encoder()
161 config->autofilter ? sizeof(*enc->lf_stats_) + WEBP_ALIGN_CST : 0; in InitVP8Encoder()
167 + WEBP_ALIGN_CST // cache alignment in InitVP8Encoder()
186 sizeof(*enc) + WEBP_ALIGN_CST, info_size, in InitVP8Encoder()
Dvp8i_enc.h262 uint8_t yuv_left_mem_[17 + 16 + 16 + 8 + WEBP_ALIGN_CST];
264 uint8_t yuv_mem_[3 * YUV_SIZE_ENC + PRED_SIZE_ENC + WEBP_ALIGN_CST];
Dpicture_enc.c79 memory = WebPSafeMalloc(argb_size + WEBP_ALIGN_CST, sizeof(*picture->argb)); in WebPPictureAllocARGB()
Danalysis_enc.c442 uint8_t tmp[32 + WEBP_ALIGN_CST]; in DoSegmentsJob()
Dhistogram_enc.c143 histo_size + WEBP_ALIGN_CST)); in HistogramSetTotalSize()
Dvp8l_enc.c1220 (WEBP_ALIGN_CST + sizeof(uint32_t) - 1) / sizeof(uint32_t); in AllocateTransformBuffer()
/external/webp/src/dec/
Dio_dec.c317 rescaler_size = num_rescalers * sizeof(*p->scaler_y) + WEBP_ALIGN_CST; in InitYUVRescaler()
502 rescaler_size = num_rescalers * sizeof(*p->scaler_y) + WEBP_ALIGN_CST; in InitRGBRescaler()
Dframe_dec.c705 + cache_size + alpha_size + WEBP_ALIGN_CST; in AllocateMemory()
743 assert((yuv_size & WEBP_ALIGN_CST) == 0); in AllocateMemory()