Home
last modified time | relevance | path

Searched refs:offset (Results 1 – 25 of 26) sorted by relevance

12

/dokuwiki/inc/Utf8/
H A DPhpString.php75 * @param int $offset number of UTF-8 characters offset (from left)
82 public static function substr($str, $offset, $length = null) argument
86 return mb_substr($str, $offset);
89 return mb_substr($str, $offset, $length);
108 $offset = (int)$offset;
113 if ($offset < 0 && $length < 0 && $length < $offset) return '';
119 if ($offset < 0) {
121 $offset = $strlen + $offset;
122 if ($offset < 0) $offset = 0;
126 if ($offset > 0) {
[all …]
/dokuwiki/data/media/wiki/
H A Ddokuwiki.svg4 <stop stop-color="#d69c00" offset="0"/>
5 <stop stop-color="#ffe658" offset="1"/>
8 <stop stop-color="#00a423" offset="0"/>
9 <stop stop-color="#00b427" offset="1"/>
12 <stop stop-color="#00b62b" offset="0"/>
13 <stop stop-color="#a1d784" offset="1"/>
17 <stop stop-color="#ede1ae" offset="0"/>
18 <stop stop-color="#fefdfa" offset="1"/>
21 <stop stop-color="#fbf6f0" offset="0"/>
22 <stop stop-color="#e9dac7" offset="1"/>
[all …]
/dokuwiki/lib/tpl/dokuwiki/images/
H A Ddokuwiki.svg4 <stop stop-color="#d69c00" offset="0"/>
5 <stop stop-color="#ffe658" offset="1"/>
8 <stop stop-color="#00a423" offset="0"/>
9 <stop stop-color="#00b427" offset="1"/>
12 <stop stop-color="#00b62b" offset="0"/>
13 <stop stop-color="#a1d784" offset="1"/>
17 <stop stop-color="#ede1ae" offset="0"/>
18 <stop stop-color="#fefdfa" offset="1"/>
21 <stop stop-color="#fbf6f0" offset="0"/>
22 <stop stop-color="#e9dac7" offset="1"/>
[all …]
H A Dpage-background.svg3 <stop offset="0" stop-color="#dddddd" />
4 <stop offset="0.1" stop-color="#eeeeee" />
5 <stop offset="0.4" stop-color="#fbfaf9" />
/dokuwiki/lib/images/interwiki/
H A Ddoku.svg1offset="0"/><stop style="stop-color:#3d9c32;stop-opacity:.79591835" offset="1"/></linearGradient><…
/dokuwiki/inc/
H A Dcompatibility.php65 * @param int $offset
69 function gzseek($zp, $offset, $whence = SEEK_SET) argument
71 return gzseek64($zp, $offset, $whence);
H A Dutf8.php100 function utf8_substr($str, $offset, $length = null) argument
103 return PhpString::substr($str, $offset, $length);
208 function utf8_strpos($haystack, $needle, $offset = 0) argument
211 return PhpString::strpos($haystack, $needle, $offset);
H A Dfulltext.php468 $offset = 0;
490 } elseif (preg_match('/' . $re3 . '/iu', $text, $match, PREG_OFFSET_CAPTURE, $offset)) {
491 } elseif (preg_match('/' . $re2 . '/iu', $text, $match, PREG_OFFSET_CAPTURE, $offset)) {
492 } elseif (preg_match('/' . $re1 . '/iu', $text, $match, PREG_OFFSET_CAPTURE, $offset)) {
516 } elseif ($offset == 0) {
542 $offset = $idx + strlen(PhpString::substr($text, $utf8_idx, $utf8_len));
543 $offset = Clean::correctIdx($text, $offset);
H A DJpegMeta.php1739 * @param integer $offset
1745 function _readIFD($data, $base, $offset, $isBigEndian, $mode) { argument
1748 $numEntries = $this->_getShort($data, $base + $offset, $isBigEndian);
1749 $offset += 2;
1757 $tag = $this->_getShort($data, $base + $offset, $isBigEndian);
1758 $offset += 2;
1759 $type = $this->_getShort($data, $base + $offset, $isBigEndian);
1760 $offset += 2;
1761 $count = $this->_getLong($data, $base + $offset, $isBigEndian);
1762 $offset += 4;
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPuTTY.php218 $offset = $publicLength + 4;
224 … $flavour = trim(preg_replace('#Key-Derivation: (.*)#', '$1', $key[$offset++]));
225 … $memory = trim(preg_replace('#Argon2-Memory: (\d+)#', '$1', $key[$offset++]));
226 … $passes = trim(preg_replace('#Argon2-Passes: (\d+)#', '$1', $key[$offset++]));
227 … $parallelism = trim(preg_replace('#Argon2-Parallelism: (\d+)#', '$1', $key[$offset++]));
228 … $salt = Strings::hex2bin(trim(preg_replace('#Argon2-Salt: ([0-9a-f]+)#', '$1', $key[$offset++])));
250 $privateLength = trim(preg_replace('#Private-Lines: (\d+)#', '$1', $key[$offset++]));
251 …$private = Strings::base64_decode(implode('', array_map('trim', array_slice($key, $offset, $privat…
262 $hmac = trim(preg_replace('#Private-MAC: (.+)#', '$1', $key[$offset + $privateLength]));
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DZip.php320 $offset = $this->dataOffset();
379 ), $offset + self::LOCAL_FILE_HEADER_CRC_OFFSET);
385 $offset,
424 $offset = $this->dataOffset();
447 $offset,
476 $offset = $this->dataOffset();
489 … $offset)); // offset of start of central directory with respect to the starting disk number
808 * @param int $offset
812 protected function writebytesAt($data, $offset) { argument
814 $this->memory .= substr_replace($this->memory, $data, $offset);
[all …]
/dokuwiki/inc/Form/
H A DForm.php126 * @param int $offset search from this position onward
129 public function findPositionByType($type, $offset = 0) argument
132 for ($pos = $offset; $pos < $len; $pos++) {
145 * @param int $offset search from this position onward
148 public function findPositionByAttribute($name, $value, $offset = 0) argument
151 for ($pos = $offset; $pos < $len; $pos++) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php383 * @param int $offset
387 private function _stream_seek($offset, $whence) argument
391 if ($offset < 0) {
396 $offset += $this->pos;
399 $offset += $this->size;
402 $this->pos = $offset;
/dokuwiki/lib/scripts/
H A Dbehaviour.js75 if($obj.offset().top != 0) {
77 scrollTop: $obj.offset().top - 100
H A Dtoolbar.js240 pos = $btn.offset();
259 $picker.offset({left: picker_left, top: pos.top+$btn[0].offsetHeight+3});
/dokuwiki/lib/scripts/jquery/
H A Djquery-ui.min.js6offset:!i&&!s?V(t).offset():{left:0,top:0},scrollLeft:e.scrollLeft(),scrollTop:e.scrollTop(),width… property
H A Djquery.min.js2offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l… method
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php429 $offset = 0;
436 $length = $offset + 2; // +2 for the EOC
439 $temp = self::decode_ber($content, $start + $offset, $content_pos);
445 $offset += $temp['length'];
744 $offset = ord($decoded['content'][0]);
745 $size = (strlen($decoded['content']) - 1) * 8 - $offset;
757 for ($j = $offset; $j < 8; $j++) {
760 $offset = 0;
1030 $offset = 8 - (($size + 1) & 7);
1031 $offset = $offset !== 8 ? $offset : 0;
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php390 $offset = 0;
394 $offset += $patternMatch ? 0 : 1;
405 return substr($m, $offset + 1);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php2131 $offset = $start;
2135 $offset = $stat !== false && $stat['size'] ? $stat['size'] : 0;
2137 $offset = 0;
2205 fseek($fp, $offset);
2206 $size -= $offset;
2234 $subtemp = $offset + $sent;
2357 * @param int $offset
2363 …public function get($remote_file, $local_file = false, $offset = 0, $length = -1, $progressCallbac… argument
2411 $start = $offset;
2455 $offset += strlen($temp);
[all …]
/dokuwiki/_test/core/
H A DphpQuery-onefile.php4129 public function offsetExists($offset) { argument
4130 return $this->find($offset)->size() > 0;
4135 public function offsetGet($offset) { argument
4136 return $this->find($offset);
4141 public function offsetSet($offset, $value) { argument
4143 $this->find($offset)->html($value);
4148 public function offsetUnset($offset) { argument
4343 function mb_strpos($haystack, $needle, $offset=0) argument
4345 return strpos($haystack, $needle, $offset);
4355 function mb_stripos($haystack, $needle, $offset=0) argument
[all …]
/dokuwiki/inc/parser/
H A Dxhtml.php669 $offset = 0;
671 $offset = $INPUT->str('codeblockOffset');
678 ['codeblock' => $offset + $this->_codeblock]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php911 $offset = self::$offset128;
915 $offset = self::$offset64;
935 $y = $k->multiply($y)->add($m->subtract($offset));
/dokuwiki/vendor/php81_bc/strftime/
H A DREADME.md147 | `%z` | The time zone offset | Example:…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1578 $offset = $this->block_size;
1581 $this->decryptIV = substr($ciphertext, -$offset, $this->block_size);

12