Searched defs:borrow (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/stdlib/
H A Dstrtod.c933 Long borrow, y; /* We need signed shifts here. */ local
970 borrow = 0;
973 y = (*xa & 0xffff) - (*xb & 0xffff) + borrow;
974 borrow = (ULong)y >> 16;
975 Sign_Extend(borrow, y);
976 z = (*xa++ >> 16) - (*xb++ >> 16) + borrow;
977 borrow = (ULong)z >> 16;
978 Sign_Extend(borrow, z);
983 y = (*xa & 0xffff) + borrow;
984 borrow
1918 Long borrow, y; local
[all...]

Completed in 23 milliseconds