Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/src/
Dnum_get_float.cpp104 typedef unsigned __int64 uint64; typedef
110 typedef uint64_t uint64; typedef
119 static void _Stl_mult64(const uint64 u, const uint64 v, in _Stl_mult64()
120 uint64& high, uint64& low) { in _Stl_mult64()
121 const uint64 low_mask = ULL(0xffffffff); in _Stl_mult64()
122 const uint64 u0 = u & low_mask; in _Stl_mult64()
123 const uint64 u1 = u >> 32; in _Stl_mult64()
124 const uint64 v0 = v & low_mask; in _Stl_mult64()
125 const uint64 v1 = v >> 32; in _Stl_mult64()
127 uint64 t = u0 * v0; in _Stl_mult64()
[all …]