Home
last modified time | relevance | path

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

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php354 * consists of two 512 blocks of zero bytes"
436 * @param int $length bytes to read
455 * @return int number of bytes written
480 * @param int $bytes seek to this position
482 protected function skipbytes($bytes) argument
485 @gzseek($this->fh, $bytes, SEEK_CUR);
489 while($bytes) {
490 $toread = min(8192, $bytes);
492 $bytes -= $toread;
495 @fseek($this->fh, $bytes, SEEK_CU
[all...]
H A DZip.php553 $bytes = 0x00000000;
557 $bytes = (($bytes << 8) & 0xFFFFFFFF) | ord($byte);
558 if ($bytes == 0x504b0506) {
788 * @return int number of bytes written
810 * @return int number of bytes written
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php420 // Now replace any bytes that aren't allowed with their pct-encoded versions
526 * Removes sequences of percent encoded bytes that represent UTF-8
536 $bytes = explode('%', $match[0]);
539 // there are no bytes remaining in the current sequence (unsurprising
551 for ($i = 1, $len = count($bytes); $i < $len; $i++) {
552 $value = hexdec($bytes[$i]);
631 $string .= '%' . strtoupper($bytes[$j]);
635 $string .= chr(hexdec($bytes[$j]));
641 // If we have any bytes left over they are invalid (i.e., we are
645 $string .= '%' . strtoupper($bytes[
[all...]
/dokuwiki/inc/HTTP/
H A DHTTPClient.php617 * Reads up to a given number of bytes or throws an exception if the
621 * @param int $nbytes Number of bytes to read
640 'Timeout while reading %s after %d bytes (%.3fs)',
664 $bytes = fread($socket, $to_read);
665 if ($bytes === false)
667 $r_data .= $bytes;
668 $to_read -= strlen($bytes);
/dokuwiki/lib/scripts/
H A Dfileuploader.js463 _formatSize: function(bytes){
466 bytes = bytes / 1024;
468 } while (bytes > 99);
470 return Math.max(bytes, 0.1).toFixed(1) + ['kB', 'MB', 'GB', 'TB', 'PB', 'EB'][i];
1125 // current loaded size in bytes for each file
1165 * Returns uploaded bytes for file identified by id
/dokuwiki/lib/plugins/config/lang/pt/
H A Dlang.php124 $lang['fetchsize'] = 'Tamanho máximo (bytes) que o fetch.php pode baixar de URLs externas, ex. para cache e redimensionamento de imagens externas.';
156 $lang['cssdatauri'] = 'Tamanho em bytes até ao qual as imagens referenciadas em arquivos CSS devem ser embutidas diretamente no CSS para reduzir a carga de pedidos HTTP extra. <code>400</code> a <code>600</code> bytes é um bom valor. Escolher <code>0</code> para desativar.';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DRSA.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php641 * Return the size of a BigInteger in bytes
/dokuwiki/inc/
H A Dcommon.php1204 * and gives the range of the section in bytes - no
1802 * function just assumes $bytes of already allocated memory
1807 * @param int $mem Size of memory you want to allocate in bytes
1808 * @param int $bytes already allocated memory (see above)
1811 function is_mem_available($mem, $bytes = 1_048_576)
1817 // parse limit to bytes
1824 $used = $bytes;
1783 is_mem_available($mem, $bytes = 1048576) global() argument
H A Dmedia.php654 $bytes = fread($fh, 256);
656 if (preg_match('/<(script|a|img|html|body|iframe)[\s>]/i', $bytes)) {
1611 * @returns int size in bytes
/dokuwiki/lib/plugins/config/lang/pt-br/
H A Dlang.php130 $lang['fetchsize'] = 'Tamanho máximo (em bytes) que o "fetch.php" pode transferir do exterior';
161 $lang['cssdatauri'] = 'Tamanho máximo em bytes para o qual as imagens referenciadas em arquivos CSS devam ser incorporadas na folha de estilos (o arquivo CSS) para reduzir o custo dos pedidos HTTP. Essa técnica não funcionará na versões do IE < 8! Valores de <code>400</code> a <code>600</code> são bons. Defina o valor <code>0</code> para desativar.';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php268 // technically, the long form of the length can be represented by up to 126 octets (bytes), but we'll only
1040 $bytes = explode(' ', rtrim(chunk_split($bits, 8, ' ')));
1041 foreach ($bytes as $byte) {
1153 //throw new \RuntimeException("Object identifier size is limited to 4096 bytes ($len bytes present)");