Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 351) sorted by path

12345678910>>...15

/PHP-5.5/
H A DMakefile.frag9 $(srcdir)/zend_language_scanner.c: $(srcdir)/zend_language_scanner.l
10 …bdFt Zend/zend_language_scanner_defs.h -oZend/zend_language_scanner.c Zend/zend_language_scanner.l)
20 $(srcdir)/zend_ini_scanner.c: $(srcdir)/zend_ini_scanner.l
21 …ase-inverted -cbdFt Zend/zend_ini_scanner_defs.h -oZend/zend_ini_scanner.c Zend/zend_ini_scanner.l)
H A DMakefile.gcov36 ln -f -s $(top_srcdir)/$$y.l lcov_data/$$y.l; \
H A DREADME.EXT_SKEL175 …if (zend_parse_parameters(argc TSRMLS_CC, "rsrll|l", &image, &text, &text_len, &font, &x, &y, &col…
H A DREADME.PARAMETER_PARSING_API61 l - long (long)
82 For 'b', 'l' and 'd', an extra argument of type zend_bool* must be
91 OSes (int is 4 bytes and long is 8 bytes), so make sure you pass longs to "l"
94 Remember: "l" is the only case when you need to pass long (and that's why
95 it's "l", not "i" btw).
105 zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &num)
116 long l;
121 &l, &s, &s_len, &param) == FAILURE) {
223 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a*l", &array, &varargs, &num_varargs, &num) =…
/PHP-5.5/TSRM/
H A DTSRM.dsp47 # ADD BASE RSC /l 0x40d /d "_DEBUG"
48 # ADD RSC /l 0x40d /d "_DEBUG"
70 # ADD BASE RSC /l 0x40d /d "NDEBUG"
71 # ADD RSC /l 0x40d /d "NDEBUG"
93 # ADD BASE RSC /l 0x40d /d "NDEBUG"
94 # ADD RSC /l 0x40d /d "NDEBUG"
116 # ADD BASE RSC /l 0x40d /d "NDEBUG"
117 # ADD RSC /l 0x40d /d "NDEBUG"
H A Dthreads.m4146 LIBS="$LIBS -l$lib"
167 LIBS="$LIBS -l$ac_cv_pthreads_lib"
/PHP-5.5/Zend/
H A DMakefile.am9 zend_language_parser.y zend_language_scanner.l \
10 zend_ini_parser.y zend_ini_scanner.l \
34 zend_language_scanner.c: $(srcdir)/zend_language_scanner.l
35 …-case-inverted -cbdFt $(srcdir)/zend_language_scanner_defs.h -o$@ $(srcdir)/zend_language_scanner.l
46 zend_ini_scanner.c: $(srcdir)/zend_ini_scanner.l
47 …ion-date --case-inverted -cbdFt $(srcdir)/zend_ini_scanner_defs.h -o$@ $(srcdir)/zend_ini_scanner.l
H A DZend.dsp45 # ADD BASE RSC /l 0x40d /d "NDebug"
46 # ADD RSC /l 0x40d /d "NDebug"
66 # ADD BASE RSC /l 0x40d /d "_Debug"
67 # ADD RSC /l 0x40d /d "_Debug"
89 # ADD BASE RSC /l 0x40d /d "NDebug"
90 # ADD RSC /l 0x40d /d "NDebug"
525 # PROP Default_Filter "l"
532 SOURCE=.\zend_ini_scanner.l
539 InputPath=.\zend_ini_scanner.l
553 SOURCE=".\zend_language_scanner.l"
[all …]
H A DZendTS.dsp46 # ADD BASE RSC /l 0x40d /d "NDebug_TS"
47 # ADD RSC /l 0x40d /d "NDebug_TS"
68 # ADD RSC /l 0x40d /d "_Debug_TS"
91 # ADD RSC /l 0x40d /d "NDebug_TS"
114 # ADD RSC /l 0x40d /d "NDebug_TS"
619 # PROP Default_Filter "l"
626 SOURCE=.\zend_ini_scanner.l
631 InputPath=.\zend_ini_scanner.l
641 InputPath=.\zend_ini_scanner.l
651 InputPath=.\zend_ini_scanner.l
[all …]
H A Dbench.php219 $l = ($n >> 1) + 1;
223 if ($l > 1) {
224 $rra = $ra[--$l];
233 $i = $l;
234 $j = $l << 1;
H A Dzend_API.c396 long l; in zend_parse_arg_impl() local
399 if ((type = is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), &l, p, -1)) == 0) { in zend_parse_arg_impl()
402 *p = (double) l; in zend_parse_arg_impl()
1496 ZEND_API int add_get_index_long(zval *arg, ulong index, long l, void **dest) /* {{{ */ in add_get_index_long() argument
1501 ZVAL_LONG(tmp, l); in add_get_index_long()
H A Dzend_API.h544 #define CHECK_NULL_PATH(p, l) (strlen(p) != l) argument
546 #define ZVAL_RESOURCE(z, l) do { \ argument
548 Z_LVAL_P(__z) = l; \
562 #define ZVAL_LONG(z, l) { \ argument
564 Z_LVAL_P(__z) = l; \
617 #define RETVAL_RESOURCE(l) ZVAL_RESOURCE(return_value, l) argument
620 #define RETVAL_LONG(l) ZVAL_LONG(return_value, l) argument
623 #define RETVAL_STRINGL(s, l, duplicate) ZVAL_STRINGL(return_value, s, l, duplicate) argument
629 #define RETURN_RESOURCE(l) { RETVAL_RESOURCE(l); return; } argument
632 #define RETURN_LONG(l) { RETVAL_LONG(l); return; } argument
[all …]
H A Dzend_exceptions.c371 int l = vallen; \
372 *str = (char*)erealloc(*str, *len + l + 1); \
373 memcpy((*str) + *len, val, l); \
374 *len += l; \
/PHP-5.5/Zend/tests/
H A Daccess_modifiers_008.phpt4 Discussion: http://marc.info/?l=php-internals&m=120221184420957&w=2
H A Daccess_modifiers_009.phpt4 Discussion: http://marc.info/?l=php-internals&m=120221184420957&w=2
H A Dbug38779.phpt10 $this->data = '<' . "?php \n\"\";ll l\n ?" . '>';
H A Dbug38779_1.phpt10 $this->data = '<' . "?php \n\"\";ll l\n ?" . '>';
H A Dhex_overflow_32bit.phpt18 $l = $d;
19 var_dump($l);
H A Dint_overflow_32bit.phpt17 $l = (int)$d;
18 var_dump($l);
H A Dint_overflow_64bit.phpt19 $l = (int)$d;
20 var_dump($l);
H A Dint_underflow_32bit.phpt17 $l = (int)$d;
18 var_dump($l);
H A Dint_underflow_64bit.phpt17 $l = (int)$d;
18 var_dump($l);
H A Doct_overflow_32bit.phpt19 $l = (double)$d;
20 var_dump($l);
/PHP-5.5/Zend/tests/multibyte/
H A Dmultibyte_encoding_003.phpt17 �p�r�i�n�t� �"�H�e�ll�o� �W�o�r�l�d�\�n�"�;�
H A Dmultibyte_encoding_006.phpt16 ���e���c���h���o��� ���"���h���e���l���l���o��� ���w���o���r���l���d���"���;���

Completed in 86 milliseconds

12345678910>>...15