Lines Matching full:carry
48 Your modified versions of the FDK AAC Codec must carry prominent notices stating that you changed the software
140 INT carry;
284 /* transfare carry bit 0 from current word into bitposition 31 from next word and rotate current word */
286 /* get carry (=bit at position 0) from current word */
287 carry = pCodewordBitfield[bitfieldWord] & 1;
289 /* put the carry bit at position 31 into word right from current word */
290 pCodewordBitfield[bitfieldWord+1] = pCodewordBitfield[bitfieldWord+1] | (carry << (NUMBER_OF_BIT_IN_WORD-1));