Home
last modified time | relevance | path

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

12345678910>>...13

/php-src/.github/workflows/
H A Dnightly.yml89 dpkg -l
181 dpkg -l
H A Dpush.yml104 dpkg -l
/php-src/Zend/
H A Dzend_operators.c269 zend_long l = Z_RES_HANDLE_P(op); in convert_scalar_to_number() local
271 ZVAL_LONG(op, l); in convert_scalar_to_number()
676 zend_long l = (Z_RES_HANDLE_P(op) ? 1 : 0); in convert_to_boolean() local
679 ZVAL_BOOL(op, l); in convert_to_boolean()
H A Dzend_string.h185 static zend_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, bool pe… in zend_string_safe_alloc() argument
187 …zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), … in zend_string_safe_alloc()
192 ZSTR_LEN(ret) = (n * m) + l; in zend_string_safe_alloc()
308 …end_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m, size_t l, bool persistent) in zend_string_safe_realloc() argument
314 …ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persisten… in zend_string_safe_realloc()
315 ZSTR_LEN(ret) = (n * m) + l; in zend_string_safe_realloc()
320 ret = zend_string_safe_alloc(n, m, l, persistent); in zend_string_safe_realloc()
321 memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); in zend_string_safe_realloc()
H A Dzend_API.h948 #define CHECK_NULL_PATH(p, l) zend_char_has_nul_byte(p, l) argument
950 #define ZVAL_STRINGL(z, s, l) do { \ argument
963 #define ZVAL_PSTRINGL(z, s, l) do { \ argument
981 #define ZVAL_STRINGL_FAST(z, s, l) do { \ argument
982 ZVAL_STR(z, zend_string_init_fast(s, l)); \
1009 #define RETVAL_LONG(l) ZVAL_LONG(return_value, l) argument
1016 #define RETVAL_STRINGL(s, l) ZVAL_STRINGL(return_value, s, l) argument
1018 #define RETVAL_STRINGL_FAST(s, l) ZVAL_STRINGL_FAST(return_value, s, l) argument
1035 #define RETURN_LONG(l) do { RETVAL_LONG(l); return; } while (0) argument
1042 #define RETURN_STRINGL(s, l) do { RETVAL_STRINGL(s, l); return; } while (0) argument
[all …]
H A Dzend_API.c642 zend_long l; in zend_parse_arg_double_weak() local
645 if (UNEXPECTED((type = is_numeric_str_function(Z_STR_P(arg), &l, dest)) != IS_DOUBLE)) { in zend_parse_arg_double_weak()
647 *dest = (double)(l); in zend_parse_arg_double_weak()
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc2373 …/* l = LOAD(_, a) ... v = BINOP(l, _) ... STORE(l, a, v) => SKIP ... SKIP_MEM_BINOP ... MEM_BINOP …
2386 …/* l = LOAD(_, a) ... v = BINOP(_, l) ... STORE(l, a, v) => SKIP ... SKIP_MEM_BINOP ... MEM_BINOP …
2397 /* l = LOAD(_, a) ... v = INC(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_INC */
2407 /* l = LOAD(_, a) ... v = DEC(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_DEC */
2417 /* l = LOAD(_, a) ... v = MUL_PWR2(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_MUL_PWR2 */
2427 /* l = LOAD(_, a) ... v = DIV_PWR2(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_DIV_PWR2 */
2437 /* l = LOAD(_, a) ... v = MOD_PWR2(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_MOD_PWR2 */
2447 … /* l = LOAD(_, a) ... v = SHIFT(l, _) ... STORE(l, a, v) => SKIP ... SKIP_SHIFT ... MEM_SHIFT */
2467 /* l = LOAD(_, a) ... v = OP(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_OP */
2524 …/* l = RLOAD(r) ... v = BINOP(l, _) ... RSTORE(l, r, v) => SKIP ... SKIP_REG_BINOP ... REG_BINOP */
[all …]
H A Dir_private.h711 l->len = 0; in ir_list_init()
717 l->len = 0; in ir_list_free()
722 l->len = 0; in ir_list_clear()
727 return l->len; in ir_list_len()
737 ir_array_set(&l->a, l->len++, val); in ir_list_push()
742 ir_array_set_unchecked(&l->a, l->len++, val); in ir_list_push_unchecked()
748 return ir_array_at(&l->a, --l->len); in ir_list_pop()
754 return ir_array_at(&l->a, l->len - 1); in ir_list_peek()
771 ir_list l; member
783 ir_list_free(&w->l); in ir_worklist_free()
[all …]
H A Dir_sccp.c388 ir_ref j, n, *p, use, k, l; in ir_sccp_replace_insn() local
416 l = insn->inputs_count; in ir_sccp_replace_insn()
417 for (k = 1; k <= l; k++) { in ir_sccp_replace_insn()
445 ir_ref j, n, *p, use, k, l; in ir_sccp_replace_insn2() local
474 l = insn->inputs_count; in ir_sccp_replace_insn2()
475 for (k = 1; k <= l; k++) { in ir_sccp_replace_insn2()
H A Dir_gcm.c406 ir_ref k, l = insn->inputs_count; in ir_split_partially_dead_node() local
408 for (k = 1; k <= l; k++) { in ir_split_partially_dead_node()
H A Dir.c1379 IR_ASSERT(i < l->len);
1380 if (l->len >= l->a.size) {
1381 ir_array_grow(&l->a, l->a.size + 1);
1383 memmove(l->a.refs + i + 1, l->a.refs + i, (l->len - i) * sizeof(ir_ref));
1384 l->a.refs[i] = val;
1385 l->len++;
1390 IR_ASSERT(i < l->len);
1391 memmove(l->a.refs + i, l->a.refs + i + 1, (l->len - i) * sizeof(ir_ref));
1392 l->len--;
1399 for (i = 0; i < l->len; i++) {
[all …]
/php-src/main/
H A DSAPI.c599 static void sapi_remove_header(zend_llist *l, char *name, size_t len) { in sapi_remove_header() argument
602 zend_llist_element *current=l->head; in sapi_remove_header()
612 l->head = next; in sapi_remove_header()
617 l->tail = current->prev; in sapi_remove_header()
621 --l->count; in sapi_remove_header()
/php-src/ext/ffi/
H A Dffi.c7719 int l = 0; local
7724 l = 1;
7726 l = 2;
7730 l = 1;
7732 l = 2;
7742 if (l == 0) {
7744 } else if (l == 1) {
7746 } else if (l == 2) {
7751 if (l == 0) {
7753 } else if (l == 1) {
[all …]
/php-src/
H A Dconfigure.ac322 LIBS="$LIBS -l$ac_cv_pthreads_lib"
/php-src/sapi/cgi/
H A Dcgi_main.c1320 size_t l = strlen(env_document_root); local
1324 if (l && env_document_root[l - 1] == '/') {
1325 --l;
1334 path_translated_len = l + (env_path_info ? strlen(env_path_info) : 0);
1336 memcpy(path_translated, env_document_root, l);
1338 memcpy(path_translated + l, env_path_info, (path_translated_len - l));
/php-src/ext/pgsql/
H A Dpgsql.c323 static void _php_pgsql_notice_handler(void *l, const char *message) in _php_pgsql_notice_handler() argument
330 pgsql_link_handle *link = (pgsql_link_handle *) l; in _php_pgsql_notice_handler()
/php-src/ext/dom/lexbor/lexbor/core/
H A Ddiyfp.h32 #define lexbor_uint64_hl(h, l) (((uint64_t) (h) << 32) + (l)) argument
204 uint64_t l, h; in lexbor_diyfp_mul() local
211 l = (uint64_t) u128; in lexbor_diyfp_mul()
215 if (l & ((uint64_t) 1 << 63)) { in lexbor_diyfp_mul()
/php-src/build/
H A Dlibtool.m43880 -L* | -R* | -l*)
3903 # The "-l" case would never come before the object being
H A Dphp.m4357 -l*[)]
468 ifelse([$2],,$3="-l$1 [$]$3", $3="[$]$3 -l$1") dnl
524 $3="-l$1 [$]$3"
549 $3="-l$1 [$]$3"
1482 LIBS="$LIBS -l$2"
/php-src/ext/mysqlnd/
H A Dmysqlnd_vio.c212 net_stream = php_stream_xport_create(scheme.s, scheme.l, streams_options, streams_flags, in MYSQLND_METHOD()
303 if (scheme.l > (sizeof("pipe://") - 1) && !memcmp(scheme.s, "pipe://", sizeof("pipe://") - 1)) { in MYSQLND_METHOD()
305 } else if ((scheme.l > (sizeof("tcp://") - 1) && !memcmp(scheme.s, "tcp://", sizeof("tcp://") - 1)) in MYSQLND_METHOD()
307 (scheme.l > (sizeof("unix://") - 1) && !memcmp(scheme.s, "unix://", sizeof("unix://") - 1))) in MYSQLND_METHOD()
H A Dmysqlnd_wireprotocol.c426 packet->authentication_plugin_data.l = uint1korr(pad_start + 2); in php_mysqlnd_greet_read()
427 if (packet->authentication_plugin_data.l > SCRAMBLE_LENGTH) { in php_mysqlnd_greet_read()
429 char * new_auth_plugin_data = emalloc(packet->authentication_plugin_data.l); in php_mysqlnd_greet_read()
435 p+= (packet->authentication_plugin_data.l - SCRAMBLE_LENGTH); in php_mysqlnd_greet_read()
971 if (!packet->argument.s || !packet->argument.l) { in php_mysqlnd_cmd_write()
977 size_t tmp_len = packet->argument.l + 1 + MYSQLND_HEADER_SIZE; in php_mysqlnd_cmd_write()
988 memcpy(p, packet->argument.s, packet->argument.l); in php_mysqlnd_cmd_write()
1061 packet->info_or_local_file.l = len; in php_mysqlnd_rset_header_read()
1083 packet->info_or_local_file.l = len; in php_mysqlnd_rset_header_read()
1734 packet->message.l = packet->header.size; in php_mysqlnd_stats_read()
[all …]
/php-src/ext/iconv/
H A Diconv.c142 static php_iconv_err_t _php_iconv_appendl(smart_str *d, const char *s, size_t l, iconv_t cd);
356 static php_iconv_err_t _php_iconv_appendl(smart_str *d, const char *s, size_t l, iconv_t cd) in _php_iconv_appendl() argument
359 size_t in_left = l; in _php_iconv_appendl()
/php-src/ext/odbc/
H A Dconfig.m461 ODBC_LIBS=-l${ac_solid_prefix}${ac_solid_os}${ac_solid_version}
/php-src/sapi/fuzzer/
H A DREADME.md94 export ONIG_LIBS="-L$PWD/oniguruma/src/.libs -l:libonig.a"
/php-src/ext/posix/
H A Dposix.c1147 const struct limitlist *l = NULL; in PHP_FUNCTION() local
1159 for (l=limits; l->name; l++) { in PHP_FUNCTION()
1160 if (posix_addlimit(l->limit, l->name, return_value) == FAILURE) { in PHP_FUNCTION()

Completed in 242 milliseconds

12345678910>>...13