Home
last modified time | relevance | path

Searched refs:second (Results 176 – 200 of 396) sorted by path

12345678910>>...16

/php-src/ext/mbstring/tests/
H A Dcp5022x_encoding.phpt19 * two different ranges of 94 which the second byte can fall in, and
22 $second = $bytes & 0xFF;
24 if ($second > 0x9E) {
25 $kuten = ((($hi_bits << 1) + 0x22) << 8) + ($second - 0x9F + 0x21);
26 } else if ($second > 0x7F) {
27 $kuten = ((($hi_bits << 1) + 0x21) << 8) + ($second - 0x80 + 63 + 0x21);
29 $kuten = ((($hi_bits << 1) + 0x21) << 8) + ($second - 0x40 + 0x21);
H A Dcp932_encoding.phpt87 * We _love_ 0x81 and use it when possible. 0x87 is a second favorite */
H A Diso2022jp_kddi_encoding.phpt18 $second = $bytes & 0xFF;
20 if ($second > 0x9E) {
21 $kuten = ((($hi_bits << 1) + 0x22) << 8) + ($second - 0x9F + 0x21);
22 } else if ($second > 0x7F) {
23 $kuten = ((($hi_bits << 1) + 0x21) << 8) + ($second - 0x80 + 63 + 0x21);
25 $kuten = ((($hi_bits << 1) + 0x21) << 8) + ($second - 0x40 + 0x21);
189 * to the output. Then the second byte will do something else. It is easier to write the
H A Diso2022jp_ms_encoding.phpt18 $second = $bytes & 0xFF;
20 if ($second > 0x9E) {
21 $kuten = ((($hi_bits << 1) + 0x22) << 8) + ($second - 0x9F + 0x21);
22 } else if ($second > 0x7F) {
23 $kuten = ((($hi_bits << 1) + 0x21) << 8) + ($second - 0x80 + 63 + 0x21);
25 $kuten = ((($hi_bits << 1) + 0x21) << 8) + ($second - 0x40 + 0x21);
165 * to the output. Then the second byte will do something else. It is easier to write the
H A Dmb_detect_encoding.phpt119 // We do not have any strong hints showing that the second one is actually UTF-8...
H A Dsjis2004_encoding.phpt62 // but the second one doesn't match
H A Dutf7imap_encoding.phpt110 /* 1. The second half of a surrogate pair could come first, */
H A Dutf_encodings.phpt847 // First half of surrogate pair not followed by second part
867 // First half of surrogate pair not followed by second part
1066 // First half of surrogate pair not followed by second half
/php-src/ext/mbstring/tests/data/
H A DBIG5.txt625 0xA3BD 0x02CA # MODIFIER LETTER ACUTE ACCENT (Mandarin Chinese second tone)
H A DMacJapanese-SJIS.txt122 # 0x81-0x9F or 0xE0-0xFC, and second/trail/low byte in the
/php-src/ext/mysqli/tests/bind_insert/
H A Dsend_long_data.phpt27 mysqli_stmt_send_long_data($stmt, 1, " And this is the second sentence.");
56 …string(99) "This is the first sentence. And this is the second sentence. And finally this is the l…
/php-src/ext/mysqli/tests/
H A Dbug79375.phpt93 testStmtStoreResult($mysqli2, 'second connection');
104 testStmtGetResult($mysqli2, 'second connection');
115 testNormalQuery($mysqli2, 'second connection');
126 testStmtUseResult($mysqli2, 'second connection');
137 testResultFetchRow($mysqli2, 'second connection');
150 Running query on second connection
155 Running query on second connection
160 Running query on second connection
165 Running query on second connection
170 Running query on second connection
H A Dmysqli_auth_pam.phpt80 printf("skip Cannot create second DB user [%d] %s", mysqli_errno($link), mysqli_error($link));
H A Dmysqli_change_user_locks_temporary.phpt16 printf("[001] Cannot create second connection handle, [%d] %s\n",
H A Dmysqli_expire_password.phpt34 printf("skip Cannot create second DB user [%d] %s", mysqli_errno($link), mysqli_error($link));
41 printf("skip Cannot modify second DB user [%d] %s", mysqli_errno($link), mysqli_error($link));
H A Dmysqli_insert_id.phpt66 between the second last insert and the lock, therefore don't stop just bail
H A Dmysqli_no_reconnect.phpt15 printf("[001] Cannot create second database connection, [%d] %s\n",
94 // Give the server a second to really kill the other thread...
H A Dmysqli_pconn_limits.phpt26 printf("[002] Cannot open second regular connection, [%d] %s\n",
H A Dmysqli_pconn_max_links.phpt15 … printf("skip Cannot create second DB user [%d] %s", mysqli_errno($link), mysqli_error($link));
72 printf("[001] Cannot connect using the second DB user created during SKIPIF, [%d] %s\n",
89 printf("[003] Cannot run query on persistent connection of second DB user, [%d] %s\n",
98 // change the password for the second DB user and kill the persistent connection
104 // change the password for the second DB user and kill the persistent connection
114 // give the server a second to really kill the thread
128 echo "Before second pconnect:";
136 echo "After second pconnect:";
162 printf("[013] Cannot run query on persistent connection of second DB user, [%d] %s\n",
234 Before second pconnect:array(3) {
[all …]
H A Dmysqli_select_db.phpt33 // Yippie, a second database to play with - that's great because mysqli_select_db
/php-src/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c41 unsigned int year, month, day, hour, minute, second; member
225 t.second = (unsigned int) to[7]; in ps_fetch_time()
242 (t.neg ? "-" : ""), t.hour, t.minute, t.second, field->decimals, in ps_fetch_time()
246 (t.neg ? "-" : ""), t.hour, t.minute, t.second)); in ps_fetch_time()
267 t.second_part = t.hour = t.minute = t.second = 0; in ps_fetch_date()
306 t.second = (unsigned int) to[6]; in ps_fetch_datetime()
308 t.hour = t.minute = t.second= 0; in ps_fetch_datetime()
320 t.year, t.month, t.day, t.hour, t.minute, t.second, field->decimals, in ps_fetch_datetime()
324 t.year, t.month, t.day, t.hour, t.minute, t.second)); in ps_fetch_datetime()
/php-src/ext/opcache/jit/
H A DREADME.md25 request multiple times (the first request compiles the trace and the second executes it)
/php-src/ext/opcache/jit/ir/
H A Dir_aarch64.dasc4746 /* delay REG->REG moves to second pass */
H A Dir_x86.dasc8610 /* delay REG->REG moves to second pass */
/php-src/ext/opcache/tests/
H A Dbug65915.phpt11 // We don't invalidate the file after the second write.

Completed in 89 milliseconds

12345678910>>...16