/PHP-7.3/ext/phar/tests/files/ |
H A D | phar_test.inc | 16 $clen = NULL; 26 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what) 38 if (empty($clen)) $clen = strlen($comp); 44 …$manifest .= pack('VVVVVV', $ulen, $time, $clen, $crc32, $flags|$perm, strlen($meta)) . (binary)$m…
|
/PHP-7.3/ext/phar/tests/cache_list/files/ |
H A D | phar_test.inc | 16 $clen = NULL; 26 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what) 38 if (empty($clen)) $clen = strlen($comp); 44 …$manifest .= pack('VVVVVV', $ulen, $time, $clen, $crc32, $flags|$perm, strlen($meta)) . (binary)$m…
|
/PHP-7.3/ext/pcre/pcre2lib/ |
H A D | pcre2_dfa_match.c | 682 int clen, dlen; in internal_dfa_match() local 1001 if (clen > 0) in internal_dfa_match() 1154 if (clen > 0) in internal_dfa_match() 1254 if (clen > 0) in internal_dfa_match() 1285 if (clen > 0) in internal_dfa_match() 1315 if (clen > 0) in internal_dfa_match() 1343 if (clen > 0) in internal_dfa_match() 1372 if (clen > 0) in internal_dfa_match() 1412 if (clen > 0) in internal_dfa_match() 1513 if (clen > 0) in internal_dfa_match() [all …]
|
/PHP-7.3/ext/mbstring/ |
H A D | php_mbregex.c | 717 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.3/ext/phar/tests/ |
H A D | 013.phpt | 15 $files['a'] = array('cont'=>'a', 'ulen'=>2, 'clen'=>2);
|
H A D | 011.phpt | 18 $files['a'] = array('cont'=>'a','ulen'=>1,'clen'=>2);
|
H A D | 016b.phpt | 16 $files['a'] = array('cont'=>'a','flags'=>0x00001000, 'clen' => 1);
|
H A D | pharfileinfo_getcrc32.phpt | 19 $files['a/subdir/here'] = array('cont'=>'a','ulen'=>1,'clen'=>1);
|
H A D | 016.phpt | 17 …= array('cont'=>'a','comp'=> pack('H*', 'cbc80400'),'flags'=>0x00001000, 'ulen' => 1, 'clen' => 4);
|
/PHP-7.3/sapi/apache2handler/ |
H A D | sapi_apache2.c | 120 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.3/ext/mbstring/oniguruma/src/ |
H A D | unicode.c | 442 int clen; in onigenc_unicode_get_case_fold_codes_by_str() local 455 clen = enclen(enc, p); in onigenc_unicode_get_case_fold_codes_by_str() 456 len += clen; in onigenc_unicode_get_case_fold_codes_by_str() 469 p += clen; in onigenc_unicode_get_case_fold_codes_by_str() 479 clen = enclen(enc, p); in onigenc_unicode_get_case_fold_codes_by_str() 480 len += clen; in onigenc_unicode_get_case_fold_codes_by_str()
|
H A D | regcomp.c | 2582 int clen, elen; in get_char_len_node1() local 2584 r = get_char_len_node1(NODE_BODY(node), reg, &clen, level); in get_char_len_node1() 2597 if (clen + tlen != elen) { in get_char_len_node1() 5230 int n, clen; in set_sunday_quick_search_or_bmh_skip_table() local 5264 clen = enclen(enc, p); in set_sunday_quick_search_or_bmh_skip_table() 5265 if (p + clen > end) clen = (int )(end - p); in set_sunday_quick_search_or_bmh_skip_table() 5268 for (j = 0; j < clen; j++) { in set_sunday_quick_search_or_bmh_skip_table() 5279 for (j = 0; j < clen; j++) { in set_sunday_quick_search_or_bmh_skip_table() 5288 p += clen; in set_sunday_quick_search_or_bmh_skip_table()
|
H A D | regparse.c | 6825 size_t clen; in parse_callout_args() local 6829 clen = p - e; in parse_callout_args() 6830 if (bufend + clen > buf + MAX_CALLOUT_ARG_BYTE_LENGTH) in parse_callout_args() 6833 xmemcpy(bufend, e, clen); in parse_callout_args() 6834 bufend += clen; in parse_callout_args()
|
/PHP-7.3/Zend/ |
H A D | zend_constants.c | 218 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 D | zend_API.c | 3002 size_t clen; in zend_is_callable_check_func() local 3047 clen = colon - Z_STRVAL_P(callable); in zend_is_callable_check_func() 3048 mlen = Z_STRLEN_P(callable) - clen - 2; in zend_is_callable_check_func() 3063 cname = zend_string_init(Z_STRVAL_P(callable), clen, 0); in zend_is_callable_check_func() 3075 mname = zend_string_init(Z_STRVAL_P(callable) + clen + 2, mlen, 0); in zend_is_callable_check_func()
|
/PHP-7.3/sapi/fpm/tests/ |
H A D | fcgi.inc | 304 $clen = strlen($content); 309 . chr(($clen >> 8 ) & 0xFF) /* contentLengthB1 */ 310 . chr($clen & 0xFF) /* contentLengthB0 */
|
/PHP-7.3/ext/iconv/ |
H A D | iconv.c | 535 size_t clen = strlen(charset); in _php_check_ignore() local 536 if (clen >= 9 && strcmp("//IGNORE", charset+clen-8) == 0) { in _php_check_ignore() 539 if (clen >= 19 && strcmp("//IGNORE//TRANSLIT", charset+clen-18) == 0) { in _php_check_ignore()
|
/PHP-7.3/ext/phar/ |
H A D | zip.c | 1454 size_t clen; in phar_zip_flush() local 1455 int ret = php_stream_copy_to_stream_ex(pass.centralfp, pass.filefp, PHP_STREAM_COPY_ALL, &clen); in phar_zip_flush() 1456 if (SUCCESS != ret || clen != cdir_size) { in phar_zip_flush()
|
/PHP-7.3/sapi/phpdbg/ |
H A D | phpdbg.c | 385 size_t clen = 0, mlen = 0; in PHP_FUNCTION() local 387 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &class, &clen, &method, &mlen) == FAILURE) { in PHP_FUNCTION()
|