Home
last modified time | relevance | path

Searched refs:m (Results 251 – 275 of 586) sorted by relevance

1...<<11121314151617181920>>...24

/php-src/ext/fileinfo/tests/
H A Dcve-2014-1943-mb.phpt12 $m = "0 byte x\n".
21 file_put_contents($fm, $m);
H A Dcve-2014-1943.phpt12 $m = "0 byte x\n".
21 file_put_contents($fm, $m);
/php-src/ext/hash/
H A Dhash_gost.c125 #define SHIFT12(u, m, s) \ argument
126 u[0] = m[0] ^ s[6]; \
127 u[1] = m[1] ^ s[7]; \
128 u[2] = m[2] ^ (s[0] << 16) ^ (s[0] >> 16) ^ (s[0] & 0xffff) ^ \
131 u[3] = m[3] ^ (s[0] & 0xffff) ^ (s[0] << 16) ^ (s[1] & 0xffff) ^ \
135 u[4] = m[4] ^ \
140 u[5] = m[5] ^ (s[0] << 16) ^ (s[0] >> 16) ^ (s[0] & 0xffff0000) ^ \
144 u[6] = m[6] ^ s[0] ^ (s[1] >> 16) ^ (s[2] << 16) ^ s[3] ^ (s[3] >> 16) ^ \
147 u[7] = m[7] ^ (s[0] & 0xffff0000) ^ (s[0] << 16) ^ (s[1] & 0xffff) ^ \
209 uint32_t l, r, t, key[8], u[8], v[8], w[8], s[8], *h = context->state, *m = data; in Gost() local
[all …]
/php-src/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.h32 #define PACKET_WRITE(conn, packet) ((packet)->header.m->write_to_net((conn), (packet)))
33 #define PACKET_READ(conn, packet) ((packet)->header.m->read_from_net((conn), (packet)))
37 if ((packet)->header.m->free_mem) { \
38 ((packet)->header.m->free_mem((packet))); \
56 mysqlnd_packet_methods *m; member
H A Dmysqlnd_debug.c58 if (!self->stream && FAIL == self->m->open(self, FALSE)) { in MYSQLND_METHOD()
130 self->m->close(self); in MYSQLND_METHOD()
131 self->m->open(self, TRUE); in MYSQLND_METHOD()
155 if (!self->stream && FAIL == self->m->open(self, FALSE)) { in MYSQLND_METHOD()
232 self->m->close(self); in MYSQLND_METHOD()
233 self->m->open(self, TRUE); in MYSQLND_METHOD()
431 self->m->log_va(self, __LINE__, __FILE__, 0, "info : ", in MYSQLND_METHOD()
434 self->m->log_va(self, __LINE__, __FILE__, -1, "info : ", in MYSQLND_METHOD()
720 ret->m = & mysqlnd_mysqlnd_debug_methods; in mysqlnd_debug_init()
744 dbg->m->close(dbg); in mysqlnd_debug()
[all …]
H A Dmysqlnd_loaddata.c198 ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info); in mysqlnd_handle_local_infile()
218 ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info); in mysqlnd_handle_local_infile()
224 if ((ret = net->data->m.send(net, vio, buf, bufsize, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile()
232 if ((ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile()
252 if (FAIL == conn->payload_decoder_factory->m.send_command_handle_response( in mysqlnd_handle_local_infile()
/php-src/ext/date/tests/
H A Dgh10747-3.phpt38 ["m"]=>
57 string(224) "O:1:"I":14:{s:1:"y";i:0;s:1:"m";i:0;s:1:"d";i:3;s:1:"h";i:0;s:1:"i";i:0;s:1:"s";i:0;s:…
69 ["m"]=>
H A Dbug75035.phpt19 $original = $d->format('Y-m-d H:i:s');
20 $serializedUnserialized = is_string($u) ? $u : $u->format('Y-m-d H:i:s');
H A Dbug53437_var6.phpt7 $s = 'O:12:"DateInterval":9:{s:1:"y";s:1:"2";s:1:"m";s:1:"0";s:1:"d";s:3:"bla";s:1:"h";s:1:"6";s:1:…
17 ["m"]=>
H A D002.phpt37 echo date ("Y-m-d H:i:s\n", strtotime ($date));
48 echo date ("Y-m-d H:i:s\n", strtotime ($date));
H A Dbug53437_var4.phpt13 $df->m,
27 ["m"]=>
H A DDateInterval_format.phpt27 echo $interval->format('m=%m') . "\n";
58 m=2
H A Dexamine_diff.inc41 $start_date = $start->format('Y-m-d H:i:s T');
48 $end_date = $end->format('Y-m-d H:i:s T');
69 $result_end_date = $start->format('Y-m-d H:i:s T');
74 $result_start_date = $end->format('Y-m-d H:i:s T');
H A DDatePeriod_serialize-001.phpt43 ["m"]=>
72 …rent";N;s:3:"end";N;s:8:"interval";O:12:"DateInterval":10:{s:1:"y";i:0;s:1:"m";i:0;s:1:"d";i:7;s:1…
94 ["m"]=>
141 ["m"]=>
/php-src/ext/pcre/tests/
H A Dbug66121.phpt10 var_dump(preg_replace('/(?<!k)/u', '*', 'm'));
24 string(3) "*m*"
H A Dpreg_replace_callback2.phpt22 var_dump(preg_replace_callback('~\A.~', function($m) { return strtolower($m[0]); }, 'ABC'));
H A D001.phpt12 ~x', $s, $m));
14 var_dump($m);
H A Dbug37911.phpt14 var_dump(preg_match('|(?P<name>blub)|', 'bla blub blah', $m));
15 var_dump($m);
/php-src/Zend/tests/in-de-crement/
H A Dincdec_undef.phpt5 set_error_handler(function($_, $m) {
6 echo "$m\n";
/php-src/ext/reflection/tests/
H A DReflectionFunction_isGenerator_basic.phpt42 foreach($rc->getMethods() as $m) {
43 var_dump($m->isGenerator());
/php-src/ext/standard/tests/password/
H A Dpassword_get_info_argon2.phpt11 var_dump(password_get_info('$argon2i$v=19$m=65536,t=3,p=1$SWhIcG5MT21Pc01PbWdVZw$WagZELICsz7jlqOR2Y…
12 var_dump(password_get_info('$argon2id$v=19$m=1024,t=2,p=2$Zng1U1RHS0h1aUJjbGhPdA$ajQnG5s01Ws1ad8xv+…
/php-src/Zend/tests/type_declarations/variance/
H A Dclass_order_autoload_error9.phpt10 function m(): B {}
17 function m(): X {}
/php-src/sapi/embed/
H A Dconfig.m415 …INSTALL_IT="\$(mkinstalldirs) \$(INSTALL_ROOT)\$(orig_libdir); \$(INSTALL) -m 0755 $SAPI_SHARED \$…
20 …INSTALL_IT="\$(mkinstalldirs) \$(INSTALL_ROOT)\$(orig_libdir); \$(INSTALL) -m 0644 $SAPI_STATIC \$…
/php-src/ext/date/lib/
H A Dunixtime2tm.c29 void timelib_unixtime2date(timelib_sll ts, timelib_sll *y, timelib_sll *m, timelib_sll *d) in timelib_unixtime2date() argument
50 *m = month_portion + (month_portion < 10 ? 3 : -9); in timelib_unixtime2date()
51 *y += (*m <= 2); in timelib_unixtime2date()
53 TIMELIB_DEBUG(printf("A: ts=%lld, year=%lld, month=%lld, day=%lld,", ts, *y, *m, *d);); in timelib_unixtime2date()
62 timelib_unixtime2date(ts, &tm->y, &tm->m, &tm->d); in timelib_unixtime2gmt()
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_x86.lua641 local m
646 else m = 2 end
648 m = 2
661 if (imark == "I" and (m == 1 or m == 2)) or
677 local m = {}
680 m[#m+1] = sub(a.mode, 1, 1)..(a.opsize or "?")
876 local m = "i"
877 if imm == 1 then m = m.."1" end
879 if imm >= -128 and imm <= 127 then m = m.."S" end
881 t.mode = m
[all …]

Completed in 85 milliseconds

1...<<11121314151617181920>>...24