Lines Matching refs:value
47 bit_ctx->value = (bit_ctx->buffer[0] << 24) + (bit_ctx->buffer[1] << 16) in vp8hwdBoolStart()
65 RK_U32 value = bit_ctx->value; in vp8hwdDecodeBool() local
72 if (value >= bigsplit) { in vp8hwdDecodeBool()
74 value = value - bigsplit; in vp8hwdDecodeBool()
79 bit_ctx->value = value; in vp8hwdDecodeBool()
85 value += value; in vp8hwdDecodeBool()
95 value |= bit_ctx->buffer[bit_ctx->pos]; in vp8hwdDecodeBool()
103 bit_ctx->value = value; in vp8hwdDecodeBool()
117 RK_U32 value = bit_ctx->value; in vp8hwdDecodeBool128() local
124 if (value >= bigsplit) { in vp8hwdDecodeBool128()
126 value = (value - bigsplit); in vp8hwdDecodeBool128()
131 bit_ctx->value = value; in vp8hwdDecodeBool128()
138 value <<= 1; in vp8hwdDecodeBool128()
148 value |= bit_ctx->buffer[bit_ctx->pos]; in vp8hwdDecodeBool128()
154 bit_ctx->value = value; in vp8hwdDecodeBool128()
526 pic_param->bool_value = ((p->bitstr.value >> 24) & (0xFFU)); in vp8d_convert_to_syntx()