Home
last modified time | relevance | path

Searched refs:bytes (Results 1 – 16 of 16) sorted by relevance

/dokuwiki/_test/tests/inc/
Dcommon_php_to_byte.test.php28 * @param int $bytes
30 public function test_undefined($value, $bytes) { argument
31 $this->assertSame($bytes, php_to_byte($value));
Dhttpclient_http.test.php280 $data = $http->get($this->server . '/stream-bytes/5000?chunk_size=250');
/dokuwiki/_test/tests/lib/exe/
Dfetch_imagetoken.test.php86 $bytes = filesize(mediaFN($this->media));
91 $this->assertEquals(strlen($response->getContent()), $bytes);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
DEngine.php251 $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/
DTar.php526 * @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;
DZip.php553 $bytes = 0x00000000;
557 $bytes = (($bytes << 8) & 0xFFFFFFFF) | ord($byte);
558 if ($bytes == 0x504b0506) {
/dokuwiki/vendor/simplepie/simplepie/src/
DIRI.php535 $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/
DHTTPClient.php664 $bytes = fread($socket, $to_read);
665 if ($bytes === false)
667 $r_data .= $bytes;
668 $to_read -= strlen($bytes);
/dokuwiki/lib/scripts/
Dfileuploader.js463 _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/
Dlang.php157bytes até ao qual as imagens referenciadas em arquivos CSS devem ser embutidas diretamente no CSS …
/dokuwiki/inc/
Dcommon.php1773 * @param int $bytes already allocated memory (see above)
1779 function is_mem_available($mem, $bytes = 1_048_576) argument
1792 $used = $bytes;
Dmedia.php654 $bytes = fread($fh, 256);
656 if (preg_match('/<(script|a|img|html|body|iframe)[\s>]/i', $bytes)) {
/dokuwiki/lib/plugins/config/lang/pt-br/
Dlang.php163 $lang['cssdatauri'] = 'Tamanho máximo em bytes para o qual as imagens referenciadas em a…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
DASN1.php1040 $bytes = explode(' ', rtrim(chunk_split($bits, 8, ' ')));
1041 foreach ($bytes as $byte) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
DSSH2.php5571 * @param int $bytes
5573 public function bytesUntilKeyReexchange($bytes) argument
5575 $this->doKeyReexchangeAfterXBytes = $bytes;
/dokuwiki/
Dcomposer.lock297 … "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."