Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 244) sorted by relevance

12345678910

/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 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 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);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php129 $temp = $temp->multiply($multiplier);
164 $temp = clone $this;
172 list($temp, $mod) = $temp->divide($divisor);
260 return $temp;
337 return $temp;
652 $temp = $temp->multiply($y);
826 return $temp;
1163 $temp = $temp->multiply($this);
1167 return $temp;
1217 $temp->is_negative = !$temp->is_negative;
[all …]
H A DGMP.php174 $temp = new self();
188 $temp = new self();
202 $temp = new self();
287 $temp = new self();
290 return $temp->value === false ? false : $this->normalize($temp);
337 $temp = new self();
340 return $temp;
351 $temp = new self();
365 $temp = new self();
379 $temp = new self();
[all …]
H A DBCMath.php113 $this->value = $this->is_negative ? '-' . $temp->value : $temp->value;
158 $value = chr($temp >> 16) . chr($temp >> 8) . chr($temp) . $value;
175 $temp = new self();
189 $temp = new self();
276 $temp = $u;
280 $temp = $a;
284 $temp = $b;
323 return $temp;
694 return $temp;
697 $temp->value = $temp->value[0] == '-' ?
[all …]
H A DEngine.php320 $temp = $temp->modInverse($n);
475 $temp = ~$temp;
494 $temp = str_pad($temp, strlen($leading_ones), chr(0), STR_PAD_LEFT);
728 return $temp;
782 $temp = $max;
784 $min = $temp;
813 $temp = $max;
815 $min = $temp;
1180 $temp = $u;
1184 $temp = $a;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php815 $temp = (int) $temp->toString();
957 $temp = $subtag . self::encodeLength(strlen($temp)) . $temp;
960 $temp = $subtag . substr($temp, 1);
991 $temp = $subtag . self::encodeLength(strlen($temp)) . $temp;
994 $temp = $subtag . substr($temp, 1);
1258 $temp[strlen($temp) - 1] = $temp[strlen($temp) - 1] & chr(0x7F);
1490 $temp = str_replace(["\r", "\n", ' '], '', $temp);
1492 $temp = preg_replace('#^-+[^-]+-+|-+[^-]+-+$#', '', $temp);
1493 $temp = preg_match('#^[a-zA-Z\d/+]*={0,2}$#', $temp) ? Base64::decode($temp) : false;
1494 return $temp != false ? $temp : $str;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
H A DBarrett.php113 $temp = substr($n, 0, -$m_length + 1);
116 $temp = bcmul($temp, $u);
119 $temp = substr($temp, 0, -($m_length >> 1) - 1);
122 $temp = bcmul($temp, $m);
128 $result = bcsub($n, $temp);
132 $temp = '1' . str_repeat('0', $m_length + 1);
133 $result = bcadd($result, $temp);
173 $temp = substr($x, 0, -$n_length + 1);
174 $temp = bcmul($temp, $cache[self::DATA][$key]);
175 $temp = substr($temp, 0, -$n_length - 1);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
H A DBase.php86 $temp = new $class();
87 $temp->value = [1];
88 return $x->normalize($temp);
92 list(, $temp) = $x->divide($n);
93 return $x->normalize($temp);
97 $temp = new $class();
98 $temp->value = $class::square($x->value);
99 list(, $temp) = $temp->divide($n);
100 return $x->normalize($temp);
132 $temp = $class::multiplyHelper($x, false, $y, false);
[all …]
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/freechat/phpfreechat/lib/csstidy-1.2/
H A Dclass.csstidy_optimise.php111 if($temp != $this->value)
115 $this->value = $temp;
190 if($temp != $this->sub_value)
197 $this->sub_value = $temp;
386 …if (!(strlen($temp[$l]) > 0 && ( is_numeric($temp[$l]{0}) || $temp[$l]{0} == '+' || $temp[$l]{0} =…
394 $temp[$l] = '#'.$temp[$l];
399 $temp[$l] = '0';
408 $temp[$l] = floatval($temp[$l]).$units[$m];
415 $temp[$l] = floatval($temp[$l]).'px';
419 $temp[$l] = floatval($temp[$l]);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php645 $temp = $temp->multiply($m[$i + 4]->add($k[$i + 4]));
650 $temp = $temp->multiply($m[$i + 5]->add($k[$i + 5]));
655 $temp = $temp->multiply($m[$i + 6]->add($k[$i + 6]));
660 $temp = $temp->multiply($m[$i + 7]->add($k[$i + 7]));
1087 $temp = [
1389 $s0 = $temp[0]->bitwise_xor($temp[1]);
1396 $s1 = $temp[0]->bitwise_xor($temp[1]);
1421 $s0 = $temp[0]->bitwise_xor($temp[1]);
1428 $maj = $temp[0]->bitwise_xor($temp[1]);
1437 $s1 = $temp[0]->bitwise_xor($temp[1]);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php122 $result[] = $temp;
135 $result[] = $temp;
142 $temp = self::shift($data, $length);
145 $result[] = new BigInteger($temp, -256);
148 $result[] = $temp;
151 $result[] = explode(',', $temp);
389 $temp = substr($var, -$i, 4);
390 switch ($temp) {
398 $temp = unpack('Nnum', $temp);
411 $temp = substr(pack('N', $temp['num'] + 1), -$remainder);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/phar/
H A Dphar-sample.phar63 chdir(Extract_Phar::$temp);
105 static $temp;
152 $temp = self::tmpdir();
154 if (!$temp || !is_writable($temp)) {
161 $temp = $sessionpath;
165 self::$temp = $temp;
168 $temp = realpath($temp);
189 chdir($temp);
202 if (is_dir('/temp') || mkdir('/temp')) {
274 chdir($temp);
[all …]
/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/quickstats/scripts/
H A Dextended_data.php43 $temp = array(); variable
46 qs_format_pages($temp, $month);
172 $temp = $UserAgentArray;
175 $temp = $PAGE_USERS_ARRAY;
180 if(!empty($temp)) {
189 else if(!empty($temp) && isset($temp[$index])) {
257 if(!$temp) $temp = array();
258 return $temp;
365 $temp = array();
369 return $temp;
[all …]
H A Dread_ini.php6 $temp = array(); variable
12 $temp[$header] = array();
18 $temp[$header][] = trim($entry);
22 print_r($temp);
/plugin/rssticker/
H A DlastRSS.php169 $temp = $this->my_preg_match("'<$channeltag.*?>(.*?)</$channeltag>'si", $out_channel[1]);
170 if ($temp != '') $result[$channeltag] = $temp; // Set only if not empty
184 $temp = $this->my_preg_match("'<$textinputtag.*?>(.*?)</$textinputtag>'si", $out_textinfo[2]);
185 if ($temp != '') $result['textinput_'.$textinputtag] = $temp; // Set only if not empty
192 $temp = $this->my_preg_match("'<$imagetag.*?>(.*?)</$imagetag>'si", $out_imageinfo[1]);
193 if ($temp != '') $result['image_'.$imagetag] = $temp; // Set only if not empty
208 $temp = $this->my_preg_match("'<$itemtag.*?>(.*?)</$itemtag>'si", $rss_item);
209 if ($temp != '') $result['items'][$i][$itemtag] = $temp; // Set only if not empty
/plugin/quiz/
H A Dclass_quiz.php158 if (isset($temp[$n]) && ($temp[$n] =='on')) $state = ' checked';
418 $temp = ereg_replace("].*", "", $temp);
431 $temp = ereg_replace(").*", "", $temp);
471 $temp = $items;
473 shuffle($temp);
474 for($k=1; $k<=count($temp); $k++) {
475 $items[$k] = $temp[$k-1];
485 $temp = $scorelist['rows'];
486 usort($temp, array($this,'cmp'));
487 $temp = array_slice($temp, 0, 10);
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/
H A Deasy-coding-standard.neon2 - temp/ecs/config/clean-code.neon
3 - temp/ecs/config/psr2-checkers.neon
4 - temp/ecs/config/spaces.neon
5 - temp/ecs/config/common.neon
13 # from temp/ecs/config/common.neon
17 # from temp/ecs/config/spaces.neon
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS8.php366 extract(ASN1::asn1map($temp[0], Maps\PBEParameter::MAP));
380 $temp = ASN1::asn1map($temp[0], Maps\PBES2params::MAP);
381 extract($temp);
387 $temp = ASN1::asn1map($temp[0], Maps\PBES2params::MAP);
388 extract($temp);
393 $temp = ASN1::decodeBER($encryptionScheme['parameters']);
394 extract(ASN1::asn1map($temp[0], Maps\RC2CBCParameter::MAP));
454 $temp = $decoded[0]['content'][1]['content'][1];
455 …vateKeyAlgorithm']['parameters'] = new ASN1\Element(substr($key, $temp['start'], $temp['length']));
495 $temp = $decoded[0]['content'][0]['content'][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 …]
/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/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_csp.js158 var temp = date.match(/[a-zA-Z]+|[0-9]+/g);
165 set[2] = temp[i] || 1;
169 set[1] = (temp[i] || 1) - 1;
172 set[0] = temp[i] * 1 + (temp[i] > 50 ? 1900 : 2000);
178 set[3] = temp[i] || 0;
181 set[4] = temp[i] || 0;
184 set[0] = temp[i] || 0;
188 set[3] = set[3] % 12 + ((temp[i] || '').toLowerCase() == 'am' ? 0 : 12);
191 set[5] = temp[i] || 0;
194 set[1] = gantt.locale.date.month_short_hash[temp[i]] || 0;
[all …]

12345678910