Home
last modified time | relevance | path

Searched refs:l (Results 201 – 225 of 326) sorted by relevance

12345678910>>...14

/PHP-5.3/Zend/tests/
H A Dbug38779_1.phpt10 $this->data = '<' . "?php \n\"\";ll l\n ?" . '>';
/PHP-5.3/ext/pcre/pcrelib/testdata/
H A Dtestoutput392 Q R S T U V W X Y Z _ a b c d e f g h i j k l m n o p q r s t u v w x y z
101 Q R S T U V W X Y Z _ a b c d e f g h i j k l m n o p q r s t u v w x y z
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_statistics.c216 zend_string_to_unicode(UG(utf8_conv), &ustr, &ulen, names[i].s, names[i].l + 1 TSRMLS_CC); in mysqlnd_fill_stats_hash()
222 add_assoc_string_ex(return_value, names[i].s, names[i].l + 1, tmp, 1); in mysqlnd_fill_stats_hash()
H A Dmysqlnd_debug.c1209 size_t l = length; in _mysqlnd_pestrndup() local
1212 while (*p && l--) { in _mysqlnd_pestrndup()
1420 int l = vallen; \
1421 *str = (char*)erealloc(*str, *len + l + 1); \
1422 memcpy((*str) + *len, val, l); \
1423 *len += l; \
1664 int l = vallen; \
1665 *str = (char*)erealloc(*str, *len + l + 1); \
1666 memcpy((*str) + *len, val, l); \
1667 *len += l; \
/PHP-5.3/ext/date/tests/
H A DDateTime_verify.phpt163 string(16) "l, d-M-y H:i:s T"
169 string(16) "l, d-M-y H:i:s T"
H A Dbug20382-2.phpt40 print "ts = ". date("l Y-m-d H:i:s T", $timestamp). "\n";
42 print "result = ".date("l Y-m-d H:i:s T", $strtotime_tstamp)."\n";
/PHP-5.3/ext/zip/lib/
H A Dzip_dirent.c370 struct tm *l; in _zip_dirent_torrent_normalize() local
385 l = localtime(&now); in _zip_dirent_torrent_normalize()
386 torrenttime.tm_gmtoff = l->tm_gmtoff; in _zip_dirent_torrent_normalize()
387 torrenttime.tm_zone = l->tm_zone; in _zip_dirent_torrent_normalize()
/PHP-5.3/ext/standard/tests/array/
H A Darray_combine.phpt20 $l = array_combine($array3, $array4);
/PHP-5.3/ext/phar/
H A Dshortarc.php217 $l = unpack('V', substr($m, 10, 4));
218 $m = substr($m, 14 + $l[1]);
/PHP-5.3/ext/standard/tests/strings/
H A Dstrcspn_variation10.phpt43 "\n\trsti \l",
44 '\n\trsti \l',
H A Dstrspn_variation10.phpt44 "f\n\trelshti \l",
45 'f\n\trelsthi \l',
/PHP-5.3/tests/lang/
H A Dengine_assignExecutionOrder_002.phpt49 list(list($l,$m),$n) = $k;
50 echo "L=$l M=$m N=$n\n";
/PHP-5.3/ext/xmlrpc/
H A Dxmlrpc.dsp49 # ADD BASE RSC /l 0x1009 /d "_DEBUG"
50 # ADD RSC /l 0x1009 /d "_DEBUG"
75 # ADD BASE RSC /l 0x1009 /d "NDEBUG"
76 # ADD RSC /l 0x1009 /d "NDEBUG"
/PHP-5.3/ext/gd/libgd/
H A Dgd.c1593 int l; in gdImageString() local
1604 int l; in gdImageStringUp() local
1617 int l; in gdImageString16() local
1618 l = strlen16(s); in gdImageString16()
1628 int l; in gdImageStringUp16() local
1925 l = x+1; in gdImageFill()
1928 if (l<x1) { in gdImageFill()
1943 l = x; in gdImageFill()
1997 l = x+1; in _gdImageFillTiled()
2000 if (l<x1) { in _gdImageFillTiled()
[all …]
/PHP-5.3/ext/fileinfo/libmagic/
H A Dcdf.c722 cdf_namecmp(const char *d, const uint16_t *s, size_t l) in cdf_namecmp() argument
724 for (; l--; d++, s++) in cdf_namecmp()
914 uint32_t l = CDF_GETUINT32(q, o); in cdf_read_property_info() local
915 inp[i].pi_str.s_len = l; in cdf_read_property_info()
917 (const void *)(&q[o4 + sizeof(l)]); in cdf_read_property_info()
919 "u, s = %s\n", l, in cdf_read_property_info()
920 CDF_ROUND(l, sizeof(l)), in cdf_read_property_info()
922 if (l & 1) in cdf_read_property_info()
923 l++; in cdf_read_property_info()
924 o += l >> 1; in cdf_read_property_info()
/PHP-5.3/ext/pcre/tests/
H A Dpreg_match_basic.phpt12 var_dump(preg_match('/l^o,\s\w{5}/', $string, $match2, PREG_OFFSET_CAPTURE)); // tries to find "lo,…
H A Dpreg_match_basic_edit.phpt17 var_dump(preg_match('/l^o,\s\w{5}/', $string, $match2, PREG_OFFSET_CAPTURE)); // tries to find "…
/PHP-5.3/ext/mbstring/tests/
H A Dhtmlent.phpt29 <?php echo mb_http_input('l').'>'.mb_internal_encoding().'>'.mb_http_output();?>
/PHP-5.3/ext/dba/
H A Ddba.dsp50 # ADD BASE RSC /l 0x407 /d "NDEBUG"
51 # ADD RSC /l 0x407 /d "NDEBUG"
77 # ADD BASE RSC /l 0x407 /d "_DEBUG"
78 # ADD RSC /l 0x407 /d "_DEBUG"
/PHP-5.3/ext/posix/
H A Dposix.c1323 struct limitlist *l = NULL; in PHP_FUNCTION() local
1329 for (l=limits; l->name; l++) { in PHP_FUNCTION()
1330 if (posix_addlimit(l->limit, l->name, return_value TSRMLS_CC) == FAILURE) { in PHP_FUNCTION()
/PHP-5.3/ext/dom/
H A Ddom.dsp50 # ADD BASE RSC /l 0x406 /d "NDEBUG"
51 # ADD RSC /l 0x406 /d "NDEBUG"
78 # ADD BASE RSC /l 0x406 /d "NDEBUG"
79 # ADD RSC /l 0x406 /d "NDEBUG"
/PHP-5.3/build/
H A Dbuild.mk54 find . -type l -exec rm {} \; ; \
/PHP-5.3/ext/mysqli/
H A Dmysqli_warning.c36 #define ZVAL_UTF8_STRINGL(z, s, l, flags) ZVAL_STRINGL((z), (char*)(s), (l), ((flags) & ZSTR_D… argument
/PHP-5.3/sapi/thttpd/
H A Dthttpd.c156 # define ADD_VEC(str,l) smart_str_appendl(&vec_str, (str), (l)) argument
160 # define ADD_VEC(str,l) vec[n].iov_base=str;len += (vec[n].iov_len=l); n++ argument
/PHP-5.3/ext/phar/tests/files/
H A Dopenssl.phar216 $l = unpack('V', substr($m, 10, 4));
217 $m = substr($m, 14 + $l[1]);
292 …�ض������hi�'�޵@]_�- ^x���=��Hb�(л2�r/BM�1�-K�/{>D@Mmj����[0(�l��a�Keӓ+\�9H� pv룱…

Completed in 86 milliseconds

12345678910>>...14