Home
last modified time | relevance | path

Searched refs:chunk (Results 1 – 7 of 7) sorted by last modified time

/dokuwiki/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php214 $chunk = $this->pad($val, $width);
216 $chunk = $this->colors->wrap($chunk, $colors[$col]);
218 $out .= $chunk;
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php559 // Break M into 1024 byte chunks (final chunk may be shorter)
564 // For each chunk, except the last: endian-adjust, NH hash
575 // For the last chunk: pad to 32-byte boundary, endian-adjust,
1342 foreach ($chunks as $chunk) {
1345 $temp = new BigInteger(Strings::shift($chunk, 8), 256);
1372 // Initialize hash value for this chunk
1427 // Add this chunk's hash to result so far
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php129 * consecutive calls to getRevisionInfo. For large changelog files, only the chunk
242 // chunk backwards
247 // was the chunk big enough? if not, take another bite
255 // read chunk
256 $chunk = '';
257 $read_size = max($tail - $finger, 0); // found chunk size
265 $chunk .= $tmp;
267 $tmp = explode("\n", $chunk);
270 // combine with previous chunk
274 // next chunk
[all...]
H A DChangeLogTrait.php92 * Set chunk size for file reading
106 * If file larger than $chunk_size, only chunk is read that could contain $rev.
109 * lines in first or last chunk, but they obviously does not contain $rev.
137 // read by chunk
146 // find chunk
165 // could not find chunk, assume requested rev is missing
176 * Read chunk and return array with lines of given chunk.
180 * @param int $head start point chunk
181 * @param int $tail end point chunk
[all...]
/dokuwiki/inc/
H A Dhttputils.php169 $chunk = ($len > HTTP_CHUNK_SIZE) ? HTTP_CHUNK_SIZE : $len;
170 while (!feof($fh) && $chunk > 0) {
172 echo fread($fh, $chunk);
174 $len -= $chunk;
175 $chunk = ($len > HTTP_CHUNK_SIZE) ? HTTP_CHUNK_SIZE : $len;
H A DDifferenceEngine.php262 for ($chunk = 0; $chunk < $nchunks; $chunk++) {
263 if ($chunk > 0)
265 $ymids[$i][$chunk-1] = $this->seq[$i];
267 $x1 = $xoff + (int)(($numer + ($xlim-$xoff)*$chunk) / $nchunks);