Home
last modified time | relevance | path

Searched refs:l (Results 101 – 125 of 318) sorted by relevance

12345678910>>...13

/php-src/ext/standard/
H A Dhtml.c433 const uni_to_enc *l = table, in unimap_bsearch() local
444 while (l <= h) { in unimap_bsearch()
445 m = l + (h - l) / 2; in unimap_bsearch()
449 l = m + 1; in unimap_bsearch()
1405 size_t l = r->data.ent.entity_len; in write_s3row_data() local
1406 memcpy(&entity[1], r->data.ent.entity, l); in write_s3row_data()
1407 entity[l + 1] = ';'; in write_s3row_data()
1417 entity[l + 1] = ';'; in write_s3row_data()
1422 size_t l, in write_s3row_data() local
1428 l = mcpr[i].normal_entry.entity_len; in write_s3row_data()
[all …]
H A Dstring.c2287 l = 0;
2289 l = (zend_long)ZSTR_LEN(str) - f + l;
2414 l = ((zend_long)ZSTR_LEN(str) - f) + l;
2416 l = 0;
2563 l = (ZSTR_LEN(orig_str) - f) + l;
2570 ZEND_ASSERT(0 <= l && l <= ZEND_LONG_MAX);
3622 size_t l; local
3628 for (l = 0; (p + l < end1) && (q + l < end2) && (p[l] == q[l]); l++);
4292 l--;
4302 l--;
[all …]
/php-src/ext/spl/tests/
H A Diterator_004.phpt75 $l = new LimitIterator(new SeekableNumericArrayIterator($a));
78 $l->seek($i);
79 print $l->current() . "\n";
/php-src/ext/filter/
H A Dlogical_filters.c510 size_t l; in _php_filter_validate_domain() local
515 l = len; in _php_filter_validate_domain()
516 e = domain + l; in _php_filter_validate_domain()
520 if (l > 0 && *t == '.') { in _php_filter_validate_domain()
522 l--; in _php_filter_validate_domain()
526 if (l > 253) { in _php_filter_validate_domain()
604 size_t l; in php_filter_validate_url() local
611 l = ZSTR_LEN(url->host); in php_filter_validate_url()
612 e = s + l; in php_filter_validate_url()
616 if (*s == '[' && *t == ']' && _php_filter_validate_ipv6((s + 1), l - 2, NULL)) { in php_filter_validate_url()
[all …]
/php-src/ext/dba/tests/
H A Dtest.inc3 $lock_flag = 'l';
/php-src/ext/opcache/tests/
H A Dswitch_string_free_opt.phpt8 r>l;
/php-src/ext/intl/tests/
H A Dgrapheme_str_split.phpt17 array( "null\x00byte", 1, array("n", "u", "l", "l", "\x00", "b", "y", "t", "e") ),
/php-src/ext/gd/libgd/
H A Dgd_xbm.c181 size_t i, l; in gdImageXbmCtx() local
188 if ((l = strlen(name)) == 0) { in gdImageXbmCtx()
192 for (i=0; i<l; i++) { in gdImageXbmCtx()
/php-src/ext/openssl/tests/
H A Dbug37820key.pem5 8IECIQD3B5+0l+68BA/6d76iUNqAAV8djGTzvxnCxycnxPQydQIhAMXt4trUI3nc
/php-src/ext/standard/tests/array/
H A Darsort_variation5.phpt22 array ('l' => "lemoN", 'O' => "Orange", 'b' => "banana", 'a' => "apple", 'Te' => "Test",
169 ["l"]=>
197 ["l"]=>
225 ["l"]=>
H A Dasort_variation5.phpt22 array ('l' => "lemoN", 'O' => "Orange", 'b' => "banana", 'a' => "apple", 'Te' => "Test",
175 ["l"]=>
203 ["l"]=>
231 ["l"]=>
/php-src/sapi/fpm/fpm/
H A Dfpm_log.c431 size_t l; in fpm_log_write() local
437 l = s - start; in fpm_log_write()
439 if (l >= sizeof(format) - 1) { in fpm_log_write()
440 l = sizeof(format) - 1; in fpm_log_write()
443 memcpy(format, start, l); in fpm_log_write()
444 format[l] = '\0'; in fpm_log_write()
/php-src/ext/mysqlnd/
H A Dmysqlnd_commands.c93 …ret = send_command(conn->payload_decoder_factory, COM_INIT_DB, (const zend_uchar*) db.s, db.l, FAL… in MYSQLND_METHOD()
111 mysqlnd_set_persistent_string(&conn->connect_or_select_db, db.s, db.l, conn->persistent); in MYSQLND_METHOD()
174 *message = zend_string_init(stats_header.message.s, stats_header.message.l, 0); in MYSQLND_METHOD()
285 …ret = send_command(conn->payload_decoder_factory, COM_QUERY, (const zend_uchar*) query.s, query.l,… in MYSQLND_METHOD()
311 …d(conn->payload_decoder_factory, COM_CHANGE_USER, (const zend_uchar*) payload.s, payload.l, silent, in MYSQLND_METHOD()
353 …mmand(conn->payload_decoder_factory, COM_STMT_PREPARE, (const zend_uchar*) query.s, query.l, FALSE, in MYSQLND_METHOD()
376 (const unsigned char *) payload.s, payload.l, FALSE, in MYSQLND_METHOD()
398 …and(conn->payload_decoder_factory, COM_STMT_FETCH, (const zend_uchar*) payload.s, payload.l, FALSE, in MYSQLND_METHOD()
449 …>payload_decoder_factory, COM_STMT_SEND_LONG_DATA, (const zend_uchar*) payload.s, payload.l, FALSE, in MYSQLND_METHOD()
580 const size_t passwd_len = password.l; in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_libmysql_compat.h89 #define mysql_stmt_prepare(s,q,l) mysqlnd_stmt_prepare((s), (q), (l)) argument
95 #define mysql_stmt_send_long_data(s,p,d,l) mysqlnd_stmt_send_long_data((s), (p), (d), (l)) argument
/php-src/ext/standard/tests/file/
H A Dfgetc_basic.phpt379 string(1) "l"
400 string(1) "l"
406 string(1) "l"
427 string(1) "l"
433 string(1) "l"
454 string(1) "l"
460 string(1) "l"
481 string(1) "l"
487 string(1) "l"
508 string(1) "l"
[all …]
H A Dfputcsv.phpt47 while($l=fgetcsv($fp))
49 $res[] = join(',',$l);
H A Dfputcsv_variation15.phpt49 while($l=fgetcsv($fp, 0, ',', '"', '/'))
51 $res[] = join(',',$l);
/php-src/ext/phar/tests/cache_list/files/
H A Dfrontcontroller2.phar6 …����G�����ж���������a.jpg����G�����ж���������a.phps����G���l�`�������hiohio<?php…
H A Dfrontcontroller.phar6 …��� �~G�����ж���������a.jpg��� �~G�����ж���������a.phps��� �~G���l�`������� ���index.p…
/php-src/ext/phar/tests/files/
H A Dfrontcontroller2.phar6 …����G�����ж���������a.jpg����G�����ж���������a.phps����G���l�`�������hiohio<?php…
H A Dfrontcontroller.phar6 …��� �~G�����ж���������a.jpg��� �~G�����ж���������a.phps��� �~G���l�`������� ���index.p…
H A Dfrontcontroller5.phar6 …����b�H�����ж���������a.jpg����b�H�����ж���������a.phps����b�H���l�`�������hiohio<?php…
/php-src/ext/spl/tests/SplFileObject/
H A DSplFileObject_fputcsv.phpt45 while($l=fgetcsv($fp))
47 $res[] = join(',',$l);
/php-src/ext/dom/lexbor/lexbor/css/
H A Dvalue.h174 lxb_css_value_percentage_type_t l; member
182 lxb_css_value_number_percentage_t l; member
190 lxb_css_value_number_percentage_t l; member
/php-src/ext/opcache/jit/ir/
H A Dir_disasm.c66 if (l->child[1]) { in ir_syms_rotateright()
67 l->child[1]->parent = p; in ir_syms_rotateright()
69 l->parent = p->parent; in ir_syms_rotateright()
71 _symbols = l; in ir_syms_rotateright()
73 p->parent->child[1] = l; in ir_syms_rotateright()
75 p->parent->child[0] = l; in ir_syms_rotateright()
77 l->child[1] = p; in ir_syms_rotateright()
78 p->parent = l; in ir_syms_rotateright()
333 int32_t l, n; local
461 l = 0;
[all …]

Completed in 92 milliseconds

12345678910>>...13