Lines Matching full:carrybit
525 UCHAR carryBit;
559 carryBit = HcrGetABitFromBitstream( bs,
564 CarryBitToBranchValue(carryBit, /* make a step in decoding tree */
646 UCHAR carryBit;
680 carryBit = HcrGetABitFromBitstream( bs,
685 CarryBitToBranchValue(carryBit, /* make a step in decoding tree */
768 UCHAR carryBit;
792 carryBit = HcrGetABitFromBitstream( bs,
806 /* put sign together with line; if carryBit is zero, the sign is ok already; no write operation necessary in this case */
807 if ( carryBit != 0 ) {
808 pResultBase[iQSC] = -pResultBase[iQSC]; /* carryBit = 1 --> minus */
872 UCHAR carryBit;
905 carryBit = HcrGetABitFromBitstream( bs,
911 CarryBitToBranchValue(carryBit,
1029 UCHAR carryBit;
1055 carryBit = HcrGetABitFromBitstream( bs,
1070 /* put negative sign together with quantized spectral value; if carryBit is zero, the sign is ok already; no write operation necessary in this case */
1071 if ( carryBit != 0 ) {
1072 pResultBase[iQSC] = - pResultBase[iQSC]; /* carryBit = 1 --> minus */
1179 UCHAR carryBit;
1199 carryBit = HcrGetABitFromBitstream( bs,
1205 if ( carryBit == 1 ) {
1285 UCHAR carryBit;
1313 carryBit = HcrGetABitFromBitstream( bs,
1320 escapeWord = escapeWord | carryBit; /* assemble escape word by bitwise or */