Searched refs:uint128 (Results 1 – 1 of 1) sorted by relevance
1282 typedef unsigned long uint128 __attribute__ ((mode(TI))); typedef1283 static uint64 psDiv128(uint128 *numerator, uint64 denominator) in psDiv128()1285 uint128 rem = *numerator; in psDiv128()1286 uint128 b = denominator; in psDiv128()1287 uint128 res = 0; in psDiv128()1288 uint128 d = 1; in psDiv128()1293 res = (uint128) high << 64; in psDiv128()1294 rem -= (uint128) (high * denominator) << 64; in psDiv128()1296 while ((uint128)b > 0 && b < rem) { in psDiv128()