Searched refs:borrow (Results 1 – 3 of 3) sorted by relevance
49 uint_fast8_t borrow; in softfloat_sub256M() local53 borrow = 0; in softfloat_sub256M()57 zPtr[index] = wordA - wordB - borrow; in softfloat_sub256M()59 borrow = borrow ? (wordA <= wordB) : (wordA < wordB); in softfloat_sub256M()
53 uint_fast8_t borrow; in softfloat_subM() local58 borrow = 0; in softfloat_subM()62 zPtr[index] = wordA - wordB - borrow; in softfloat_subM()64 borrow = borrow ? (wordA <= wordB) : (wordA < wordB); in softfloat_subM()
58 uint_fast8_t borrow; in softfloat_remStepMBy32() local69 borrow = (wordShiftedRem < wordProd); in softfloat_remStepMBy32()77 zPtr[index] = wordShiftedRem - wordProd - borrow; in softfloat_remStepMBy32()79 borrow = in softfloat_remStepMBy32()80 borrow ? (wordShiftedRem <= wordProd) in softfloat_remStepMBy32()
Completed in 4 milliseconds