Searched refs:csize (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_4/ext/phar/phar/ |
| H A D | pharcommand.inc | 1475 $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);
|
| /PHP_5_4/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 685 grapheme_extract_charcount_iter(UBreakIterator *bi, int32_t csize, unsigned char *pstr, int32_t str_len) argument 698 if ( pos > csize ) {
|
| /PHP_5_4/ext/standard/ |
| H A D | streamsfuncs.c | 1440 long csize; local 1444 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &zstream, &csize) == FAILURE) { 1448 if (csize <= 0) { 1449 php_error_docref(NULL TSRMLS_CC, E_WARNING, "The chunk size must be a positive integer, given %ld", csize); 1456 if (csize > INT_MAX) { 1463 ret = php_stream_set_option(stream, PHP_STREAM_OPTION_SET_CHUNK_SIZE, (int)csize, NULL);
|
Completed in 8 milliseconds