Home
last modified time | relevance | path

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

/dokuwiki/inc/
H A DIp32.php13 public static $b32 = '4294967296'; variable in dokuwiki\\Ip32
22 $upper = bcdiv($u64, Ip32::$b32, 0);
23 $lower = bcmod($u64, Ip32::$b32);
88 $high = $high < 0 ? bcadd($high, Ip32::$b32) : $high;
89 $low = $low < 0 ? bcadd($low, Ip32::$b32) : $low;
91 return bcadd(bcmul($high, Ip32::$b32), $low);
H A DIp.php112 $ipNum = ($ipNum < 0) ? bcadd($ipNum, Ip32::$b32) : (string)$ipNum;