Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 310) sorted by last modified time

12345678910>>...13

/PHP-7.3/Zend/
H A Dzend_smart_str.c64 static size_t zend_compute_escaped_string_len(const char *s, size_t l) { in zend_compute_escaped_string_len() argument
65 size_t i, len = l; in zend_compute_escaped_string_len()
66 for (i = 0; i < l; ++i) { in zend_compute_escaped_string_len()
78 ZEND_API void ZEND_FASTCALL smart_str_append_escaped(smart_str *str, const char *s, size_t l) { in smart_str_append_escaped() argument
80 size_t i, len = zend_compute_escaped_string_len(s, l); in smart_str_append_escaped()
86 for (i = 0; i < l; ++i) { in smart_str_append_escaped()
H A Dzend_operators.c187 zend_long l = Z_RES_HANDLE_P(op); in _convert_scalar_to_number() local
189 ZVAL_LONG(op, l); in _convert_scalar_to_number()
468 zend_long l = (Z_RES_HANDLE_P(op) ? 1 : 0); in convert_to_boolean() local
471 ZVAL_BOOL(op, l); in convert_to_boolean()
H A Dzend_language_scanner.c97 #define HANDLE_NEWLINES(s, l) \ argument
99 char *p = (s), *boundary = p+(l); \
H A Dzend_language_scanner.l94 #define HANDLE_NEWLINES(s, l) \ argument
96 char *p = (s), *boundary = p+(l); \
H A Dzend_string.h142 static zend_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, int per… in zend_string_safe_alloc() argument
144 …zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), … in zend_string_safe_alloc()
149 ZSTR_LEN(ret) = (n * m) + l; in zend_string_safe_alloc()
241 …zend_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m, size_t l, int persistent) in zend_string_safe_realloc() argument
247 …ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persisten… in zend_string_safe_realloc()
248 ZSTR_LEN(ret) = (n * m) + l; in zend_string_safe_realloc()
253 ret = zend_string_safe_alloc(n, m, l, persistent); in zend_string_safe_realloc()
254 memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); in zend_string_safe_realloc()
H A Dzend_API.c481 zend_long l; in zend_parse_arg_double_weak() local
484 if (UNEXPECTED((type = is_numeric_str_function(Z_STR_P(arg), &l, dest)) != IS_DOUBLE)) { in zend_parse_arg_double_weak()
486 *dest = (double)(l); in zend_parse_arg_double_weak()
1626 ZEND_API zval *add_get_index_long(zval *arg, zend_ulong index, zend_long l) /* {{{ */ in add_get_index_long() argument
1630 ZVAL_LONG(&tmp, l); in add_get_index_long()
/PHP-7.3/ext/zip/
H A Dphp_zip.c136 # define CWD_STATE_ALLOC(l) emalloc(l) argument
/PHP-7.3/ext/phar/
H A Dphar_object.c1388 uint32_t l; member
1397 size_t str_key_len, base_len = p_obj->l; in phar_build()
1797 pass.l = (uint32_t)dir_len; in PHP_METHOD()
1885 pass.l = (uint32_t)base_len; in PHP_METHOD()
/PHP-7.3/ext/pdo_firebird/
H A Dfirebird_driver.c247 char const *co, *l, *r; in firebird_handle_quoter() local
266 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
267 strncpy(c, l, r-l+1); in firebird_handle_quoter()
268 c += (r-l+1); in firebird_handle_quoter()
395 for (l = in_quote = in_param = 0; l <= sql_len; ++l) { in firebird_alloc_prepare_stmt()
398 switch (sql[l]) { in firebird_alloc_prepare_stmt()
409 … if ((in_param &= ((sql[l] >= 'A' && sql[l] <= 'Z') || (sql[l] >= 'a' && sql[l] <= 'z') in firebird_alloc_prepare_stmt()
410 … || (sql[l] >= '0' && sql[l] <= '9') || sql[l] == '_' || sql[l] == '-'))) { in firebird_alloc_prepare_stmt()
425 *c++ = sql[l]; in firebird_alloc_prepare_stmt()
550 if (!l) { in firebird_handle_get_attribute()
[all …]
/PHP-7.3/ext/filter/
H A Dlogical_filters.c478 size_t l; in _php_filter_validate_domain() local
483 l = len; in _php_filter_validate_domain()
484 e = domain + l; in _php_filter_validate_domain()
490 l--; in _php_filter_validate_domain()
494 if (l > 253) { in _php_filter_validate_domain()
577 size_t l; in php_filter_validate_url() local
584 l = ZSTR_LEN(url->host); in php_filter_validate_url()
585 e = s + l; in php_filter_validate_url()
589 if (*s == '[' && *t == ']' && _php_filter_validate_ipv6((s + 1), l - 2)) { in php_filter_validate_url()
595 if (!_php_filter_validate_domain(ZSTR_VAL(url->host), l, FILTER_FLAG_HOSTNAME)) { in php_filter_validate_url()
/PHP-7.3/ext/imap/
H A Dphp_imap.c3924 int l = strlen(tmp) - 2, l2; in PHP_FUNCTION() local
3928 tmp[l] = '\0'; in PHP_FUNCTION()
3929 tempstring = emalloc(l); in PHP_FUNCTION()
3930 memcpy(tempstring, tmp, l); in PHP_FUNCTION()
3935 memcpy(tempstring + l, custom_headers_param->value, l2); in PHP_FUNCTION()
3936 memcpy(tempstring + l + l2, CRLF, CRLF_LEN); in PHP_FUNCTION()
3937 l += l2 + CRLF_LEN; in PHP_FUNCTION()
3942 mystring = emalloc(l + CRLF_LEN + 1); in PHP_FUNCTION()
3943 memcpy(mystring, tempstring, l); in PHP_FUNCTION()
3944 memcpy(mystring + l , CRLF, CRLF_LEN); in PHP_FUNCTION()
[all …]
/PHP-7.3/
H A Dacinclude.m4402 -l*[)]
506 ifelse([$2],,$3="-l$1 [$]$3", $3="[$]$3 -l$1") dnl
558 $3="-l$1 [$]$3"
584 $3="-l$1 [$]$3"
1933 LIBS="$LIBS -l$2"
/PHP-7.3/build/
H A Dlibtool.m43871 -L* | -R* | -l*)
3894 # The "-l" case would never come before the object being
/PHP-7.3/ext/mbstring/oniguruma/src/
H A Dregcomp.c5422 set_mml(MinMax* l, OnigLen min, OnigLen max) in set_mml() argument
5424 l->min = min; in set_mml()
5425 l->max = max; in set_mml()
5429 clear_mml(MinMax* l) in clear_mml() argument
5431 l->min = l->max = 0; in clear_mml()
/PHP-7.3/ext/com_dotnet/
H A Dcom_typeinfo.c234 size_t l; in php_com_load_typelib_via_cache() local
236 l = strlen(search_string); in php_com_load_typelib_via_cache()
238 if ((TL = zend_ts_hash_str_find_ptr(&php_com_typelibraries, search_string, l)) != NULL) { in php_com_load_typelib_via_cache()
246 name_dup = estrndup(search_string, l); in php_com_load_typelib_via_cache()
252 search_string, l, TL)) { in php_com_load_typelib_via_cache()
/PHP-7.3/ext/standard/
H A Dconfig.m4138 salt[9]='l'; salt[10]='e'; salt[11]='$';
H A Dstring.c2419 if ((l < 0 && (size_t)(-l) > ZSTR_LEN(str))) {
2452 l = ((zend_long)ZSTR_LEN(str) - f) + l;
2454 l = 0;
2559 l = ((zend_long)Z_STRLEN_P(str) - f) + l;
2565 if ((size_t)l > Z_STRLEN_P(str) || (l < 0 && (size_t)(-l) > Z_STRLEN_P(str))) {
2673 l = (ZSTR_LEN(orig_str) - f) + l;
3605 size_t l; local
3611 for (l = 0; (p + l < end1) && (q + l < end2) && (p[l] == q[l]); l++);
4216 l--;
4226 l--;
[all …]
/PHP-7.3/tests/basic/
H A D023.phpt7 c o o k i e=value; c o o k i e= v a l u e ;;c%20o+o k+i%20e=v;name="value","value",UEhQIQ==;UEhQIQ=…
/PHP-7.3/ext/mysqlnd/
H A Dmysqlnd_connection.c552 if (hostname.l == sizeof("localhost") - 1 && !strncasecmp(hostname.s, "localhost", hostname.l)) {
648 hostname.l = strlen(hostname.s);
653 username.l = 0;
658 password.l = 0;
663 database.l = 0;
694 conn->scheme.l = transport.l;
704 conn->username.l = username.l;
706 conn->password.l = password.l;
709 conn->connect_or_select_db.l = database.l;
723 conn->hostname.l = hostname.l;
[all …]
/PHP-7.3/ext/pdo_oci/
H A Doci_driver.c364 char const *cu, *l, *r; in oci_handle_quoter() local
383 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in oci_handle_quoter()
384 strncpy(c, l, r-l+1); in oci_handle_quoter()
385 c += (r-l+1); in oci_handle_quoter()
390 strncpy(c, l, *quotedlen-(c-*quoted)-1); in oci_handle_quoter()
/PHP-7.3/ext/date/lib/
H A Dparse_date.c109 #define TIMELIB_PROCESS_YEAR(x, l) { \ argument
110 if (((x) == TIMELIB_UNSET) || ((l) >= 4)) { \
H A Dparse_date.re107 #define TIMELIB_PROCESS_YEAR(x, l) { \
108 if (((x) == TIMELIB_UNSET) || ((l) >= 4)) { \
1131 if (*ptr == 'l' || *ptr == 'L') {
1973 {'l', TIMELIB_FORMAT_TEXTUAL_DAY_FULL},
/PHP-7.3/ext/exif/
H A Dexif.c2415 for(ap=0; ap<l; ap++) { in add_assoc_image_info()
2416 if (l>1) { in add_assoc_image_info()
2421 if (l>1) { in add_assoc_image_info()
2430 if (l==1) { in add_assoc_image_info()
2439 if (l==1) { in add_assoc_image_info()
2447 if (l>1) { in add_assoc_image_info()
2456 if (l==1) { in add_assoc_image_info()
2465 if (l==1) { in add_assoc_image_info()
2473 if (l==1) { in add_assoc_image_info()
2481 if (l==1) { in add_assoc_image_info()
[all …]
/PHP-7.3/ext/gd/libgd/
H A Dgd.c1520 int l; in gdImageString() local
1531 int l; in gdImageStringUp() local
1544 int l; in gdImageString16() local
1545 l = strlen16(s); in gdImageString16()
1555 int l; in gdImageStringUp16() local
1981 l = x+1; in gdImageFill()
1984 if (l<x1) { in gdImageFill()
1999 l = x; in gdImageFill()
2051 l = x+1; in _gdImageFillTiled()
2054 if (l<x1) { in _gdImageFillTiled()
[all …]
/PHP-7.3/ext/sockets/
H A Dsendrecvmsg.c71 #define LONG_CHECK_VALID_INT(l) \ argument
73 if ((l) < INT_MIN && (l) > INT_MAX) { \
75 "the boundaries of a native integer", (l)); \

Completed in 218 milliseconds

12345678910>>...13