Home
last modified time | relevance | path

Searched refs:ULLong (Results 1 – 3 of 3) sorted by relevance

/external/libcxx/test/std/atomics/atomics.lockfree/
Disalwayslockfree.pass.cpp41 class ULLong = unsigned long long>
44 static_assert(std::atomic<ULLong>::is_always_lock_free == (2 == ATOMIC_LLONG_LOCK_FREE)); in checkLongLongTypes()
54 class ULLong = unsigned long long>
58 static_assert(std::atomic<ULLong>::is_always_lock_free == ExpectLockFree, ""); in checkLongLongTypes()
/external/python/cpython2/Python/
Ddtoa.c162 #define ULLong PY_UINT64_T macro
164 #undef ULLong
450 #ifdef ULLong in multadd()
452 ULLong carry, y; in multadd()
464 #ifdef ULLong in multadd()
465 y = *x * (ULLong)m + carry; in multadd()
635 #ifdef ULLong in mult()
636 ULLong carry, z; in mult()
672 #ifdef ULLong in mult()
679 z = *x++ * (ULLong)y + *xc + carry; in mult()
[all …]
/external/python/cpython3/Python/
Ddtoa.c156 typedef uint64_t ULLong; typedef
452 ULLong carry, y; in multadd()
460 y = *x * (ULLong)m + carry; in multadd()
623 ULLong carry, z; in mult()
661 z = *x++ * (ULLong)y + *xc + carry; in mult()
877 ULLong borrow, y; in diff()
909 y = (ULLong)*xa++ - *xb++ - borrow; in diff()
1163 ULLong borrow, carry, y, ys; in quorem()
1185 ys = *sx++ * (ULLong)q + carry; in quorem()