Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 320) sorted by relevance

12345678910>>...13

/PHP-7.2/Zend/
H A Dzend_llist.c30 l->count = 0; in zend_llist_init()
42 if (l->tail) { in zend_llist_add_element()
47 l->tail = tmp; in zend_llist_add_element()
50 ++l->count; in zend_llist_add_element()
60 if (l->head) { in zend_llist_prepend_element()
65 l->head = tmp; in zend_llist_prepend_element()
68 ++l->count; in zend_llist_prepend_element()
87 --l->count;
117 l->count = 0; in zend_llist_destroy()
124 l->head = l->tail = NULL; in zend_llist_clean()
[all …]
H A Dzend_llist.h51 ZEND_API void zend_llist_add_element(zend_llist *l, void *element);
52 ZEND_API void zend_llist_prepend_element(zend_llist *l, void *element);
54 ZEND_API void zend_llist_destroy(zend_llist *l);
55 ZEND_API void zend_llist_clean(zend_llist *l);
56 ZEND_API void zend_llist_remove_tail(zend_llist *l);
58 ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func);
62 ZEND_API size_t zend_llist_count(zend_llist *l);
71 #define zend_llist_get_first(l) zend_llist_get_first_ex(l, NULL) argument
72 #define zend_llist_get_last(l) zend_llist_get_last_ex(l, NULL) argument
73 #define zend_llist_get_next(l) zend_llist_get_next_ex(l, NULL) argument
[all …]
/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_php_trace.c51 long l; in fpm_php_trace_dump() local
63 path_translated = l; in fpm_php_trace_dump()
75 execute_data = l; in fpm_php_trace_dump()
88 function = l; in fpm_php_trace_dump()
95 function_name = l; in fpm_php_trace_dump()
130 execute_data = prev = l; in fpm_php_trace_dump()
139 function = l; in fpm_php_trace_dump()
155 file_name = l; in fpm_php_trace_dump()
165 if (valid_ptr(l)) { in fpm_php_trace_dump()
166 long opline = l; in fpm_php_trace_dump()
[all …]
H A Dfpm_trace.c13 long l = addr; in fpm_trace_get_strz() local
14 char *lc = (char *) &l; in fpm_trace_get_strz()
16 i = l % SIZEOF_LONG; in fpm_trace_get_strz()
17 l -= i; in fpm_trace_get_strz()
18 for (addr = l; ; addr += SIZEOF_LONG) { in fpm_trace_get_strz()
19 if (0 > fpm_trace_get_long(addr, &l)) { in fpm_trace_get_strz()
/PHP-7.2/ext/mbstring/
H A Dphp_unicode.c64 long l, r, m; in prop_lookup() local
83 while (l <= r) { in prop_lookup()
88 m = (l + r) >> 1; in prop_lookup()
91 l = m + 2; in prop_lookup()
130 while (l <= r) { in case_lookup()
138 l = m + 1; in case_lookup()
167 long l, r; in php_unicode_toupper() local
198 long l, r; in php_unicode_tolower() local
208 l = 0; in php_unicode_tolower()
229 long l, r; in php_unicode_totitle() local
[all …]
/PHP-7.2/ext/tidy/tests/
H A D022.phpt8 $l = 1;
12 tidy_repair_string($s, $l, $l, $l);
14 tidy_repair_string($l, $l, $l ,$l);
17 tidy_repair_file($s, $l, $l, $l);
19 tidy_repair_file($l, $l, $l ,$l);
H A D019.phpt8 $l = 1;
12 tidy_repair_string($s, $l, $l, $l);
14 tidy_repair_string($l, $l, $l ,$l);
17 tidy_repair_file($s, $l, $l, $l);
19 tidy_repair_file($l, $l, $l ,$l);
/PHP-7.2/ext/standard/
H A Dphp_crypt_r.c135 __int32 l; in php_md5_crypt_r() local
282 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p,l,4); p += 4; in php_md5_crypt_r()
283 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p,l,4); p += 4; in php_md5_crypt_r()
284 l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; to64(p,l,4); p += 4; in php_md5_crypt_r()
285 l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; to64(p,l,4); p += 4; in php_md5_crypt_r()
286 l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; to64(p,l,4); p += 4; in php_md5_crypt_r()
287 l = final[11]; to64(p,l,2); p += 2; in php_md5_crypt_r()
326 uint32_t l; in php_md5_crypt_r() local
412 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p,l,4); p += 4; in php_md5_crypt_r()
413 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p,l,4); p += 4; in php_md5_crypt_r()
[all …]
H A Dexec.c101 size_t l = 0; in php_exec() local
155 l = bufl; in php_exec()
156 while (l-- > 0 && isspace(((unsigned char *)buf)[l])); in php_exec()
157 if (l != (bufl - 1)) { in php_exec()
158 bufl = l + 1; in php_exec()
168 l = bufl; in php_exec()
169 while (l-- > 0 && isspace(((unsigned char *)buf)[l])); in php_exec()
170 if (l != (bufl - 1)) { in php_exec()
171 bufl = l + 1; in php_exec()
289 size_t l = strlen(str); in php_escape_shell_cmd() local
[all …]
H A Dcrypt_freesec.c550 f ^= l; in do_des()
551 l = r; in do_des()
554 r = l; in do_des()
555 l = f; in do_des()
563 | fp_maskl[3][l & 0xff] in do_des()
571 | fp_maskr[3][l & 0xff] in do_des()
706 l = (r0 >> 8); in _crypt_extended_r()
710 *p++ = ascii64[l & 0x3f]; in _crypt_extended_r()
716 *p++ = ascii64[l & 0x3f]; in _crypt_extended_r()
718 l = r1 << 2; in _crypt_extended_r()
[all …]
/PHP-7.2/ext/date/tests/
H A Dbug72719.phpt5 echo (new DateTimeImmutable('Monday next week 13:00'))->format('l'), "\n";
6 echo (new DateTimeImmutable('Tuesday next week 14:00'))->format('l'), "\n";
7 echo (new DateTimeImmutable('Wednesday next week 14:00'))->format('l'), "\n";
8 echo (new DateTimeImmutable('Thursday next week 15:00'))->format('l'), "\n";
9 echo (new DateTimeImmutable('Friday next week 16:00'))->format('l'), "\n";
10 echo (new DateTimeImmutable('Saturday next week 17:00'))->format('l'), "\n";
11 echo (new DateTimeImmutable('Sunday next week 18:00'))->format('l'), "\n";
H A Dbug33414-1.phpt10 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
18 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
26 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
34 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
43 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
51 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
59 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
67 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
75 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
83 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
[all …]
H A Dbug33414-2.phpt8 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
10 print "result=".date("l Y-m-d H:i:s T I", $strtotime_tstamp)."\n";
16 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
18 print "result=".date("l Y-m-d H:i:s T I", $strtotime_tstamp)."\n";
24 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
32 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
40 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
48 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
56 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
64 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
[all …]
H A Ddate_period-immutable.phpt14 echo $dt->format( "l Y-m-d\n" );
15 echo $dt->modify( "3 tuesday" )->format( "l Y-m-d\n" );
16 echo $dt->format( "l Y-m-d\n\n" );
22 echo $dt->format( "l Y-m-d\n" );
23 echo $dt->modify( "3 tuesday" )->format( "l Y-m-d\n" );
24 echo $dt->format( "l Y-m-d\n\n" );
H A Dbug33415-2.phpt10 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
18 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
27 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
36 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
44 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
53 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
61 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
70 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
79 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
87 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
[all …]
/PHP-7.2/ext/spl/tests/
H A Dfileobject_003.phpt25 $l = substr($f->getPathName(), -1);
26 var_dump($l != '/' && $l != '\\' && $l == $lc);
28 $l = substr($f->getFileName(), -1);
29 var_dump($l != '/' && $l != '\\' && $l == $lc);
31 $l = substr($f->getPath(), -1);
32 var_dump($l != '/' && $l != '\\' && $l == $lp);
45 test(dirname(__FILE__) . '/', substr(dirname(__FILE__),-1), 'l');
46 test(dirname(__FILE__), substr(dirname(__FILE__),-1), 'l');
/PHP-7.2/ext/fileinfo/libmagic/
H A Dapprentice.c70 isspace((unsigned char) *l)) ++l;}
72 tolower((unsigned char) (l)) : (l))
363 ++l; in get_standard_integer_type()
1604 ++l; in parse_op_modifier()
1831 if (*l == '.' || *l == ',') { in parse()
1918 m->cond = get_cond(l, &l); in parse()
1934 m->type = get_type(type_tbl, l + 1, &l); in parse()
1952 m->type = get_type(type_tbl, l, &l); in parse()
1970 m->type = get_type(special_tbl, l, &l); in parse()
1988 ++l; in parse()
[all …]
H A Dder.c145 if (*p >= l) in gettag()
153 if (*p >= l) in gettag()
158 if (*p >= l) in gettag()
180 if (*p >= l) in getlength()
190 if (*p + digits >= l) in getlength()
204 if (*p + len >= l) in getlength()
358 const uint8_t *p = v, *ep = p + l; in printdata()
392 size_t l; in main() local
399 l = (size_t)st.st_size; in main()
403 printdata(0, p, 0, l); in main()
[all …]
/PHP-7.2/ext/hash/
H A Dhash_gost.c34 t = (k2) + l; \
40 l = h[i + 1]; \
58 r = l; \
59 l = t; \
98 x[6] = l; \
102 l = x[0]; \
106 x[4] = l ^ r; \
108 l = x[1]; \
127 s[i + 1] = l;
201 S(s, l, r); \
[all …]
/PHP-7.2/ext/intl/grapheme/
H A Dgrapheme_util.c62 if ((l < 0 && -l > str_len2)) { in grapheme_substr_ascii()
64 } else if (l > 0 && l > str_len2) { in grapheme_substr_ascii()
65 l = str_len2; in grapheme_substr_ascii()
72 if (l < 0 && str_len2 < f - l) { in grapheme_substr_ascii()
90 if (l < 0) { in grapheme_substr_ascii()
91 l = (str_len2 - f) + l; in grapheme_substr_ascii()
92 if (l < 0) { in grapheme_substr_ascii()
93 l = 0; in grapheme_substr_ascii()
101 if ((f + l) > str_len2) { in grapheme_substr_ascii()
102 l = str_len - f; in grapheme_substr_ascii()
[all …]
/PHP-7.2/ext/phar/phar/
H A Ddirectorytreeiterator.inc39 for ($l=0; $l < $this->getDepth(); $l++) {
40 $tree .= $this->getSubIterator($l)->hasNext() ? '| ' : ' ';
42 return $tree . ($this->getSubIterator($l)->hasNext() ? '|-' : '\-')
43 . $this->getSubIterator($l)->__toString();
/PHP-7.2/ext/spl/examples/
H A Ddirectorytreeiterator.inc39 for ($l=0; $l < $this->getDepth(); $l++) {
40 $tree .= $this->getSubIterator($l)->hasNext() ? '| ' : ' ';
42 return $tree . ($this->getSubIterator($l)->hasNext() ? '|-' : '\-')
43 . $this->getSubIterator($l)->__toString();
/PHP-7.2/ext/pdo_firebird/
H A Dfirebird_driver.c238 char const *co, *l, *r; in firebird_handle_quoter() local
257 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
258 strncpy(c, l, r-l+1); in firebird_handle_quoter()
259 c += (r-l+1); in firebird_handle_quoter()
386 for (l = in_quote = in_param = 0; l <= sql_len; ++l) { in firebird_alloc_prepare_stmt()
389 switch (sql[l]) { in firebird_alloc_prepare_stmt()
400 … if ((in_param &= ((sql[l] >= 'A' && sql[l] <= 'Z') || (sql[l] >= 'a' && sql[l] <= 'z') in firebird_alloc_prepare_stmt()
401 … || (sql[l] >= '0' && sql[l] <= '9') || sql[l] == '_' || sql[l] == '-'))) { in firebird_alloc_prepare_stmt()
416 *c++ = sql[l]; in firebird_alloc_prepare_stmt()
539 if (!l) { in firebird_handle_get_attribute()
[all …]
/PHP-7.2/ext/gettext/tests/
H A Dbug66267.phpt15 foreach($loc as $l) {
16 if (!setlocale(LC_ALL, $l)) {
17 die("SKIP '$l' locale not supported.");
29 foreach ($loc as $l) {
30 putenv("LC_ALL=$l");
31 setlocale(LC_ALL, $l);
/PHP-7.2/ext/standard/html_tables/
H A Dhtml_table_gen.php189 foreach ($lines as $l) {
190 if (preg_match("/^0x([0-9A-Z]{2})\t0x([0-9A-Z]{2,})/i", $l, $matches))
332 foreach ($lines as $l) {
427 foreach (explode("\n", $data) as $l) {
428 if (preg_match('/^(#?[a-z0-9]+)\s+([a-f0-9]+) ([a-f0-9]+)/i', $l, $matches)) {
431 } else if (preg_match('/^(#?[a-z0-9]+)\s+([a-f0-9]+)/i', $l, $matches)) {
485 foreach ($v as $l => $w) {
540 for ($l = 0; $l < 64; $l++) { variable
541 if (isset($mstable[$i][$k][$l])) {
543 $col3[$l] = $mstable[$i][$k][$l];
[all …]

Completed in 53 milliseconds

12345678910>>...13