Home
last modified time | relevance | path

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

12

/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/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...]
H A DIRI.php551 for ($i = 1, $len = count($bytes); $i < $len; $i++) {
644 for ($j = $start; $j < $len; $j++) {
H A DMisc.php1891 $len = strcspn($string, $space_characters, $position);
1892 $tokens[] = substr($string, $position, $len);
1893 $position += $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/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-archive/src/
H A DTar.php334 $len = strlen($data);
335 $fileinfo->setSize($len);
338 for ($s = 0; $s < $len; $s += 512) {
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...]
/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/splitbrain/php-jsstrip/src/
H A DJSStrip.php122 $len = strlen($e);
123 $idx = $idx - $j + 1 - $len;
124 return substr($source, $idx, $len) === $e;

12