Lines Matching refs:ALIGN

69 	width64 = ALIGN(ctx->img_width, 64);
70 height32 = ALIGN(ctx->img_height, 32);
81 ALIGN(S5P_FIMV_TMV_BUFFER_SIZE_V8(mb_width, mb_height),
85 ALIGN(S5P_FIMV_TMV_BUFFER_SIZE_V6(mb_width, mb_height),
93 ALIGN(DIV_ROUND_UP(lcu_width * 32, 4), 16) * height32 + 128;
100 ALIGN(DIV_ROUND_UP(lcu_width *
104 ALIGN(ctx->img_width * 2, 128) * height32 + 64;
106 ALIGN(ctx->img_width * 2, 128) * height32 / 2 + 64;
117 ctx->luma_dpb_size = ALIGN(ctx->luma_dpb_size + 256, SZ_2K);
118 ctx->chroma_dpb_size = ALIGN(ctx->chroma_dpb_size + 256, SZ_2K);
124 ALIGN((mb_width * 16), 64)
125 * ALIGN((mb_height * 16), 32)
128 ALIGN((mb_width * 16), 64)
133 ALIGN((lcu_width * 32), 64)
134 * ALIGN((lcu_height * 32), 32)
137 ALIGN((lcu_width * 32), 64)
142 ctx->luma_dpb_size = ALIGN((mb_width * mb_height) *
145 ctx->chroma_dpb_size = ALIGN((mb_width * mb_height) *
150 ctx->me_buffer_size = ALIGN(S5P_FIMV_ME_BUFFER_SIZE_V8(
155 ctx->me_buffer_size = ALIGN(S5P_FIMV_ME_BUFFER_SIZE_V6(
182 ctx->scratch_buf_size = ALIGN(ctx->scratch_buf_size,
203 ctx->scratch_buf_size = ALIGN(ctx->scratch_buf_size,
217 ctx->scratch_buf_size = ALIGN(ctx->scratch_buf_size,
233 ctx->scratch_buf_size = ALIGN(ctx->scratch_buf_size,
250 ctx->scratch_buf_size = ALIGN(ctx->scratch_buf_size,
274 ALIGN(ENC_V100_H264_ME_SIZE(mb_width, mb_height), 16);
285 ctx->scratch_buf_size = ALIGN(ctx->scratch_buf_size,
302 ALIGN(ENC_V100_MPEG4_ME_SIZE(mb_width,
309 ctx->scratch_buf_size = ALIGN(ctx->scratch_buf_size,
325 ALIGN(ENC_V100_VP8_ME_SIZE(mb_width, mb_height),
337 ctx->scratch_buf_size = ALIGN(ctx->scratch_buf_size,
351 ALIGN(ENC_V100_HEVC_ME_SIZE(lcu_width, lcu_height), 16);
353 ctx->scratch_buf_size = ALIGN(ctx->scratch_buf_size, 256);
489 ctx->buf_width = ALIGN(ctx->img_width, S5P_FIMV_NV12MT_HALIGN_V6);
490 ctx->buf_height = ALIGN(ctx->img_height, S5P_FIMV_NV12MT_VALIGN_V6);
499 ctx->stride[0] = ALIGN(ctx->img_width, S5P_FIMV_NV12MT_HALIGN_V6);
500 ctx->stride[1] = ALIGN(ctx->img_width, S5P_FIMV_NV12MT_HALIGN_V6);
506 ctx->stride[0] = ALIGN(ctx->img_width, S5P_FIMV_NV12MT_HALIGN_V6);
507 ctx->stride[1] = ALIGN(ctx->img_width / 2, S5P_FIMV_NV12MT_HALIGN_V6);
508 ctx->stride[2] = ALIGN(ctx->img_width / 2, S5P_FIMV_NV12MT_HALIGN_V6);
533 ctx->mv_size = ALIGN(ctx->mv_size, 32);
550 ctx->stride[0] = ALIGN(ctx->img_width, S5P_FIMV_NV12M_HALIGN_V6);
551 ctx->stride[1] = ALIGN(ctx->img_width, S5P_FIMV_NV12M_HALIGN_V6);
552 ctx->luma_size = ctx->stride[0] * ALIGN(ctx->img_height, 16);
553 ctx->chroma_size = ctx->stride[0] * ALIGN(ctx->img_height / 2, 16);
557 ctx->stride[0] = ALIGN(ctx->img_width, S5P_FIMV_NV12M_HALIGN_V6);
558 ctx->stride[1] = ALIGN(ctx->img_width / 2, S5P_FIMV_NV12M_HALIGN_V6);
559 ctx->stride[2] = ALIGN(ctx->img_width / 2, S5P_FIMV_NV12M_HALIGN_V6);
560 ctx->luma_size = ctx->stride[0] * ALIGN(ctx->img_height, 16);
561 ctx->chroma_size = ctx->stride[1] * ALIGN(ctx->img_height / 2, 16);
562 ctx->chroma_size_1 = ctx->stride[2] * ALIGN(ctx->img_height / 2, 16);
569 ctx->buf_width = ALIGN(ctx->img_width, S5P_FIMV_NV12M_HALIGN_V6);
572 ctx->luma_size = ALIGN((mb_width * mb_height) * 256, 256);
573 ctx->chroma_size = ALIGN((mb_width * mb_height) * 128, 256);
680 buf_addr1 = ALIGN(buf_addr1, 16);