Searched refs:fCarry (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/VMM/VMMAll/
H A DIEMAllAImplC.cpp910 uint32_t fCarry = (uResult & 1);
911 fEfl |= fCarry;
912 fEfl |= ((uResult >> 63) ^ fCarry) << X86_EFL_OF_BIT;
933 uint32_t fCarry = (uResult >> 63) & X86_EFL_CF;
934 fEfl |= fCarry;
935 fEfl |= (((uResult >> 62) ^ fCarry) << X86_EFL_OF_BIT) & X86_EFL_OF;
958 uint32_t fCarry = (uDst >> (64 - cShift)) & X86_EFL_CF;
960 fEfl |= fCarry;
961 fEfl |= ((uResult >> 63) ^ fCarry) << X86_EFL_OF_BIT;
984 uint32_t fCarry
[all...]
H A DIEMAllCImpl.cpp.h5923 bool const fCarry = pCtx->eflags.Bits.u1CF; local
5934 if (al >= 0x9a || fCarry)
5956 bool const fCarry = pCtx->eflags.Bits.u1CF; local
5972 if (uInputAL >= 0x9a || fCarry)
/vbox/src/VBox/Runtime/common/math/
H A Dbignum.cpp1220 RTBIGNUMELEMENT fCarry = 0;
1224 &fCarry);
1225 if (fCarry)
1559 RTBIGNUMELEMENT fCarry = 0;
1561 pResult->pauElements[k] = rtBigNumElementAddWithCarry(pResult->pauElements[k], uLo, &fCarry);
1563 pResult->pauElements[k] = rtBigNumElementAddWithCarry(pResult->pauElements[k], uHi, &fCarry);
1564 while (fCarry)
1567 pResult->pauElements[k] = rtBigNumElementAddWithCarry(pResult->pauElements[k], 0, &fCarry);
H A Dbignum-amd64-x86.asm813 ; Subtract uSub.s.Lo+fCarry from pauDividendJ[i]

Completed in 75 milliseconds