Home
last modified time | relevance | path

Searched refs:len (Results 26 – 50 of 422) sorted by path

12345678910>>...17

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DCachingStream.php101 $len = strlen($remoteData);
103 $this->skipReadBytes = max(0, $this->skipReadBytes - $len);
H A DUtils.php61 $len = strlen($buf);
62 if (!$len) {
65 $remaining -= $len;
99 $len = 0;
100 while (!$stream->eof() && $len < $maxLen) {
101 $buf = $stream->read($maxLen - $len);
107 $len = strlen($buffer);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DGelfMessageFormatter.php110 $len = 200 + strlen((string) $record['message']) + strlen($this->systemName);
112 if ($len > $this->maxLength) {
130 $len = strlen($this->extraPrefix . $key . $val);
131 if ($len > $this->maxLength) {
141 $len = strlen($this->contextPrefix . $key . $val);
142 if ($len > $this->maxLength) {
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DHex.php45 $len = Binary::safeStrlen($binString);
46 for ($i = 0; $i < $len; ++$i) {
72 $len = Binary::safeStrlen($binString);
74 for ($i = 0; $i < $len; ++$i) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php321 $len = strlen($x);
322 $mod = $len % PHP_INT_SIZE;
324 $x = str_pad($x, $len + PHP_INT_SIZE - $mod, "\0", STR_PAD_LEFT);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1325 if ($len) {
1330 $pos = $len;
1436 if ($len) {
1441 $pos = $len;
1695 $cb = substr($ciphertext, $i, $len - $len % $block_size);
1700 if ($len) {
1703 $iv = substr_replace($iv, substr($ciphertext, -$len), 0, $len);
1704 $pos = $len;
1810 if ($len) {
3367 $len = strlen($str);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DCommon.php255 $len = ceil($modulo[0] / 8);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRC4.php295 $len = strlen($text);
296 for ($k = 0; $k < $len; ++$k) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php1173 $len = strlen($content);
1175 if (ord($content[$len - 1]) & 0x80) {
1180 while ($pos < $len) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php90 $len = (strlen($this->value) + 3) & 0xFFFFFFFC;
92 $x = str_pad($this->value, $len, chr(0), STR_PAD_LEFT);
95 for ($i = 0; $i < $len; $i += 4) {
H A DPHP.php1250 $len = count($val);
1251 while ($i < $len) {
1305 $len = count($val);
1308 while ($i != $len) {
1320 } elseif (++$i != $len) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php154 $len = strlen($x);
155 if (!$len) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php1250 $len = count($args) & 0x7FFFFFFE;
1251 for ($i = 0; $i < $len; $i += 2) {
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-normalizer/
H A DNormalizer.php123 $len = \strlen($s);
128 while ($i < $len) {
211 $len = \strlen($s);
213 while ($i < $len) {
250 $len -= $i;
/plugin/authgooglesheets/vendor/symfony/polyfill-php72/
H A DPhp72.php27 $len = \strlen($s);
29 for ($i = $len >> 1, $j = 0; $i < $len; ++$i, ++$j) {
43 $len = \strlen($s);
45 for ($i = 0, $j = 0; $i < $len; ++$i, ++$j) {
/plugin/authimap2/
H A Dauth.php448 $len = strlen($line);
449 for($i=0; $i<$len; $i++){
453 if ($i>=$len) break;
/plugin/authldaplocal/
H A Dauth.php639 $len = strlen($line);
640 for($i=0; $i<$len; $i++){
644 if ($i>=$len) break;
/plugin/authremoteuser/
H A Dauth.php383 $len = strlen($line);
384 for($i=0; $i<$len; $i++){
388 if ($i>=$len) break;
/plugin/authshibboleth/plugin/authshibboleth/
H A Dauth.php147 $len = strlen($line);
148 for($i=0; $i<$len; $i++){
152 if ($i>=$len) break;
/plugin/authsqlite/
H A Dauth.php338 $len = count($parts);
339 for ($i=$len - 1; $i > 0; $i--) {
/plugin/authucenter/lib/uc_client/model/
H A Duser.php43 $len = $this->dstrlen($username);
44 …if($len > 15 || $len < 3 || preg_match("/\s+|^c:\\con\\con|[%,\*\"\s\<\>\&]|$guestexp/is", $userna…
/plugin/authvk/
H A Dauth.php386 $len = strlen($line);
387 for($i=0; $i<$len; $i++){
391 if ($i>=$len) break;
/plugin/authyubikey/
H A Dauth.php.org360 $len = strlen($line);
361 for($i=0; $i<$len; $i++){
365 if ($i>=$len) break;
/plugin/autolink4/syntax/
H A Dallwords.php173 $len = strlen($test);
174 return !$len || substr($ns, 0, $len) == $test;
H A Dregex.php

12345678910>>...17