Home
last modified time | relevance | path

Searched refs:l (Results 76 – 100 of 314) sorted by relevance

12345678910>>...13

/PHP-7.1/ext/standard/tests/array/
H A Darsort_basic.phpt24 "l" => "lemon", "o" => "orange",
90 ["l"]=>
124 ["l"]=>
158 ["l"]=>
185 ["l"]=>
200 ["l"]=>
227 ["l"]=>
H A Dasort_basic.phpt24 "l" => "lemon", "o" => "orange",
92 ["l"]=>
126 ["l"]=>
160 ["l"]=>
175 ["l"]=>
202 ["l"]=>
217 ["l"]=>
H A Darray_rand_variation4.phpt91 string\([0-9]*\) "[ot1 ]*[hnw2]*[eort]*[ew]*[e]*[l]*[v]*[e]*"
94 string\([0-9]*\) "[ot1 ]*[hnw2]*[eort]*[ew]*[e]*[l]*[v]*[e]*"
99 string\([0-9]*\) "[ot1 ]*[hnw2]*[eort]*[ew]*[e]*[l]*[v]*[e]*"
101 string\([0-9]*\) "[ot1 ]*[hnw2]*[eort]*[ew]*[e]*[l]*[v]*[e]*"
H A Darsort_variation5.phpt33 array ('l' => "lemoN", 'O' => "Orange", 'b' => "banana", 'a' => "apple", 'Te' => "Test",
180 ["l"]=>
208 ["l"]=>
236 ["l"]=>
/PHP-7.1/ext/date/tests/
H A Ddate_period.phpt12 echo $dt->modify( "3 tuesday" )->format( "l Y-m-d\n" );
23 echo $dt->format( "l Y-m-d H:i:s\n" );
H A Dgmdate_variation4.phpt22 var_dump( gmdate('l') );
23 var_dump( gmdate('l', $timestamp) );
/PHP-7.1/ext/standard/tests/strings/
H A Dstrspn_variation6.phpt68 "fh\ne\trlsti \l",
69 'fieh\n\trlsti \l',
72 'l\t',
74 "l \te",
/PHP-7.1/Zend/
H A Dzend_string.h138 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
140 …zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), … in zend_string_safe_alloc()
152 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()
255 ret = zend_string_safe_alloc(n, m, l, persistent); in zend_string_safe_realloc()
256 memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); in zend_string_safe_realloc()
/PHP-7.1/ext/standard/
H A Dstring.c2345 if ((l < 0 && (size_t)(-l) > ZSTR_LEN(str))) {
2378 l = ((zend_long)ZSTR_LEN(str) - f) + l;
2380 l = 0;
2473 l = ((zend_long)Z_STRLEN_P(str) - f) + l;
2479 if ((size_t)l > Z_STRLEN_P(str) || (l < 0 && (size_t)(-l) > Z_STRLEN_P(str))) {
2589 l = (ZSTR_LEN(orig_str) - f) + l;
3486 size_t l; local
3491 for (l = 0; (p + l < end1) && (q + l < end2) && (p[l] == q[l]); l++);
3576 l--;
3584 l--;
[all …]
H A Dhtml.c551 const uni_to_enc *l = table, in unimap_bsearch() local
562 while (l <= h) { in unimap_bsearch()
563 m = l + (h - l) / 2; in unimap_bsearch()
567 l = m + 1; in unimap_bsearch()
1566 size_t l = r->data.ent.entity_len; in write_s3row_data() local
1567 memcpy(&entity[1], r->data.ent.entity, l); in write_s3row_data()
1568 entity[l + 1] = ';'; in write_s3row_data()
1578 entity[l + 1] = ';'; in write_s3row_data()
1583 size_t l, in write_s3row_data() local
1589 l = mcpr[i].normal_entry.entity_len; in write_s3row_data()
[all …]
/PHP-7.1/ext/interbase/
H A Dphp_ibase_udf.c211 ISC_INT64 l; in call_php() local
251 l = *(ISC_INT64*)argv[i]->dsc_address; in call_php()
253 if (argv[i]->dsc_scale == 0 && l <= ZEND_LONG_MAX && l >= ZEND_LONG_MIN) { in call_php()
254 ZVAL_LONG(&args[i], (zend_long)l); in call_php()
256 ZVAL_DOUBLE(&args[i], ((double)l)/scales[-argv[i]->dsc_scale]); in call_php()
/PHP-7.1/ext/phar/tests/
H A Dinvalid_alias.phpt18 $p->setAlias('hi\\l');
42 Invalid alias "hi\l" specified for phar "%sinvalid_alias.phar"
H A Dbug73768.phar14 ��Z�bl����GBMB
H A Dbug73764.phar5 g�?`�`%l�±�TU���GBMB
/PHP-7.1/ext/intl/tests/
H A Dformatter_fail.phpt19 function crt($t, $l, $s) {
23 return new NumberFormatter($l, $s);
30 return NumberFormatter::create($l, $s);
33 return numfmt_create($l, $s);
/PHP-7.1/ext/filter/
H A Dlogical_filters.c460 size_t l; in _php_filter_validate_domain() local
465 l = len; in _php_filter_validate_domain()
466 e = domain + l; in _php_filter_validate_domain()
472 l--; in _php_filter_validate_domain()
476 if (l > 253) { in _php_filter_validate_domain()
537 size_t l; in php_filter_validate_url() local
544 l = strlen(s); in php_filter_validate_url()
545 e = url->host + l; in php_filter_validate_url()
549 if (*s == '[' && *t == ']' && _php_filter_validate_ipv6((s + 1), l - 2)) { in php_filter_validate_url()
555 if (!_php_filter_validate_domain(url->host, l, FILTER_FLAG_HOSTNAME)) { in php_filter_validate_url()
/PHP-7.1/ext/spl/tests/
H A Diterator_004.phpt75 $l = new LimitIterator(new SeekableNumericArrayIterator($a));
78 $l->seek($i);
79 print $l->current() . "\n";
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_log.c411 size_t l; in fpm_log_write() local
417 l = s - start; in fpm_log_write()
419 if (l >= sizeof(format) - 1) { in fpm_log_write()
420 l = sizeof(format) - 1; in fpm_log_write()
423 memcpy(format, start, l); in fpm_log_write()
424 format[l] = '\0'; in fpm_log_write()
/PHP-7.1/ext/dba/tests/
H A Dtest.inc3 $lock_flag = 'l';
/PHP-7.1/ext/gd/libgd/
H A Dxbm.c182 size_t i, l; in gdImageXbmCtx() local
189 if ((l = strlen(name)) == 0) { in gdImageXbmCtx()
193 for (i=0; i<l; i++) { in gdImageXbmCtx()
/PHP-7.1/ext/standard/tests/file/
H A Dfgetc_basic.phpt383 string(1) "l"
404 string(1) "l"
410 string(1) "l"
431 string(1) "l"
437 string(1) "l"
458 string(1) "l"
464 string(1) "l"
485 string(1) "l"
491 string(1) "l"
512 string(1) "l"
[all …]
H A Dfputcsv.phpt47 while($l=fgetcsv($fp))
49 $res[] = join(',',$l);
/PHP-7.1/ext/openssl/tests/
H A Dbug37820key.pem5 8IECIQD3B5+0l+68BA/6d76iUNqAAV8djGTzvxnCxycnxPQydQIhAMXt4trUI3nc
/PHP-7.1/ext/phar/tests/files/
H A Dfrontcontroller2.phar6 …����G�����ж���������a.jpg����G�����ж���������a.phps����G���l�`�������hiohio<?php…
/PHP-7.1/ext/phar/tests/cache_list/files/
H A Dfrontcontroller2.phar6 …����G�����ж���������a.jpg����G�����ж���������a.phps����G���l�`�������hiohio<?php…

Completed in 75 milliseconds

12345678910>>...13