Lines Matching refs:dah
89 uint32_t daw, dah; in RGA_gen_two_pro() local
92 daw = dah = 0; in RGA_gen_two_pro()
148 dah = (msg->src.act_h + 1) >> 1; in RGA_gen_two_pro()
149 if((IS_YUV(msg->dst.format)) && (dah & 1)) { in RGA_gen_two_pro()
150 dah -= 1; in RGA_gen_two_pro()
151 msg->src.act_h = dah << 1; in RGA_gen_two_pro()
155 dah = (msg->src.act_h + 3) >> 2; in RGA_gen_two_pro()
156 if((IS_YUV(msg->dst.format)) && (dah & 1)) { in RGA_gen_two_pro()
157 dah -= 1; in RGA_gen_two_pro()
158 msg->src.act_h = dah << 2; in RGA_gen_two_pro()
163 dah = (msg->src.act_h + 7) >> 3; in RGA_gen_two_pro()
164 if((IS_YUV(msg->dst.format)) && (dah & 1)) { in RGA_gen_two_pro()
165 dah -= 1; in RGA_gen_two_pro()
166 msg->src.act_h = dah << 3; in RGA_gen_two_pro()
171 dah = msg->src.act_h; in RGA_gen_two_pro()
174 msg->dst.act_h = dah; in RGA_gen_two_pro()
175 msg->dst.vir_h = dah; in RGA_gen_two_pro()
181 msg->dst.uv_addr = msg->dst.yrgb_addr + stride * dah; in RGA_gen_two_pro()
182 msg->dst.v_addr = msg->dst.uv_addr + ((stride * dah) >> 1); in RGA_gen_two_pro()