Lines Matching refs:temp

163                     $temp = $this->add(new static('-1'));
164 $this->value = $temp->value;
186 $temp = $this->add(new static('-1'));
187 $this->value = $temp->value;
210 $temp = new static(Strings::bits2bin($x), 128 * $base); // ie. either -16 or +16
211 $this->value = $temp->value;
212 if ($temp->is_negative) {
255 $temp = $comparison < 0 ? $this->add(new static(1)) : $this;
256 $bytes = $temp->toBytes();
319 $temp = $this->abs();
320 $temp = $temp->modInverse($n);
321 return $this->normalize($n->subtract($temp));
365 $temp = new static($this->hex, -16);
366 $this->value = $temp->value;
367 $this->is_negative = $temp->is_negative;
434 $temp = $this->normalize($this);
435 $this->value = $temp->value;
470 $temp = $this->toBytes();
471 if ($temp == '') {
474 $pre_msb = decbin(ord($temp[0]));
475 $temp = ~$temp;
476 $msb = decbin(ord($temp[0]));
480 $temp[0] = chr(bindec($msb));
483 $current_bits = strlen($pre_msb) + 8 * strlen($temp) - 8;
486 return $this->normalize(new static($temp, 256));
494 $temp = str_pad($temp, strlen($leading_ones), chr(0), STR_PAD_LEFT);
496 return $this->normalize(new static($leading_ones | $temp, 256));
519 $temp = ord($x[$i]) << $shift | $carry;
520 $x[$i] = chr($temp);
521 $carry = $temp >> 8;
548 $temp = ord($bits[0]);
549 for ($i = 0; $temp >> $i; ++$i) {
642 $temp = $this->modInverse($n);
643 if ($temp === false) {
647 return $this->normalize($temp->powModInner($e, $n));
694 $temp = 1 << ($window_size - 1);
695 for ($i = 1; $i < $temp; ++$i) {
725 $temp = new $class();
726 $temp->value = static::reduce($result, $n_value, $class);
728 return $temp;
782 $temp = $max;
784 $min = $temp;
813 $temp = $max;
815 $min = $temp;
1180 $temp = $u;
1182 $v = $temp->subtract($v->multiply($q));
1184 $temp = $a;
1186 $c = $temp->subtract($a->multiply($q));
1188 $temp = $b;
1190 $d = $temp->subtract($b->multiply($q));