Lines Matching refs:high
59 public static function divideInt64ToInt32($value, &$high, &$low, $trim = false)
66 $high = bcdiv($value, 4294967296);
68 if (bccomp($high, 2147483647) > 0) {
69 $high = (int) bcsub($high, 4294967296);
71 $high = (int) $high;
80 $high = ~$high;
84 $high = (int)($high + 1);
89 $high = 0;
385 public static function combineInt32ToInt64($high, $low)
387 $isNeg = $high < 0;
389 $high = ~$high;
393 $high = (int) ($high + 1);
396 $result = bcadd(bcmul($high, 4294967296), $low);