Searched refs:ULLong (Results 1 – 4 of 4) sorted by relevance
/external/libcxx/test/std/atomics/atomics.lockfree/ |
D | isalwayslockfree.pass.cpp | 41 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/llvm-project/libcxx/test/std/atomics/atomics.lockfree/ |
D | isalwayslockfree.pass.cpp | 42 class ULLong = unsigned long long> 45 static_assert(std::atomic<ULLong>::is_always_lock_free == (2 == ATOMIC_LLONG_LOCK_FREE), ""); in checkLongLongTypes() 55 class ULLong = unsigned long long> 59 static_assert(std::atomic<ULLong>::is_always_lock_free == ExpectLockFree, ""); in checkLongLongTypes()
|
/external/python/cpython2/Python/ |
D | dtoa.c | 162 #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/ |
D | dtoa.c | 160 typedef uint64_t ULLong; typedef 456 ULLong carry, y; in multadd() 464 y = *x * (ULLong)m + carry; in multadd() 627 ULLong carry, z; in mult() 665 z = *x++ * (ULLong)y + *xc + carry; in mult() 881 ULLong borrow, y; in diff() 913 y = (ULLong)*xa++ - *xb++ - borrow; in diff() 1167 ULLong borrow, carry, y, ys; in quorem() 1189 ys = *sx++ * (ULLong)q + carry; in quorem()
|