Home
last modified time | relevance | path

Searched refs:s (Results 4776 – 4800 of 6191) sorted by relevance

1...<<191192193194195196197198199200>>...248

/PHP-5.5/ext/iconv/
H A Dconfig.m440 AC_MSG_CHECKING([if iconv is glibc's])
72 AC_MSG_CHECKING([if iconv is Konstantin Chuguev's])
111 AC_DEFINE([HAVE_BSD_ICONV],1,[Konstantin Chuguev's iconv implementation])
118 AC_DEFINE([HAVE_GLIBC_ICONV],1,[glibc's iconv implementation])
/PHP-5.5/ext/standard/
H A Dcrypt_blowfish.c834 char s[7 + 22 + 1]; in php_crypt_blowfish_rn() member
850 memcpy(buf.s, test_setting, sizeof(buf.s)); in php_crypt_blowfish_rn()
855 buf.s[2] = setting[2]; in php_crypt_blowfish_rn()
859 p = BF_crypt(test_key, buf.s, buf.o, sizeof(buf.o) - (1 + 1), 1); in php_crypt_blowfish_rn()
862 !memcmp(p, buf.s, 7 + 22) && in php_crypt_blowfish_rn()
H A Dstring.c1371 return s; in php_strtoupper()
1405 return s; in php_strtolower()
1647 return php_memnstr(s, t, t_len, s + s_len);
3313 s = str;
3654 memcpy(target, s, (p - s));
3659 s = p;
3665 memcpy(target, s, (e - s));
4950 l = (e-s) < (ee-e) ? (e-s) : (ee-e);
5485 s = p;
5493 buf = estrndup(s, (p-s));
[all …]
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc.c1727 void XMLRPC_SetValueDateTime_ISO8601(XMLRPC_VALUE value, const char* s) { in XMLRPC_SetValueDateTime_ISO8601() argument
1730 if(s) { in XMLRPC_SetValueDateTime_ISO8601()
1732 date_from_ISO8601(s, &time_val); in XMLRPC_SetValueDateTime_ISO8601()
1735 simplestring_add(&value->str, s); in XMLRPC_SetValueDateTime_ISO8601()
1766 XMLRPC_SetValueDateTime_ISO8601(val, s); in XMLRPC_CreateValueDateTime_ISO8601()
1799 void XMLRPC_SetValueBase64(XMLRPC_VALUE value, const char* s, int len) { in XMLRPC_SetValueBase64() argument
1800 if(value && s) { in XMLRPC_SetValueBase64()
1802 (len > 0) ? simplestring_addn(&value->str, s, len) : in XMLRPC_SetValueBase64()
1803 simplestring_add(&value->str, s); in XMLRPC_SetValueBase64()
1832 XMLRPC_VALUE XMLRPC_CreateValueBase64(const char* id, const char* s, int len) { in XMLRPC_CreateValueBase64() argument
[all …]
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in5 ; All relative paths in this configuration file are relative to PHP's install
13 ; - the global prefix if it's been set (-p argument)
60 ; accidental corruptions in an accelerator's shared memory.
61 ; Available Units: s(econds), m(inutes), h(ours), or d(ays)
67 ; Available units: s(econds), m(inutes), h(ours), or d(ays)
113 ; Available Units: s(econds), m(inutes), h(ours)
249 ; Default Value: 10s
250 ;pm.process_idle_timeout = 10s;
421 ; %s: status (response code)
430 ; Default: "%R - %u %t \"%m %r\" %s"
[all …]
/PHP-5.5/ext/gd/libgd/
H A Dgd.c309 #define SETUP_RGB(s, r, g, b) {s.R = r/255.0f; s.G = g/255.0f; s.B = b/255.0f;} argument
1629 l = strlen16(s); in gdImageString16()
1640 l = strlen16(s); in gdImageStringUp16()
1650 while (*s) { in strlen16()
1651 s++; in strlen16()
1693 s = 0; e = 360; in gdImageFilledArc()
1695 if (s > 360) { in gdImageFilledArc()
1696 s = s % 360; in gdImageFilledArc()
1704 s += 360; in gdImageFilledArc()
1710 if (s == e) { in gdImageFilledArc()
[all …]
/PHP-5.5/main/
H A Dmain.c205 if (s) { in php_disable_functions()
207 zend_disable_function(s, e-s TSRMLS_CC); in php_disable_functions()
212 if (!s) { in php_disable_functions()
213 s = e; in php_disable_functions()
219 if (s) { in php_disable_functions()
220 zend_disable_function(s, e-s TSRMLS_CC); in php_disable_functions()
241 if (s) { in php_disable_classes()
243 zend_disable_class(s, e-s TSRMLS_CC); in php_disable_classes()
249 s = e; in php_disable_classes()
255 if (s) { in php_disable_classes()
[all …]
/PHP-5.5/ext/imap/tests/
H A Dimap_utf8_to_mutf7_basic.phpt20 Warning: imap_utf8_to_mutf7() expects parameter 1 to be string, array given in %s on line %d
/PHP-5.5/ext/spl/tests/
H A Dregexiterator_setflags_exception.phpt1 --TEST--
2 SPL: RegexIterator::setFlags() exceptions test
3 --CREDITS--
4 Lance Kesson jac_kesson@hotmail.com
5 #testfest London 2009-05-09
6 --FILE--
7 <?php
8
9 class myIterator implements Iterator {
10
[all …]
H A Dregexiterator_setpregflags_exception.phpt1 --TEST--
2 SPL: RegexIterator::getPregFlags() exception test
3 --CREDITS--
4 Lance Kesson jac_kesson@hotmail.com
5 #testfest London 2009-05-09
6 --FILE--
7 <?php
8
9 class myIterator implements Iterator {
10
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Darray_fill_keys.phpt15 Warning: array_fill_keys() expects parameter 1 to be array, string given in %s on line %d
/PHP-5.5/ext/reflection/tests/
H A DReflectionMethod_invokeArgs_error2.phpt27 … passed to ReflectionMethod::invokeArgs() must be of the type array, boolean given in %s on line %d
H A DReflectionObject_getName_basic.phpt22 Warning: ReflectionObject::__construct() expects exactly 1 parameter, 0 given in %s on line 2
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_options_openbasedir.phpt14 printf("[001] Cannot connect, [%d] %s\n", mysqli_connect_errno(), mysqli_connect_error());
/PHP-5.5/ext/session/tests/
H A Dbug68063.phpt18 Warning: session_start(): Cannot start session with empty session ID in %s on line %d
/PHP-5.5/ext/simplexml/tests/
H A Dbug40451.phpt23 Warning: SimpleXMLElement::addAttribute(): Unable to locate parent Element in %s on line %d
/PHP-5.5/ext/phar/tests/
H A Dphar_buildfromiterator1.phpt26 %s(24) "UnexpectedValueException"
/PHP-5.5/ext/sockets/tests/
H A Dsocket_set_block-retval.phpt24 Warning: socket_set_block(): %d is not a valid Socket resource in %s on line %d
H A Dsocket_set_nonblock-retval.phpt24 Warning: socket_set_nonblock(): %d is not a valid Socket resource in %s on line %d
H A Dbug51958.phpt12 die('skip test relies Winsock\'s error code for WSAEWOULDBLOCK/EAGAIN');
/PHP-5.5/ext/mbstring/tests/
H A Dphp_gr_jp_dev_884-1.phpt16 Deprecated: Function ereg_replace() is deprecated in %s on line %d
/PHP-5.5/ext/date/tests/
H A Dbug45682.phpt26 ["s"]=>
H A Dbug50392.phpt12 $result = date_parse_from_format('Y-m-d H:i:s.u', $string);
H A Dbug52738.phpt29 [s] => 0
H A Ddate_interval_create_from_date_string_nullparam.phpt22 ["s"]=>

Completed in 95 milliseconds

1...<<191192193194195196197198199200>>...248