Searched refs:result_sign (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 2335 result_sign = 0 2339 result_sign = 1 2352 return _dec_from_triple(result_sign, '0', 0) 2354 return _SignedInfinity[result_sign] 2359 return _SignedInfinity[result_sign] 2361 return _dec_from_triple(result_sign, '0', 0) 2388 return _dec_from_triple(result_sign, '1'+'0'*-exp, exp) 2397 return _dec_from_triple(result_sign, '0', 0) 2399 return _SignedInfinity[result_sign] 2416 ans = _dec_from_triple(result_sign, '1', context.Emax+1) [all …]
|
/external/python/cpython2/Lib/ |
D | decimal.py | 2219 result_sign = 0 2223 result_sign = 1 2236 return _dec_from_triple(result_sign, '0', 0) 2238 return _SignedInfinity[result_sign] 2243 return _SignedInfinity[result_sign] 2245 return _dec_from_triple(result_sign, '0', 0) 2272 return _dec_from_triple(result_sign, '1'+'0'*-exp, exp) 2281 return _dec_from_triple(result_sign, '0', 0) 2283 return _SignedInfinity[result_sign] 2300 ans = _dec_from_triple(result_sign, '1', context.Emax+1) [all …]
|
/external/vixl/src/aarch64/ |
D | simulator-aarch64.cc | 474 uint64_t result_sign = result & sign_mask; in AddWithCarry() local 475 bool V = (left_sign == right_sign) && (left_sign != result_sign); in AddWithCarry()
|