Home
last modified time | relevance | path

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

/php-src/ext/phar/tests/files/
H A Dphar_test.inc14 $clen = NULL;
24 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what)
36 if (empty($clen)) $clen = strlen($comp);
42 …$manifest .= pack('VVVVVV', $ulen, $time, $clen, $crc32, $flags|$perm, strlen($meta)) . (binary)$m…
/php-src/ext/phar/tests/cache_list/files/
H A Dphar_test.inc14 $clen = NULL;
24 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what)
36 if (empty($clen)) $clen = strlen($comp);
42 …$manifest .= pack('VVVVVV', $ulen, $time, $clen, $crc32, $flags|$perm, strlen($meta)) . (binary)$m…
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c696 int clen, dlen; in internal_dfa_match() local
1015 if (clen > 0) in internal_dfa_match()
1174 if (clen > 0) in internal_dfa_match()
1299 if (clen > 0) in internal_dfa_match()
1330 if (clen > 0) in internal_dfa_match()
1360 if (clen > 0) in internal_dfa_match()
1388 if (clen > 0) in internal_dfa_match()
1417 if (clen > 0) in internal_dfa_match()
1457 if (clen > 0) in internal_dfa_match()
1582 if (clen > 0) in internal_dfa_match()
[all …]
/php-src/ext/mbstring/
H A Dphp_mbregex.c718 int clen; /* byte-length of the current character */ in mb_regex_substitute() local
724 clen = (int) php_mb_mbchar_bytes(p, enc); in mb_regex_substitute()
725 if (clen != 1 || p == eos || p[0] != '\\') { in mb_regex_substitute()
727 smart_str_appendl(pbuf, p, clen); in mb_regex_substitute()
728 p += clen; in mb_regex_substitute()
732 clen = (int) php_mb_mbchar_bytes(++p, enc); in mb_regex_substitute()
733 if (clen != 1 || p == eos) { in mb_regex_substitute()
762 clen = (int) php_mb_mbchar_bytes(++p, enc); in mb_regex_substitute()
765 p += clen; in mb_regex_substitute()
776 if (clen != 1) { in mb_regex_substitute()
[all …]
/php-src/ext/phar/tests/
H A D013.phpt15 $files['a'] = array('cont'=>'a', 'ulen'=>2, 'clen'=>2);
H A D016b.phpt16 $files['a'] = array('cont'=>'a','flags'=>0x00001000, 'clen' => 1);
H A D011.phpt18 $files['a'] = array('cont'=>'a','ulen'=>1,'clen'=>2);
H A Dpharfileinfo_getcrc32.phpt19 $files['a/subdir/here'] = array('cont'=>'a','ulen'=>1,'clen'=>1);
H A D016.phpt17 …= array('cont'=>'a','comp'=> pack('H*', 'cbc80400'),'flags'=>0x00001000, 'ulen' => 1, 'clen' => 4);
/php-src/sapi/apache2handler/
H A Dsapi_apache2.c124 apr_off_t clen = 0; in php_apache_sapi_header_handler() local
126 if (APR_SUCCESS != apr_strtoff(&clen, val, (char **) NULL, 10)) { in php_apache_sapi_header_handler()
129 clen = (apr_off_t) strtol(val, (char **) NULL, 10); in php_apache_sapi_header_handler()
132 ap_set_content_length(ctx->r, clen); in php_apache_sapi_header_handler()
/php-src/Zend/
H A Dzend_constants.c188 size_t clen; in zend_get_halt_offset_constant() local
191 clen = strlen(cfilename); in zend_get_halt_offset_constant()
194 sizeof("__COMPILER_HALT_OFFSET__") - 1, cfilename, clen, 0); in zend_get_halt_offset_constant()
H A Dzend_API.c3749 size_t clen; in zend_is_callable_check_func() local
3794 clen = colon - Z_STRVAL_P(callable); in zend_is_callable_check_func()
3795 mlen = Z_STRLEN_P(callable) - clen - 2; in zend_is_callable_check_func()
3810 cname = zend_string_init_interned(Z_STRVAL_P(callable), clen, 0); in zend_is_callable_check_func()
3844 mname = zend_string_init(Z_STRVAL_P(callable) + clen + 2, mlen, 0); in zend_is_callable_check_func()
/php-src/ext/iconv/
H A Diconv.c423 size_t clen = strlen(charset); in _php_check_ignore() local
424 if (clen >= 9 && strcmp("//IGNORE", charset+clen-8) == 0) { in _php_check_ignore()
427 if (clen >= 19 && strcmp("//IGNORE//TRANSLIT", charset+clen-18) == 0) { in _php_check_ignore()
/php-src/sapi/fpm/tests/
H A Dfcgi.inc561 $clen = strlen($content);
566 . chr(($clen >> 8 ) & 0xFF) /* contentLengthB1 */
567 . chr($clen & 0xFF) /* contentLengthB0 */
/php-src/ext/phar/
H A Dzip.c1510 size_t clen; in phar_zip_flush() local
1511 int ret = php_stream_copy_to_stream_ex(pass.centralfp, pass.filefp, PHP_STREAM_COPY_ALL, &clen); in phar_zip_flush()
1512 if (SUCCESS != ret || clen != cdir_size) { in phar_zip_flush()
/php-src/sapi/phpdbg/
H A Dphpdbg.c335 size_t clen, mlen; in PHP_FUNCTION() local
337 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &class, &clen, &method, &mlen) == FAILURE) { in PHP_FUNCTION()

Completed in 74 milliseconds