Home
last modified time | relevance | path

Searched refs:m (Results 151 – 175 of 474) sorted by relevance

12345678910>>...19

/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_auth.c60 auth_resp_packet = conn->protocol->m.get_auth_response_packet(conn->protocol, FALSE TSRMLS_CC); in mysqlnd_auth_handshake()
68 …change_auth_resp_packet = conn->protocol->m.get_change_auth_response_packet(conn->protocol, FALSE … in mysqlnd_auth_handshake()
83 auth_packet = conn->protocol->m.get_auth_packet(conn->protocol, FALSE TSRMLS_CC); in mysqlnd_auth_handshake()
181 chg_user_resp = conn->protocol->m.get_change_user_response_packet(conn->protocol, FALSE TSRMLS_CC); in mysqlnd_auth_change_user()
204 auth_packet = conn->protocol->m.get_auth_packet(conn->protocol, FALSE TSRMLS_CC); in mysqlnd_auth_change_user()
222 if (conn->m->get_server_version(conn TSRMLS_CC) >= 50123) { in mysqlnd_auth_change_user()
262 …if (conn->m->get_server_version(conn TSRMLS_CC) > 50113L &&conn->m->get_server_version(conn TSRMLS… in mysqlnd_auth_change_user()
267 …DBG_INF_FMT("Server is %u, buggy, sends two ERR messages", conn->m->get_server_version(conn TSRMLS… in mysqlnd_auth_change_user()
294 if (conn->m->get_server_version(conn TSRMLS_CC) < 50123) { in mysqlnd_auth_change_user()
295 ret = conn->m->set_charset(conn, old_cs->name TSRMLS_CC); in mysqlnd_auth_change_user()
[all …]
/PHP-5.5/ext/pcre/tests/
H A Dpcre_anchored.phpt12 var_dump(preg_match('/\PN+/', '123abc', $m));
13 var_dump($m);
H A Dbug42945.phpt6 var_dump(preg_match_all('/\b/', "a'", $m, PREG_OFFSET_CAPTURE));
7 var_dump($m);
H A Dpreg_replace_callback2.phpt22 var_dump(preg_replace_callback('~\A.~', create_function('$m', 'return strtolower($m[0]);'), 'ABC'));
H A Dbug66121.phpt10 var_dump(preg_replace('/(?<!k)/u', '*', 'm'));
24 string(3) "*m*"
/PHP-5.5/ext/date/tests/
H A Dbug46874.phpt8 echo $date->format("Y-m-d H:i:s\n");
15 echo $date->format("Y-m-d H:i:s\n");
H A Dbug48678.phpt13 [m] => 6
31 [m] => 6
H A Dbug26320.phpt11 echo date("Y-m-d H:i:s\n", strtotime("2003-11-19T12:30:42"));
12 echo date("Y-m-d H:i:s\n", strtotime("2003-11-19T12:30:42Z"));
H A Dbug52454.phpt10 echo $endOfWeek->format('Y-m-d H:i:s')."\n";
16 echo $endOfWeek->format('Y-m-d H:i:s')."\n";
H A Dbug20382-1.phpt8 echo "tStamp=". date("l Y-m-d H:i:s T", $tStamp). "\n";
11 echo "result=". date("l Y-m-d H:i:s T", $strtotime_timestamp). "\n";
H A Dbug52062-64bit.phpt12 var_dump($d->format('Y-m-d H:i:s U'));
16 var_dump($d->format('Y-m-d H:i:s U'));
H A Dbug28088.phpt8 echo gmdate("m/d/y Hi", strtotime("04/04/04 2345")), "\n";
11 echo gmdate("m/d/y Hi", strtotime("04/04/04 0045"))."\r\n";
H A Dbug62561.phpt11 echo 'ts: '.$ts->format('Y-m-d H:i:s')."\n";
12 echo 'day from ts: '.$dayFromTs->format('Y-m-d H:i:s')."\n";
H A Dtest-parse-from-format.phpt24 string(13) "Y-m-d\TH:i:sP"
46 string(13) "Y-m-d\TH:i:sO"
112 string(13) "Y-m-d\TH:i:sP"
134 string(13) "Y-m-d\TH:i:sP"
H A Dbug52062.phpt12 var_dump($d->format('Y-m-d H:i:s U'));
17 var_dump($d->format('Y-m-d H:i:s U'));
H A Dbug52808.phpt31 ["m"]=>
63 ["m"]=>
95 ["m"]=>
/PHP-5.5/ext/pdo_sqlite/tests/
H A Dbug46542.phpt10 { function __call($m, $p) {print __CLASS__."::$m\n";} }
/PHP-5.5/tests/classes/
H A D__call_001.phpt11 function __call($m, $a) {
12 echo "Method $m called:\n";
/PHP-5.5/ext/gmp/tests/
H A D016.phpt19 $m = gmp_init(900);
20 var_dump(gmp_strval(gmp_powm($n,$e,$m)));
22 var_dump(gmp_powm(array(),$e,$m));
23 var_dump(gmp_powm($n,array(),$m));
/PHP-5.5/ext/hash/
H A Dhash_gost.c129 #define SHIFT12(u, m, s) \ argument
130 u[0] = m[0] ^ s[6]; \
131 u[1] = m[1] ^ s[7]; \
132 u[2] = m[2] ^ (s[0] << 16) ^ (s[0] >> 16) ^ (s[0] & 0xffff) ^ \
135 u[3] = m[3] ^ (s[0] & 0xffff) ^ (s[0] << 16) ^ (s[1] & 0xffff) ^ \
139 u[4] = m[4] ^ \
144 u[5] = m[5] ^ (s[0] << 16) ^ (s[0] >> 16) ^ (s[0] & 0xffff0000) ^ \
148 u[6] = m[6] ^ s[0] ^ (s[1] >> 16) ^ (s[2] << 16) ^ s[3] ^ (s[3] >> 16) ^ \
151 u[7] = m[7] ^ (s[0] & 0xffff0000) ^ (s[0] << 16) ^ (s[1] & 0xffff) ^ \
213 php_hash_uint32 l, r, t, key[8], u[8], v[8], w[8], s[8], *h = state, *m = data; in Gost() local
[all …]
/PHP-5.5/ext/date/lib/
H A Dastro.c28 #define days_since_2000_Jan_0(y,m,d) \ argument
29 (367L*(y)-((7*((y)+(((m)+9)/12)))/4)+((275*(m))/9)+(d)-730530L)
231 t_utc->m = t_loc->m; in timelib_astro_rise_set_altitude()
H A Dtimelib.c25 #define TIMELIB_TIME_FREE(m) \ argument
26 if (m) { \
27 free(m); \
28 m = NULL; \
210 d->sse, d->y < 0 ? "-" : "", TIMELIB_LLABS(d->y), d->m, d->d, d->h, d->i, d->s); in timelib_dump_date()
240 d->relative.y, d->relative.m, d->relative.d, d->relative.h, d->relative.i, d->relative.s); in timelib_dump_date()
275 d->y, d->m, d->d, d->h, d->i, d->s, d->days, d->invert ? " inverted" : ""); in timelib_dump_rel_time()
/PHP-5.5/ext/spl/tests/
H A Darray_025.phpt27 C:11:"ArrayObject":76:{x:i:0;C:11:"ArrayObject":37:{x:i:0;a:2:{i:0;i:1;i:1;i:2;};m:a:0:{}};m:a:0:{}}
H A Dbug70155.phpt5 $inner = 'x:i:0;O:12:"DateInterval":1:{s:1:"y";i:3;};m:a:1:{i:0;R:2;}';
20 ["m"]=>
/PHP-5.5/main/
H A Dwin95nt.h44 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) argument

Completed in 64 milliseconds

12345678910>>...19