Lines Matching full:carry
259 /* Insert the carry (propogated in previous byte) along with */
263 /* carry = 1 => putbit(1); carry propogated due to L renorm */
264 WORD32 carry = (u4_low >> (u4_bits_gen + CABAC_BITS)) & 0x1;
269 if (carry)
272 and the data will become 0x00000303 and if the carry is present, it will
284 /* previous byte carry add will not result in overflow to */
286 pu1_strm_buf[u4_strm_buf_offset - 1] += carry;
293 UWORD8 u1_0_or_ff = carry ? 0 : 0xFF;
299 /* clear the carry in low */
339 * (as the actual bits depend on carry propogation later)
340 * 3. If leading byte is not 0xff check for any carry propogation
341 * 4. Insert the carry (propogated in previous byte) along with outstanding
375 /* (as the actual bits depend on carry propogation later) */
376 /* 3. If leading byte is not 0xff check for any carry propogation */
377 /* 4. Insert the carry (propogated in previous byte) along with */
382 /* actual bits depend on carry propogration */
388 /* carry = 1 => putbit(1); carry propogated due to L renorm */
389 WORD32 carry = (lead_byte >> 8) & 0x1;
397 /* Insert the carry propogated in previous byte */
402 if (carry)
405 and the data will become 0x00000303 and if the carry is present, it will
417 /* previous byte carry add will not result in overflow to */
419 pu1_strm_buf[u4_strm_buf_offset - 1] += carry;
426 UWORD8 u1_0_or_ff = carry ? 0 : 0xFF;