Searched refs:bytes (Results 1 – 16 of 16) sorted by relevance
/dokuwiki/_test/tests/inc/ |
D | common_php_to_byte.test.php | 28 * @param int $bytes 30 public function test_undefined($value, $bytes) { argument 31 $this->assertSame($bytes, php_to_byte($value));
|
D | httpclient_http.test.php | 280 $data = $http->get($this->server . '/stream-bytes/5000?chunk_size=250');
|
/dokuwiki/_test/tests/lib/exe/ |
D | fetch_imagetoken.test.php | 86 $bytes = filesize(mediaFN($this->media)); 91 $this->assertEquals(strlen($response->getContent()), $bytes);
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/ |
D | Engine.php | 251 $bytes = $temp->toBytes(); 253 if (!strlen($bytes)) { // eg. if the number we're trying to convert is -1 254 $bytes = chr(0); 257 if (ord($bytes[0]) & 0x80) { 258 $bytes = chr(0) . $bytes; 261 return $comparison < 0 ? ~$bytes : $bytes; 589 $bytes = $bits >> 3; 590 $min = str_repeat(chr(0), $bytes); 591 $max = str_repeat(chr(0xFF), $bytes);
|
/dokuwiki/vendor/splitbrain/php-archive/src/ |
D | Tar.php | 526 * @param int $bytes seek to this position 528 protected function skipbytes($bytes) argument 531 @gzseek($this->fh, $bytes, SEEK_CUR); 535 while($bytes) { 536 $toread = min(8192, $bytes); 538 $bytes -= $toread; 541 @fseek($this->fh, $bytes, SEEK_CUR); 543 $this->position += $bytes;
|
D | Zip.php | 553 $bytes = 0x00000000; 557 $bytes = (($bytes << 8) & 0xFFFFFFFF) | ord($byte); 558 if ($bytes == 0x504b0506) {
|
/dokuwiki/vendor/simplepie/simplepie/src/ |
D | IRI.php | 535 $bytes = explode('%', $match[0]); 550 for ($i = 1, $len = count($bytes); $i < $len; $i++) { 551 $value = hexdec($bytes[$i]); 630 $string .= '%' . strtoupper($bytes[$j]); 634 $string .= chr(hexdec($bytes[$j])); 644 $string .= '%' . strtoupper($bytes[$j]);
|
/dokuwiki/inc/HTTP/ |
D | HTTPClient.php | 664 $bytes = fread($socket, $to_read); 665 if ($bytes === false) 667 $r_data .= $bytes; 668 $to_read -= strlen($bytes);
|
/dokuwiki/lib/scripts/ |
D | fileuploader.js | 463 _formatSize: function(bytes){ argument 466 bytes = bytes / 1024; 468 } while (bytes > 99); 470 return Math.max(bytes, 0.1).toFixed(1) + ['kB', 'MB', 'GB', 'TB', 'PB', 'EB'][i];
|
/dokuwiki/lib/plugins/config/lang/pt/ |
D | lang.php | 157 …bytes até ao qual as imagens referenciadas em arquivos CSS devem ser embutidas diretamente no CSS …
|
/dokuwiki/inc/ |
D | common.php | 1773 * @param int $bytes already allocated memory (see above) 1779 function is_mem_available($mem, $bytes = 1_048_576) argument 1792 $used = $bytes;
|
D | media.php | 654 $bytes = fread($fh, 256); 656 if (preg_match('/<(script|a|img|html|body|iframe)[\s>]/i', $bytes)) {
|
/dokuwiki/lib/plugins/config/lang/pt-br/ |
D | lang.php | 163 $lang['cssdatauri'] = 'Tamanho máximo em bytes para o qual as imagens referenciadas em a…
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ |
D | ASN1.php | 1040 $bytes = explode(' ', rtrim(chunk_split($bits, 8, ' '))); 1041 foreach ($bytes as $byte) {
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
D | SSH2.php | 5571 * @param int $bytes 5573 public function bytesUntilKeyReexchange($bytes) argument 5575 $this->doKeyReexchangeAfterXBytes = $bytes;
|
/dokuwiki/ |
D | composer.lock | 297 … "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
|