Home
last modified time | relevance | path

Searched refs:csize (Results 1 – 3 of 3) sorted by relevance

/PHP-5.5/ext/standard/
H A Dstreamsfuncs.c1444 long csize; in PHP_FUNCTION() local
1448 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &zstream, &csize) == FAILURE) { in PHP_FUNCTION()
1452 if (csize <= 0) { in PHP_FUNCTION()
1453 …r_docref(NULL TSRMLS_CC, E_WARNING, "The chunk size must be a positive integer, given %ld", csize); in PHP_FUNCTION()
1460 if (csize > INT_MAX) { in PHP_FUNCTION()
1467 ret = php_stream_set_option(stream, PHP_STREAM_OPTION_SET_CHUNK_SIZE, (int)csize, NULL); in PHP_FUNCTION()
/PHP-5.5/ext/intl/grapheme/
H A Dgrapheme_string.c703 grapheme_extract_charcount_iter(UBreakIterator *bi, int32_t csize, unsigned char *pstr, int32_t str… in grapheme_extract_charcount_iter() argument
716 if ( pos > csize ) { in grapheme_extract_charcount_iter()
/PHP-5.5/ext/phar/phar/
H A Dpharcommand.inc1475 $csize = 0;
1487 $csize += $ent->getCompressedSize();
1495 $csize += $ent->getSize();
1511 $infos['Compressed-size'] = $csize;
1512 $infos['Compression-ratio'] = sprintf('%.3g%%', $usize ? ($csize * 100) / $usize : 100);

Completed in 40 milliseconds