Home
last modified time | relevance | path

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

12345678910>>...12

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
DBarrett.php68 list(, $temp) = $lhs->divide($rhs);
69 return $temp->value;
106 $temp = $class::multiplyHelper($msd, false, $m1, false); // m.length + (m.length >> 1)
107 …$n = $class::addHelper($lsd, false, $temp[self::VALUE], false); // m.length + (m.length >> 1) + 1 …
113 $temp = array_slice($n[self::VALUE], $m_length - 1);
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);
128 $result = $class::subtractHelper($n[self::VALUE], false, $temp[self::VALUE], false);
162 list(, $temp) = $lhs->divide($rhs);
[all …]
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);
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/
DPHP.php106 $temp = new static(Hex::decode($x), 256);
107 $this->value = $temp->value;
110 $temp = new static();
129 $temp = $temp->multiply($multiplier);
130 … $temp = $temp->add(new static($this->int2bytes(substr($x, 0, static::MAX10LEN)), 256));
134 $this->value = $temp->value;
164 $temp = clone $this;
165 $temp->bitmask = false;
166 $temp->is_negative = false;
171 while (count($temp->value)) {
[all …]
DGMP.php99 $temp = $this->is_negative ? '-0x' . $this->value : '0x' . $this->value;
100 $this->value = gmp_init($temp);
159 $temp = gmp_export($this->value);
162 … substr(str_pad($temp, $this->precision >> 3, chr(0), STR_PAD_LEFT), -($this->precision >> 3)) :
163 ltrim($temp, chr(0));
174 $temp = new self();
175 $temp->value = $this->value + $y->value;
177 return $this->normalize($temp);
188 $temp = new self();
189 $temp->value = $this->value - $y->value;
[all …]
DBCMath.php112 $temp = new self(Hex::decode($x), 256);
113 $this->value = $this->is_negative ? '-' . $temp->value : $temp->value;
157 $temp = bcmod($current, '16777216');
158 $value = chr($temp >> 16) . chr($temp >> 8) . chr($temp) . $value;
175 $temp = new self();
176 $temp->value = bcadd($this->value, $y->value);
178 return $this->normalize($temp);
189 $temp = new self();
190 $temp->value = bcsub($this->value, $y->value);
192 return $this->normalize($temp);
[all …]
DEngine.php163 $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();
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
DASN1.php256 $temp = ord($encoded[$encoded_pos++]);
258 $loop = $temp >> 7;
260 $temp &= 0x7F;
262 if ($startOffset == 2 && $temp == 0) {
265 $tag |= $temp;
285 $temp = substr($encoded, $encoded_pos, $length);
290 extract(unpack('Nlength', substr(str_pad($temp, 4, chr(0), STR_PAD_LEFT), -4)));
331 $temp = self::decode_ber($content, $start, $content_pos);
332 if ($temp === false) {
335 $length = $temp['length'];
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
DBarrett.php106 $temp = bcmul($msd, $m1); // m.length + (m.length >> 1)
107 …$n = bcadd($lsd, $temp); // m.length + (m.length >> 1) + 1 (so basically we're adding two same len…
113 $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);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
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 …]
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/Crypt/
DHash.php643 $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);
[all …]
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
Dclass.csstidy_optimise.php110 $temp = csstidy_optimise::shorthand($this->value); // FIXME - move
111 if($temp != $this->value)
113 …horthand notation ('.$this->property.'): Changed "'.$this->value.'" to "'.$temp.'"','Information');
115 $this->value = $temp;
189 $temp = $this->compress_numbers($this->sub_value);
190 if($temp != $this->sub_value)
192 if(strlen($temp) > strlen($this->sub_value)) {
193 …this->parser->log('Fixed invalid number: Changed "'.$this->sub_value.'" to "'.$temp.'"','Warning');
195 …$this->parser->log('Optimised number: Changed "'.$this->sub_value.'" to "'.$temp.'"','Information'…
197 $this->sub_value = $temp;
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/phar/
Dphar-sample.phar63 chdir(Extract_Phar::$temp);
74 $a = realpath(Extract_Phar::$temp . DIRECTORY_SEPARATOR . $pt);
75 if (!$a || strlen(dirname($a)) < strlen(Extract_Phar::$temp)) {
105 static $temp;
152 $temp = self::tmpdir();
154 if (!$temp || !is_writable($temp)) {
161 $temp = $sessionpath;
164 $temp .= '/pharextract/'.basename(__FILE__, '.phar');
165 self::$temp = $temp;
167 @mkdir($temp, 0777, true);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
DStrings.php121 list(, $temp) = unpack('N', self::shift($data, 4));
122 $result[] = $temp;
132 $temp = $upper ? 4294967296 * $upper : 0;
133 $temp += $lower < 0 ? ($lower & 0x7FFFFFFFF) + 0x80000000 : $lower;
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);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
DInteger.php173 $temp = new static($this->instanceID);
174 $temp->value = $this->value->add($x->value);
175 if ($temp->value->compare(static::$modulo[$this->instanceID]) >= 0) {
176 $temp->value = $temp->value->subtract(static::$modulo[$this->instanceID]);
179 return $temp;
191 $temp = new static($this->instanceID);
192 $temp->value = $this->value->subtract($x->value);
193 if ($temp->value->isNegative()) {
194 $temp->value = $temp->value->add(static::$modulo[$this->instanceID]);
197 return $temp;
[all …]
/plugin/quickstats/scripts/
Dextended_data.php43 $temp = array(); variable
45 $temp = qs_process_pages ($page,$month); variable
46 qs_format_pages($temp, $month);
172 $temp = $UserAgentArray;
175 $temp = $PAGE_USERS_ARRAY;
177 else $temp = load_data($type,$date);
180 if(!empty($temp)) {
181 $row .= qs_data($temp['words'] ,$index);
182 $row .= qs_data($temp['ns'] ,$index);
183 $row .= qs_data($temp['extern']['name'] ,$index);
[all …]
/plugin/rssticker/
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/
Dclass_quiz.php123 $temp = $_POST['answers'][$question_num];
146 if ($temp == $n) $state = ' checked';
153 ']" value="'.$temp.'" size="50"><br>' . "\n";
158 if (isset($temp[$n]) && ($temp[$n] =='on')) $state = ' checked';
369 $temp = str_replace("=====",'',$lines[$n]);
371 $tmp_array['range']= explode("-", $temp);
417 $temp = str_replace(" * [",'',$lines[$k]);
418 $temp = ereg_replace("].*", "", $temp);
420 $quizz['questions'][$nquest]['answers'] = explode("|", $temp);
430 $temp = str_replace(" * (",'',$lines[$k]);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
DPKCS8.php365 $temp = ASN1::decodeBER($decrypted['encryptionAlgorithm']['parameters']);
366 extract(ASN1::asn1map($temp[0], Maps\PBEParameter::MAP));
379 $temp = ASN1::decodeBER($decrypted['encryptionAlgorithm']['parameters']);
380 $temp = ASN1::asn1map($temp[0], Maps\PBES2params::MAP);
381 extract($temp);
386 $temp = ASN1::decodeBER($decrypted['encryptionAlgorithm']['parameters']);
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));
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
DSFTP.php997 $temp = $this->nlist_helper($dir . '/' . $value, true, $relativeDir . $value . '/');
998 $temp = is_array($temp) ? $temp : [];
999 $result = array_merge($result, $temp);
1125 $temp = $this->realpath($dir . '/..') . '/.';
1127 $temp = $dir . '/' . $shortname;
1129 $this->update_stat_cache($temp, (object) ['lstat' => $attributes]);
1275 $temp = &$this->stat_cache;
1281 if (is_object($temp)) {
1282 $temp = [];
1284 if (!isset($temp[$dir])) {
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/
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/RSA/
DPublicKey.php252 $temp = chr(0xFF << ($emBits & 7));
253 if ((~$maskedDB[0] & $temp) != $temp) {
259 $temp = $emLen - $this->hLen - $sLen - 2;
260 if (substr($db, 0, $temp) != str_repeat(chr(0), $temp) || ord($db[$temp]) != 1) {
263 $salt = substr($db, $temp + 1); // should be $sLen long
350 $temp = Random::string($psLen - strlen($ps));
351 $temp = str_replace("\x00", '', $temp);
352 $ps .= $temp;
447 $temp = $this->os2ip($m);
448 $temp = $this->rsaep($temp);
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
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 …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits/
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;

12345678910>>...12