Home
last modified time | relevance | path

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

12

/dokuwiki/vendor/simplepie/simplepie/src/
H A DGzdecode.php207 $len = 0;
252 $len = current(unpack('v', substr($this->compressed_data, $this->position, 2)));
256 $this->min_compressed_size += $len + 4;
259 $this->extra_field = substr($this->compressed_data, $this->position, $len);
260 $this->position += $len;
269 $len = strcspn($this->compressed_data, "\x00", $this->position);
272 $this->min_compressed_size += $len + 1;
275 $this->filename = substr($this->compressed_data, $this->position, $len);
276 $this->position += $len + 1;
285 $len
[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/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php226 $len = strspn($this->data, '0123456789.', 5);
227 $this->http_version = substr($this->data, 5, $len);
228 $this->position += 5 + $len;
246 if ($len = strspn($this->data, '0123456789', $this->position)) {
247 $this->status_code = (int) substr($this->data, $this->position, $len);
248 $this->position += $len;
260 $len = strcspn($this->data, "\x0A", $this->position);
261 $this->reason = trim(substr($this->data, $this->position, $len), "\x09\x0D\x20");
262 $this->position += $len + 1;
299 $len
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DRC4.php266 $len = strlen($text);
267 for ($k = 0; $k < $len; ++$k) {
/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);
101 } elseif ($len == 32) {
103 } elseif ($len == 40) {
105 } elseif ($len == 16) {
107 } elseif ($len == 41 && $hash[0] == '*') {
109 } elseif ($len == 34) {
129 * @param int $len The length of the salt
132 public function gen_salt($len = 32)
136 for ($i = 0; $i < $len; $i++) {
149 * @param int $len Th
138 gen_salt($len = 32) global() argument
157 init_salt(& $salt, $len = 32, $cut = true) global() argument
[all...]
H A DDifferenceEngine.php412 $len = count($lines);
430 while ($i < $len && ! $changed[$i]) {
438 if ($i == $len)
444 while (++$i < $len && $changed[$i])
475 $corresponding = $j < $other_len ? $i : $len;
484 while ($i < $len && $lines[$start] == $lines[$i]) {
487 while ($i < $len && $changed[$i])
/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 DUnicode.php44 $len = strlen($str);
46 for ($i = 0; $i < $len; $i++) {
/dokuwiki/inc/lang/sk/
H A Dedit.txt1 Upravte stránku a stlačte ''Uložiť''. Na stránke [[wiki:syntax]] sa môžete dozvedieť viac o Wiki syntaxi. Prosím upravujte stránky, len pokiaľ ich môžete **zdokonaliť**. Pokiaľ si chcete niečo len vyskúšať, použite [[playground:playground| pieskovisko]].
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.php208 $len = strlen($this->file->body);
211 while ($pos < $len) {
230 if ($pos < $len && ($pos = strpos($this->file->body, '-->', $pos)) !== false) {
236 if ($pos < $len && ($pos = strpos($this->file->body, '>', $pos)) !== false) {
242 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/lib/plugins/config/core/
H A DConfigParser.php58 $len = count($arr);
59 for ($j = 0; $j < $len; $j++) {
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/
H A DEntities.php133 if ($len = strspn($this->data, $chars, $this->position)) {
134 $data = substr($this->data, $this->position, $len);
136 $this->position += $len;
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DZip.php687 $value = substr($header, 0, $set['len']);
688 $header = substr($header, $set['len']);
901 * @param int $len length of the uncompressed data
904 * @param boolean|null $comp if compression is used, if null it's determined from $len != $clen
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
951 * @param boolean|null $comp if compression is used, if null it's determined from $len != $clen
954 protected function makeLocalFileHeader($ts, $crc, $len, argument
992 makeCrcAndSize($crc, $len, $clen) global() argument
[all...]
H A DTar.php334 $len = strlen($data);
335 $fileinfo->setSize($len);
338 for ($s = 0; $s < $len; $s += 512) {
/dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/
H A DParser.php202 $len = strcspn($this->data, $quote, $this->position);
204 $value = substr($this->data, $this->position, $len);
205 $this->position += $len + 1;
/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/lib/scripts/
H A Dfileuploader.js33 var len = arr.length;
35 if (from < 0) from += len;
37 for (; from < len; from++){
171 var len = candidates.length;
173 for (var i = 0; i < len; i++){
223 for (var i = 0, len = obj.length; i < len; ++i){
886 var len = this._queue.push(id);
893 if (len <= this._options.maxConnections){
/dokuwiki/lib/exe/
H A Dcss.php678 $len = strlen($line);
680 while ($i < $len) {
686 $i = $len;

12