Lines Matching defs:temp

624             $temp = $m[$i]->add($k[$i]);
625 $temp->setPrecision(64);
626 $temp = $temp->multiply($m[$i + 4]->add($k[$i + 4]));
627 $y = $y->add($temp);
629 $temp = $m[$i + 1]->add($k[$i + 1]);
630 $temp->setPrecision(64);
631 $temp = $temp->multiply($m[$i + 5]->add($k[$i + 5]));
632 $y = $y->add($temp);
634 $temp = $m[$i + 2]->add($k[$i + 2]);
635 $temp->setPrecision(64);
636 $temp = $temp->multiply($m[$i + 6]->add($k[$i + 6]));
637 $y = $y->add($temp);
639 $temp = $m[$i + 3]->add($k[$i + 3]);
640 $temp->setPrecision(64);
641 $temp = $temp->multiply($m[$i + 7]->add($k[$i + 7]));
642 $y = $y->add($temp);
843 $temp = $this->ipad ^ $key;
844 $temp .= $text;
845 $temp = substr($algo($temp, ...array_values($this->parameters)), 0, $this->length);
847 $output .= $temp;
913 $temp = chr(0x01) . str_repeat("\0", $padLength - 1);
914 $temp[$padLength - 1] = $temp[$padLength - 1] | chr(0x80);
915 return $temp;
917 $temp = chr(0x1F) . str_repeat("\0", $padLength - 1);
918 $temp[$padLength - 1] = $temp[$padLength - 1] | chr(0x80);
919 return $temp;
1060 $temp = [
1069 $s[$i][$j][0] ^= $temp[$j][0];
1070 $s[$i][$j][1] ^= $temp[$j][1];
1241 $temp = [
1250 $s[$i][$j] ^= $temp[$j];
1345 $temp = new BigInteger(Strings::shift($chunk, 8), 256);
1346 $temp->setPrecision(64);
1347 $w[] = $temp;
1352 $temp = [
1357 $s0 = $temp[0]->bitwise_xor($temp[1]);
1358 $s0 = $s0->bitwise_xor($temp[2]);
1359 $temp = [
1364 $s1 = $temp[0]->bitwise_xor($temp[1]);
1365 $s1 = $s1->bitwise_xor($temp[2]);
1384 $temp = [
1389 $s0 = $temp[0]->bitwise_xor($temp[1]);
1390 $s0 = $s0->bitwise_xor($temp[2]);
1391 $temp = [
1396 $maj = $temp[0]->bitwise_xor($temp[1]);
1397 $maj = $maj->bitwise_xor($temp[2]);
1400 $temp = [
1405 $s1 = $temp[0]->bitwise_xor($temp[1]);
1406 $s1 = $s1->bitwise_xor($temp[2]);
1407 $temp = [
1411 $ch = $temp[0]->bitwise_xor($temp[1]);
1442 $temp = $hash[0]->toBytes() . $hash[1]->toBytes() . $hash[2]->toBytes() . $hash[3]->toBytes() .
1445 return $temp;