Lines Matching refs:temp

643             $temp = $m[$i]->add($k[$i]);
644 $temp->setPrecision(64);
645 $temp = $temp->multiply($m[$i + 4]->add($k[$i + 4]));
646 $y = $y->add($temp);
648 $temp = $m[$i + 1]->add($k[$i + 1]);
649 $temp->setPrecision(64);
650 $temp = $temp->multiply($m[$i + 5]->add($k[$i + 5]));
651 $y = $y->add($temp);
653 $temp = $m[$i + 2]->add($k[$i + 2]);
654 $temp->setPrecision(64);
655 $temp = $temp->multiply($m[$i + 6]->add($k[$i + 6]));
656 $y = $y->add($temp);
658 $temp = $m[$i + 3]->add($k[$i + 3]);
659 $temp->setPrecision(64);
660 $temp = $temp->multiply($m[$i + 7]->add($k[$i + 7]));
661 $y = $y->add($temp);
863 $temp = $this->ipad ^ $key;
864 $temp .= $text;
865 $temp = substr($algo($temp, ...array_values($this->parameters)), 0, $this->length);
867 $output .= $temp;
938 $temp = chr(0x01) . str_repeat("\0", $padLength - 1);
939 $temp[$padLength - 1] = $temp[$padLength - 1] | chr(0x80);
940 return $temp;
942 $temp = chr(0x1F) . str_repeat("\0", $padLength - 1);
943 $temp[$padLength - 1] = $temp[$padLength - 1] | chr(0x80);
944 return $temp;
1087 $temp = [
1096 $s[$i][$j][0] ^= $temp[$j][0];
1097 $s[$i][$j][1] ^= $temp[$j][1];
1271 $temp = [
1280 $s[$i][$j] ^= $temp[$j];
1377 $temp = new BigInteger(Strings::shift($chunk, 8), 256);
1378 $temp->setPrecision(64);
1379 $w[] = $temp;
1384 $temp = [
1389 $s0 = $temp[0]->bitwise_xor($temp[1]);
1390 $s0 = $s0->bitwise_xor($temp[2]);
1391 $temp = [
1396 $s1 = $temp[0]->bitwise_xor($temp[1]);
1397 $s1 = $s1->bitwise_xor($temp[2]);
1416 $temp = [
1421 $s0 = $temp[0]->bitwise_xor($temp[1]);
1422 $s0 = $s0->bitwise_xor($temp[2]);
1423 $temp = [
1428 $maj = $temp[0]->bitwise_xor($temp[1]);
1429 $maj = $maj->bitwise_xor($temp[2]);
1432 $temp = [
1437 $s1 = $temp[0]->bitwise_xor($temp[1]);
1438 $s1 = $s1->bitwise_xor($temp[2]);
1439 $temp = [
1443 $ch = $temp[0]->bitwise_xor($temp[1]);
1474 … $temp = $hash[0]->toBytes() . $hash[1]->toBytes() . $hash[2]->toBytes() . $hash[3]->toBytes() .
1477 return $temp;