/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/ |
H A D | Barrett.php | 69 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 D | MontgomeryMult.php | 68 $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 D | Montgomery.php | 44 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 D | PHP.php | 129 $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 D | GMP.php | 174 $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 D | BCMath.php | 113 $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 D | Engine.php | 320 $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 D | ASN1.php | 815 $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 D | Barrett.php | 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); 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 D | Base.php | 86 $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 D | Montgomery.php | 62 $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 D | class.csstidy_optimise.php | 111 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 D | Hash.php | 645 $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 D | Strings.php | 122 $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 D | phar-sample.phar | 63 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 D | Integer.php | 173 $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 D | extended_data.php | 43 $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['exter [all...] |
H A D | read_ini.php | 6 $temp = array(); variable 12 $temp[$header] = array(); 18 $temp[$header][] = trim($entry); 22 print_r($temp);
|
/plugin/rssticker/ |
H A D | lastRSS.php | 169 $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 D | class_quiz.php | 158 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 D | easy-coding-standard.neon | 2 - 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 D | PKCS8.php | 366 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 D | SFTP.php | 998 $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 D | ReadBytes.php | 36 $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 D | dhtmlxgantt_csp.js | 158 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 …]
|