Home
last modified time | relevance | path

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

/PHP-7.4/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-7.4/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-7.4/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c694 int clen, dlen; in internal_dfa_match() local
1013 if (clen > 0) in internal_dfa_match()
1168 if (clen > 0) in internal_dfa_match()
1268 if (clen > 0) in internal_dfa_match()
1299 if (clen > 0) in internal_dfa_match()
1329 if (clen > 0) in internal_dfa_match()
1357 if (clen > 0) in internal_dfa_match()
1386 if (clen > 0) in internal_dfa_match()
1426 if (clen > 0) in internal_dfa_match()
1527 if (clen > 0) in internal_dfa_match()
[all …]
/PHP-7.4/ext/mbstring/
H A Dphp_mbregex.c717 int clen; /* byte-length of the current character */ in mb_regex_substitute() local
723 clen = (int) php_mb_mbchar_bytes_ex(p, enc); in mb_regex_substitute()
724 if (clen != 1 || p == eos || p[0] != '\\') { in mb_regex_substitute()
726 smart_str_appendl(pbuf, p, clen); in mb_regex_substitute()
727 p += clen; in mb_regex_substitute()
731 clen = (int) php_mb_mbchar_bytes_ex(++p, enc); in mb_regex_substitute()
732 if (clen != 1 || p == eos) { in mb_regex_substitute()
760 clen = (int) php_mb_mbchar_bytes_ex(++p, enc); in mb_regex_substitute()
763 p += clen; in mb_regex_substitute()
774 if (clen != 1) { in mb_regex_substitute()
[all …]
/PHP-7.4/ext/phar/tests/
H A D013.phpt15 $files['a'] = array('cont'=>'a', 'ulen'=>2, 'clen'=>2);
H A D011.phpt18 $files['a'] = array('cont'=>'a','ulen'=>1,'clen'=>2);
H A D016b.phpt16 $files['a'] = array('cont'=>'a','flags'=>0x00001000, 'clen' => 1);
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-7.4/sapi/apache2handler/
H A Dsapi_apache2.c120 apr_off_t clen = 0; in php_apache_sapi_header_handler() local
122 if (APR_SUCCESS != apr_strtoff(&clen, val, (char **) NULL, 10)) { in php_apache_sapi_header_handler()
125 clen = (apr_off_t) strtol(val, (char **) NULL, 10); in php_apache_sapi_header_handler()
128 ap_set_content_length(ctx->r, clen); in php_apache_sapi_header_handler()
/PHP-7.4/Zend/
H A Dzend_constants.c218 size_t clen; in zend_get_special_constant() local
221 clen = strlen(cfilename); in zend_get_special_constant()
224 sizeof("__COMPILER_HALT_OFFSET__") - 1, cfilename, clen, 0); in zend_get_special_constant()
H A Dzend_API.c3019 size_t clen; in zend_is_callable_check_func() local
3064 clen = colon - Z_STRVAL_P(callable); in zend_is_callable_check_func()
3065 mlen = Z_STRLEN_P(callable) - clen - 2; in zend_is_callable_check_func()
3080 cname = zend_string_init(Z_STRVAL_P(callable), clen, 0); in zend_is_callable_check_func()
3092 mname = zend_string_init(Z_STRVAL_P(callable) + clen + 2, mlen, 0); in zend_is_callable_check_func()
/PHP-7.4/sapi/fpm/tests/
H A Dfcgi.inc304 $clen = strlen($content);
309 . chr(($clen >> 8 ) & 0xFF) /* contentLengthB1 */
310 . chr($clen & 0xFF) /* contentLengthB0 */
/PHP-7.4/ext/iconv/
H A Diconv.c520 size_t clen = strlen(charset); in _php_check_ignore() local
521 if (clen >= 9 && strcmp("//IGNORE", charset+clen-8) == 0) { in _php_check_ignore()
524 if (clen >= 19 && strcmp("//IGNORE//TRANSLIT", charset+clen-18) == 0) { in _php_check_ignore()
/PHP-7.4/ext/phar/
H A Dzip.c1493 size_t clen; in phar_zip_flush() local
1494 int ret = php_stream_copy_to_stream_ex(pass.centralfp, pass.filefp, PHP_STREAM_COPY_ALL, &clen); in phar_zip_flush()
1495 if (SUCCESS != ret || clen != cdir_size) { in phar_zip_flush()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg.c368 size_t clen = 0, mlen = 0; in PHP_FUNCTION() local
370 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &class, &clen, &method, &mlen) == FAILURE) { in PHP_FUNCTION()

Completed in 67 milliseconds