Home
last modified time | relevance | path

Searched refs:temp (Results 51 – 75 of 244) sorted by path

12345678910

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
H A DMontgomery.php62 $temp = decbin($n->value[$i]);
63 $j = strlen($temp) - strrpos($temp, '1') - 1;
85 $temp = $part2->multiply($mod1);
86 $temp = $temp->multiply($y2);
88 $result = $result->add($temp);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DBarrett.php69 return $temp->value;
116 $temp = $class::multiplyHelper($temp, false, $u, false);
119 $temp = array_slice($temp[self::VALUE], ($m_length >> 1) + 1);
122 $temp = $class::multiplyHelper($temp, false, $m, false);
182 $temp = $class::multiplyHelper($temp, false, $cache[self::DATA][$key], false);
184 $temp = array_slice($temp[self::VALUE], $n_length + 1);
189 $temp = self::multiplyLower($temp, false, $n, false, $n_length + 1, $class);
235 $temp = $x_value;
237 $y_value = $temp;
255 $carry = $class::BASE === 26 ? intval($temp / 0x4000000) : ($temp >> 31);
[all …]
H A DClassic.php43 list(, $temp) = $lhs->divide($rhs);
44 return $temp->value;
H A DEvalBarrett.php480 $temp = '';
482 $temp = fmod($num, 10) . $temp;
486 return $temp;
H A DMontgomery.php44 list(, $temp) = $lhs->divide($rhs);
45 return $temp->value;
77 $temp = $result[self::VALUE][$i] * $cache[self::DATA][$key];
78 …$temp = $temp - $class::BASE_FULL * ($class::BASE === 26 ? intval($temp / 0x4000000) : ($temp >> 3…
79 $temp = $class::regularMultiply([$temp], $n);
80 $temp = array_merge(self::array_repeat(0, $i), $temp);
81 $result = $class::addHelper($result[self::VALUE], false, $temp, false);
H A DMontgomeryMult.php68 $temp = $a[self::VALUE][0] + $x[$i] * $y[0];
69 …$temp = $temp - $class::BASE_FULL * ($class::BASE === 26 ? intval($temp / 0x4000000) : ($temp >> 3…
70 $temp = $temp * $cache[self::DATA][$key];
71 …$temp = $temp - $class::BASE_FULL * ($class::BASE === 26 ? intval($temp / 0x4000000) : ($temp >> 3…
72 …$temp = $class::addHelper($class::regularMultiply([$x[$i]], $y), false, $class::regularMultiply([$
73 $a = $class::addHelper($a[self::VALUE], false, $temp[self::VALUE], false);
H A DPowerOfTwo.php57 $temp = new $class();
58 $temp->value = [1];
60 $result = $lhs->bitwise_and($rhs->subtract($temp));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP32.php117 $temp = self::addHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
119 return $this->convertToObj($temp);
130 $temp = self::subtractHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
132 return $this->convertToObj($temp);
143 $temp = self::multiplyHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
145 return $this->convertToObj($temp);
H A DPHP64.php91 $temp = $i > 0 ? ord($val[$i - 1]) : 0;
92 $digit |= ($temp << $shift) & 0x7F000000;
121 $temp = self::addHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
123 return $this->convertToObj($temp);
134 $temp = self::subtractHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
136 return $this->convertToObj($temp);
147 $temp = self::multiplyHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
149 return $this->convertToObj($temp);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBinaryField.php88 $temp = $i - $m;
89 $j = $temp >> 3;
90 $k = $temp & 7;
95 $temp = $t1 ^ $t2;
96 $c = $j ? substr_replace($c, $temp, 0, $length) : $temp;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php220 $temp = $precomputed[$i & 7] . str_repeat("\0", $i >> 3);
221 $result ^= str_pad($temp, $size, "\0", STR_PAD_LEFT);
412 $temp = static::polynomialMultiply($aux1, $q);
413 $aux = str_pad($aux0, strlen($temp), "\0", STR_PAD_LEFT) ^
414 str_pad($temp, strlen($aux0), "\0", STR_PAD_LEFT);
419 $temp = new static($this->instanceID);
420 $temp->value = ltrim($aux1, "\0");
421 return $temp;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php173 $temp = new static($this->instanceID);
176 $temp->value = $temp->value->subtract(static::$modulo[$this->instanceID]);
179 return $temp;
191 $temp = new static($this->instanceID);
193 if ($temp->value->isNegative()) {
194 $temp->value = $temp->value->add(static::$modulo[$this->instanceID]);
197 return $temp;
232 $temp = new static($this->instanceID);
235 return $temp;
258 if ($temp->equals($p_1)) {
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php998 $temp = is_array($temp) ? $temp : [];
1282 $temp = [];
1299 $temp = &$temp[$dir];
1327 $temp = &$temp[$dir];
1352 $temp = &$temp[$dir];
1354 return $temp;
1671 $temp = $mode;
1972 $temp = implode('/', $temp);
2224 if ($temp === false || $temp === '') {
3345 return $temp;
[all …]
H A DSSH2.php1453 if ($temp === false) {
1460 $line .= "$temp\n";
2929 case $temp === true:
2931 case $temp === false:
3481 $raw = $temp . $raw;
3686 $buffer .= $temp;
4366 $entry .= $temp;
4412 $temp
5239 $temp = [];
5241 $temp[$key] = $ref->get();
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php186 $temp = $key_blob;
187 list($key_type) = Strings::unpackSSH2('s', $temp);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits/
H A DReadBytes.php36 $temp = fread($this->fsock, $length);
37 if (strlen($temp) != $length) {
38 throw new \RuntimeException("Expected $length bytes; got " . strlen($temp));
40 return $temp;
/plugin/badbehaviour/bad-behavior/
H A Dfunctions.inc.php29 $temp = preg_split('/(\W)/', str_replace("_", "-", $string), -1, PREG_SPLIT_DELIM_CAPTURE);
30 foreach ($temp as $key=>$word) {
31 $temp[$key] = ucfirst(strtolower($word));
33 return join ('', $temp);
/plugin/bibtex/OSBib/create/
H A DADMINSTYLE.php180 $temp = $tempArray = $newArray = $independent = array();
194 $temp['ultimate'] = $array['_DATA'];
207 $temp[$array['_NAME']][$split[1]]
211 $temp[$array['_NAME']][$elements['_NAME']]
224 foreach($temp as $key => $value)
H A DPREVIEWSTYLE.php61 $temp = $templateArray['independent'];
62 foreach($temp as $key => $value)
/plugin/bibtex/OSBib/format/
H A DBIBFORMAT.php409 $temp[] = array(
416 $this->formatNames($temp, 'creator1');
417 unset($temp);
425 $temp[] = array(
432 $this->formatNames($temp, 'creator2');
/plugin/blog/syntax/
H A Darchive.php34 if(preg_match('/(\w+)\s*=(.+)/', $flag, $temp) == 1) {
35 if ($temp[1] == 'author') {
36 $author = trim($temp[2]);
/plugin/bookcreator/script/
H A Dnspicker.js246 var temp = bc_nspicker.$entry.val();
248 bc_nspicker.$entry.val(temp);
/plugin/changes/
H A Dsyntax.php82 } elseif (preg_match('/(\w+)\s*=(.+)/', $m, $temp) == 1) {
83 $this->handleNamedParameter($temp[1], trim($temp[2]), $data);
/plugin/ckgdoku/action/
H A Dedit.php657 $temp=array();
658 trigger_event('HTML_EDITFORM_INJECTION', $temp);
/plugin/ckgdoku/ckeditor/
H A Dckeditor.js129temp=function(a){return function(b){b.type!=CKEDITOR.NODE_ELEMENT&&(b=b.getParent());b=b&&b.hasAtt… function

12345678910