Lines Matching full:both
31 // __unordsf2(a,b) returns 0 if both a and b are numbers
63 // flag if both a and b are zero (of either sign). The shift of r3 doesn't
84 // If a and b are equal (either both zeros or bit identical; again, we're
97 // If a is smaller in magnitude than b and both have the same sign, place
98 // the negation of the sign of b in r0. Thus, if both are negative and
99 // a > b, this sets r0 to 0; if both are positive and a < b, this sets
102 // This is also done if a and b have opposite signs and are not both zero,
122 // If a is greater in magnitude than b and both have the same sign, place
123 // the sign of b in r0. Thus, if both are negative and a < b, -1 is placed
124 // in r0, which is the desired result. Conversely, if both are positive
128 // Here both have the same sign and absA > absB.