Home
last modified time | relevance | path

Searched refs:l (Results 26 – 50 of 318) sorted by relevance

12345678910>>...13

/php-src/Zend/asm/
H A Djump_mips64_n64_elf_gas.S88 l.d $f24, 0($sp) # restore F24
89 l.d $f25, 8($sp) # restore F25
90 l.d $f26, 16($sp) # restore F26
91 l.d $f27, 24($sp) # restore F27
92 l.d $f28, 32($sp) # restore F28
93 l.d $f29, 40($sp) # restore F29
94 l.d $f30, 48($sp) # restore F30
95 l.d $f31, 56($sp) # restore F31
H A Djump_mips32_o32_elf_gas.S80 l.d $f20, ($sp) # restore F20
81 l.d $f22, 8($sp) # restore F22
82 l.d $f24, 16($sp) # restore F24
83 l.d $f26, 24($sp) # restore F26
84 l.d $f28, 32($sp) # restore F28
85 l.d $f30, 40($sp) # restore F30
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_UTF16BE_BOM.phpt27 %0<%0!%0D%0O%0C%0T%0Y%0P%0E%0 %0h%0t%0m%0l%0>%0<%0h%0t%0m%0l%0>%0<%0h%0e%0a%0d%0>%0
28 %0<%0!%0-%0-%0 %0i%0n%0t%0e%0n%0t%0i%0o%0n%0a%0l%0 %0l%0i%0e%0s%0 %0a%0n%0d%0 %0d%0e%0c%0e%0i%0t%0 …
31 %0<%0b%0o%0d%0y%0>%0�%0<%0/%0b%0o%0d%0y%0>%0<%0/%0h%0t%0m%0l%0>
H A DHTMLDocument_UTF16LE_BOM.phpt27 <%0!%0D%0O%0C%0T%0Y%0P%0E%0 %0h%0t%0m%0l%0>%0<%0h%0t%0m%0l%0>%0<%0h%0e%0a%0d%0>%0
28 %0<%0!%0-%0-%0 %0i%0n%0t%0e%0n%0t%0i%0o%0n%0a%0l%0 %0l%0i%0e%0s%0 %0a%0n%0d%0 %0d%0e%0c%0e%0i%0t%0 …
31 %0<%0b%0o%0d%0y%0>%0�%0<%0/%0b%0o%0d%0y%0>%0<%0/%0h%0t%0m%0l%0>%0
/php-src/ext/zend_test/
H A Dobject_handlers.c25 static zend_object* donc_object_create_ex(zend_class_entry* ce, zend_long l) { in donc_object_create_ex() argument
29 ZVAL_LONG(OBJ_PROP_NUM(obj, 0), l); in donc_object_create_ex()
38 static inline void donc_create(zval *target, zend_long l) /* {{{ */ in donc_create() argument
40 ZVAL_OBJ(target, donc_object_create_ex(donc_ce, l)); in donc_create()
116 zend_long l; in ZEND_METHOD() local
119 Z_PARAM_LONG(l) in ZEND_METHOD()
122 ZVAL_LONG(OBJ_PROP_NUM(Z_OBJ_P(ZEND_THIS), 0), l); in ZEND_METHOD()
132 ZVAL_LONG(OBJ_PROP_NUM(obj, 0), l); in long_castable_no_operation_object_create_ex()
152 zend_long l; in ZEND_METHOD() local
155 Z_PARAM_LONG(l) in ZEND_METHOD()
[all …]
/php-src/ext/standard/tests/array/
H A Dbug24766.phpt12 $l = array_keys($b);
13 var_dump($k, $l);
16 $i=$l[0];
/php-src/ext/intl/tests/
H A Dtransliterator_transliterate_basic.phpt17 Kontogiannátos, Basílēs
18 Kontogiannátos, Basílēs
19 ΚονTogiannátos, Basílēs
H A Dbug67052.phpt10 $l = setlocale(LC_ALL, 'de_DE');
11 if($l === false) {
14 setlocale(LC_ALL, $l);
/php-src/ext/opcache/jit/ir/
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 …]
/php-src/ext/standard/tests/strings/
H A Dpack.phpt73 print_r(unpack("l", pack("l", 65534)));
74 print_r(unpack("l", pack("l", 0)));
75 print_r(unpack("l", pack("l", 2147483650)));
76 print_r(unpack("l", pack("l", 4294967296)));
77 print_r(unpack("l", pack("l", -2147483648)));
H A Dstripcslashes_basic.phpt7 var_dump(stripcslashes('\H\e\l\l\o \W\or\l\d'));
/php-src/ext/phar/phar/
H A Dclicommand.inc116 $l = strlen($prefix);
119 if (substr($m->name, 0, $l) == $prefix) {
233 private function cli_wordwrap($what, $l, $sp)
236 $b = substr($what, 0, $l); // strip out initial $l
237 $r = substr($what, $l); // remainder
256 $sp2 = $this->cli_get_SP2($l, $inf);
265 $sp3 = $this->cli_get_SP3($l, $ls, $inf);
304 $l = strlen($which);
308 $l = 0;
311 $l = max($l, strlen($name));
[all …]
/php-src/sapi/cgi/tests/
H A D006.phpt32 var_dump(`"$php" -n -l "$filename"`);
33 var_dump(`"$php" -n -l some.unknown`);
48 var_dump(`"$php" -n -l "$filename"`);
50 var_dump(`"$php" -n -l "$filename" 2>/dev/null`);
/php-src/Zend/tests/multibyte/
H A Dmultibyte_encoding_006.phpt13 ���e���c���h���o��� ���"���h���e���l���l���o��� ���w���o���r���l���d���"���;���
/php-src/Zend/tests/in-de-crement/
H A Dincrement_with_castable_objects_no_addition.phpt8 $l = new LongCastableNoOperations(5);
15 var_dump($l + 1);
40 $l++;
41 var_dump($l);
H A Ddecrement_with_castable_objects_no_subtraction.phpt8 $l = new LongCastableNoOperations(5);
15 var_dump($l - 1);
40 $l--;
41 var_dump($l);
/php-src/ext/reflection/tests/
H A DReflectionClass_getMethods_004.phpt5 $l = function() {};
6 $o=new ReflectionObject($l);
/php-src/ext/pdo_firebird/
H A Dfirebird_driver.c302 unsigned int l; in php_firebird_preprocess() local
322 l = p - i; in php_firebird_preprocess()
325 if (l > 252) { in php_firebird_preprocess()
329 ident[l] = '\0'; in php_firebird_preprocess()
347 l = p - i2; in php_firebird_preprocess()
350 if (l > 252) { in php_firebird_preprocess()
386 l = p - start; in php_firebird_preprocess()
742 for (l = ZSTR_VAL(unquoted); (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
743 strncpy(c, l, r-l+1); in firebird_handle_quoter()
744 c += (r-l+1); in firebird_handle_quoter()
[all …]
/php-src/main/
H A Dphp_ini_builder.h76 #define php_ini_builder_prepend_literal(b, l) php_ini_builder_prepend(b, l, strlen(l)) argument
/php-src/ext/standard/tests/general_functions/
H A Dproc_nice_basic-win.phpt48 foreach ($t as $n => $l) {
49 if (!$n || empty($l)) {
56 $d[] = (int) substr($l, $c + 1, strpos($l, ' ', $c + 2) - ($c + 1));
/php-src/Zend/
H A DMakefile.frag8 …)/zend_language_scanner.c $(srcdir)/zend_language_scanner_defs.h: $(srcdir)/zend_language_scanner.l
9 …bdFt Zend/zend_language_scanner_defs.h -oZend/zend_language_scanner.c Zend/zend_language_scanner.l)
28 $(srcdir)/zend_ini_scanner.c: $(srcdir)/zend_ini_scanner.l
29 …ase-inverted -cbdFt Zend/zend_ini_scanner_defs.h -oZend/zend_ini_scanner.c Zend/zend_ini_scanner.l)
/php-src/Zend/tests/
H A Dbug69167.phpt5 function l($m) {
9 $cb = 'l';
/php-src/ext/intl/grapheme/
H A Dgrapheme_util.c50 void grapheme_substr_ascii(char *str, size_t str_len, int32_t f, int32_t l, char **sub_str, int32_t… in grapheme_substr_ascii() argument
75 if (l < 0) { in grapheme_substr_ascii()
76 l = (str_len2 - f) + l; in grapheme_substr_ascii()
77 if (l < 0) { in grapheme_substr_ascii()
78 l = 0; in grapheme_substr_ascii()
80 } else if (l > str_len2 - f) { in grapheme_substr_ascii()
81 l = str_len2 - f; in grapheme_substr_ascii()
85 *sub_str_len = l; in grapheme_substr_ascii()
/php-src/sapi/phpdbg/
H A Dphpdbg_cmd.c249 if (l && r) { in phpdbg_match_param()
250 if (l->type == r->type) { in phpdbg_match_param()
251 switch (l->type) { in phpdbg_match_param()
258 if (l->num != r->num) { in phpdbg_match_param()
264 return (l->len == r->len) && in phpdbg_match_param()
265 (memcmp(l->str, r->str, l->len) == SUCCESS); in phpdbg_match_param()
268 return (l->num == r->num); in phpdbg_match_param()
271 return (l->addr == r->addr); in phpdbg_match_param()
274 if (l->file.line == r->file.line) { in phpdbg_match_param()
279 if ((!l->num && !r->num) || (l->num == r->num)) { in phpdbg_match_param()
[all …]
H A DMakefile.frag12 %.c: %.l
16 $(srcdir)/phpdbg_lexer.c: $(srcdir)/phpdbg_lexer.l
17 …C) $(RE2C_FLAGS) --no-generation-date -cbdFo sapi/phpdbg/phpdbg_lexer.c sapi/phpdbg/phpdbg_lexer.l)

Completed in 42 milliseconds

12345678910>>...13