Home
last modified time | relevance | path

Searched refs:len (Results 1 – 25 of 40) sorted by relevance

12

/dokuwiki/vendor/simplepie/simplepie/src/
H A DGzdecode.php206 $len = 0;
251 $len = current(unpack('v', substr($this->compressed_data, $this->position, 2)));
255 $this->min_compressed_size += $len + 4;
258 $this->extra_field = substr($this->compressed_data, $this->position, $len);
259 $this->position += $len;
268 $len = strcspn($this->compressed_data, "\x00", $this->position);
271 $this->min_compressed_size += $len + 1;
274 $this->filename = substr($this->compressed_data, $this->position, $len);
275 $this->position += $len + 1;
284 $len = strcspn($this->compressed_data, "\x00", $this->position);
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/
H A DIEEE.php41 $len = strlen($sig);
42 if ($len & 1) {
46 $r = new BigInteger(substr($sig, 0, $len >> 1), 256);
47 $s = new BigInteger(substr($sig, $len >> 1), 256);
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php225 $len = strspn($this->data, '0123456789.', 5);
226 $this->http_version = substr($this->data, 5, $len);
227 $this->position += 5 + $len;
245 if ($len = strspn($this->data, '0123456789', $this->position)) {
246 $this->status_code = (int) substr($this->data, $this->position, $len);
247 $this->position += $len;
259 $len = strcspn($this->data, "\x0A", $this->position);
260 $this->reason = trim(substr($this->data, $this->position, $len), "\x09\x0D\x20");
261 $this->position += $len + 1;
298 $len = strcspn($this->data, "\x0A:", $this->position);
[all …]
/dokuwiki/vendor/simplepie/simplepie/
H A Dautoloader.php66 $len = strlen($prefix); variable
67 if (strncmp($prefix, $class, $len) !== 0) {
73 $relative_class = substr($class, $len);
/dokuwiki/inc/
H A Dhttputils.php131 $len = $end - $start + 1;
132 $ranges[] = [$start, $end, $len];
152 [$start, $end, $len] = $ranges[$i];
161 header("Content-Length: $len");
169 $chunk = ($len > HTTP_CHUNK_SIZE) ? HTTP_CHUNK_SIZE : $len;
174 $len -= $chunk;
175 $chunk = ($len > HTTP_CHUNK_SIZE) ? HTTP_CHUNK_SIZE : $len;
H A DSafeFN.class.php148 $len = strlen($sub);
152 for ($i = ($converted ? 1 : 0); $i < $len; $i++) {
156 } elseif ($len == 1) {
H A DPassHash.php45 $len = strlen($hash);
104 } elseif ($len == 32) {
106 } elseif ($len == 40) {
108 } elseif ($len == 16) {
110 } elseif ($len == 41 && $hash[0] == '*') {
112 } elseif ($len == 34) {
132 * @param int $len The length of the salt
135 public function gen_salt($len = 32) argument
139 for ($i = 0; $i < $len; $i++) {
152 * @param int $len The length of the salt
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1207 $len = strlen($plaintext);
1212 if ($len >= $max) {
1214 $len -= $max;
1217 $i = $len;
1218 $pos += $len;
1219 $len = 0;
1227 $overflow = $len % $this->block_size;
1233 $size = $len - $overflow;
1238 } elseif ($len) {
1247 if (($len = strlen($ciphertext)) >= $this->block_size) {
[all …]
/dokuwiki/inc/Utf8/
H A DClean.php34 $len = strlen($str);
35 for ($i = 0; $i < $len; $i++) {
46 if ((++$i === $len) || ((ord($str[$i]) & 0xC0) !== 0x80))
66 $len = strlen($str);
67 for ($i = 0; $i < $len; $i++) {
H A DConversion.php187 $len = strlen($string);
188 for ($i = $len >> 1, $j = 0; $i < $len; ++$i, ++$j) {
H A DUnicode.php44 $len = strlen($str);
46 for ($i = 0; $i < $len; $i++) {
/dokuwiki/vendor/paragonie/constant_time_encoding/src/
H A DHex.php50 $len = Binary::safeStrlen($binString);
51 for ($i = 0; $i < $len; ++$i) {
79 $len = Binary::safeStrlen($binString);
81 for ($i = 0; $i < $len; ++$i) {
/dokuwiki/inc/lang/sk/
H A Dedit.txt1 …c o Wiki syntaxi. Prosím upravujte stránky, len pokiaľ ich môžete **zdokonaliť**. Pokiaľ si chcete…
H A Dupdateprofile.txt3 Potrebujete vyplniť len tie polia, ktoré chcete zmeniť. Nemôžete zmeniť prihlasovacie meno.
/dokuwiki/lib/plugins/styling/
H A Daction.php44 $len = count($event->data['link']);
45 for ($i = 0; $i < $len; $i++) {
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php198 $len = count($wrapped[$col]);
199 if ($len > $maxlen) {
200 $maxlen = $len;
235 * @param int $len
238 protected function pad($string, $len) argument
241 if ($strlen > $len) return $string;
243 $pad = $len - $strlen;
/dokuwiki/vendor/simplepie/simplepie/src/Content/Type/
H A DSniffer.php207 $len = strlen($this->file->body);
210 while ($pos < $len) {
229 if ($pos < $len && ($pos = strpos($this->file->body, '-->', $pos)) !== false) {
235 if ($pos < $len && ($pos = strpos($this->file->body, '>', $pos)) !== false) {
241 if ($pos < $len && ($pos = strpos($this->file->body, '?>', $pos)) !== false) {
/dokuwiki/inc/Form/
H A DForm.php131 $len = $this->elementCount();
132 for ($pos = $offset; $pos < $len; $pos++) {
150 $len = $this->elementCount();
151 for ($pos = $offset; $pos < $len; $pos++) {
437 $len = count($this->elements);
439 for ($pos = 0; $pos < $len; $pos++) {
447 $len++;
455 $len++;
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/
H A DEntities.php132 if ($len = strspn($this->data, $chars, $this->position)) {
133 $data = substr($this->data, $this->position, $len);
135 $this->position += $len;
/dokuwiki/lib/plugins/config/core/
H A DConfigParser.php58 $len = count($arr);
59 for ($j = 0; $j < $len; $j++) {
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DZip.php901 * @param int $len length of the uncompressed data
907 protected function makeCentralFileRecord($offset, $ts, $crc, $len, $clen, $name, $comp = null) argument
909 if(is_null($comp)) $comp = $len != $clen;
929 $header .= pack('V', $len); // uncompressed size
948 * @param int $len length of the uncompressed data
954 protected function makeLocalFileHeader($ts, $crc, $len, $clen, $name, $comp = null) argument
956 if(is_null($comp)) $comp = $len != $clen;
975 $header .= pack('V', $len); // uncompressed size
988 * @param int $len length of the uncompressed data
992 protected function makeCrcAndSize($crc, $len, $clen) { argument
[all …]
/dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/
H A DParser.php201 $len = strcspn($this->data, $quote, $this->position);
203 $value = substr($this->data, $this->position, $len);
204 $this->position += $len + 1;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRC4.php266 $len = strlen($text);
267 for ($k = 0; $k < $len; ++$k) {
/dokuwiki/vendor/splitbrain/php-jsstrip/src/
H A DJSStrip.php122 $len = strlen($e);
123 $idx = $idx - $j + 1 - $len;
124 return substr($source, $idx, $len) === $e;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php315 $len = strlen($x);
316 $mod = $len % PHP_INT_SIZE;
318 $x = str_pad($x, $len + PHP_INT_SIZE - $mod, "\0", STR_PAD_LEFT);

12