/PHP-8.2/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_sjis.c | 110 s2 = c2; \ 113 s2--; \ 115 s2 += 0x20; \ 117 s2 += 0x7e; \ 131 s2 = c2; \ 132 if (s2 < 0x9f) { \ 134 s2++; \ 136 s2 -= 0x20; \ 139 s2 -= 0x7e; \ 145 int s1, s2, w; in mbfl_filt_conv_sjis_wchar() local [all …]
|
H A D | mbfilter_cp932.c | 173 s2 = c2; \ 176 s2--; \ 178 s2 += 0x20; \ 180 s2 += 0x7e; \ 194 s2 = c2; \ 197 s2++; \ 199 s2 -= 0x20; \ 297 s2 = 0; in mbfl_filt_conv_wchar_cp932() 313 s2 = 1; in mbfl_filt_conv_wchar_cp932() 485 s2 = 1; in mb_wchar_to_cp932() [all …]
|
H A D | mbfilter_sjis_mac.c | 113 s2--; \ 134 s2++; \ 244 s2 = 0; in mbfl_filt_conv_sjis_mac_wchar() 258 w = s2; in mbfl_filt_conv_sjis_mac_wchar() 320 s2 = c1; in mbfl_filt_conv_wchar_sjis_mac() 330 s2 = c1; in mbfl_filt_conv_wchar_sjis_mac() 340 s2 = c1; in mbfl_filt_conv_wchar_sjis_mac() 351 s2 = c1; in mbfl_filt_conv_wchar_sjis_mac() 355 s2 = c1; in mbfl_filt_conv_wchar_sjis_mac() 382 s1 = s2 = 0; in mbfl_filt_conv_wchar_sjis_mac() [all …]
|
H A D | mbfilter_sjis_2004.c | 174 s2 = c2; \ 177 s2--; \ 179 s2 += 0x20; \ 181 s2 += 0x7e; \ 195 s2 = c2; \ 198 s2++; \ 277 s2 = c - 0x80; in mbfl_filt_conv_jis2004_wchar() 292 s2 = c; in mbfl_filt_conv_jis2004_wchar() 370 s2 = c2 - 0x21; in mbfl_filt_conv_jis2004_wchar() 373 (s1 >= 77 && s1 < 94)) && s2 >= 0 && s2 < 94) { in mbfl_filt_conv_jis2004_wchar() [all …]
|
/PHP-8.2/ext/mbstring/tests/ |
H A D | simpletest.phpt | 15 $s2 = "����ʸ����Ϣ�뤵��Ƥ���Ϥ���"; 18 echo "echo: ".$s1.$s2."\n"; 19 print("print: ".$s1.$s2."\n"); 20 printf("printf: %s%s\n",$s1, $s2); 21 echo sprintf("sprintf: %s%s\n",$s1, $s2); 24 $s3 = $s1.$s2."\n";
|
H A D | mb_convert_variables.phpt | 46 $s2 = $euc_jp; 50 print("$s1$s2$s3\n"); // Converted to EUC-JP 57 $a = array($s3, $s2, $s1); 63 $a = array($s1, $s2, $s3); 76 public $s2; 84 $this->s2 = $euc_jp; 92 public $s2; 100 $this->s2 = $euc_jp; 110 print("{$oo->s1}{$oo->s2}{$oo->s3}\n"); // Converted to EUC-JP 123 $s2 = $euc_jp; [all …]
|
/PHP-8.2/ext/oci8/tests/ |
H A D | drcp_functions.inc | 41 $s2 = oci_parse($conn,$sel_stmt); 42 oci_execute($s2,OCI_DEFAULT); 43 while(oci_fetch($s2)) { 44 echo "The value of DEPT for id 105 is ".oci_result($s2,1)."\n"; 51 $s2 = oci_parse($conn, $sel_stmt); 52 oci_define_by_name($s2,'f1',$ret_num); 53 oci_execute($s2); 54 while(oci_fetch($s2)) { 55 echo " The value of the package variable is ".oci_result($s2,1)."\n"; 89 $s2 = oci_parse($c, $package_body); [all …]
|
H A D | imp_res_insert.phpt | 59 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1"); 60 oci_execute($s2, OCI_NO_AUTO_COMMIT); 61 oci_fetch_all($s2, $res); 70 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1"); 71 oci_execute($s2, OCI_NO_AUTO_COMMIT); 72 oci_fetch_all($s2, $res); 81 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1"); 82 oci_execute($s2, OCI_NO_AUTO_COMMIT); 83 oci_fetch_all($s2, $res); 92 oci_execute($s2, OCI_NO_AUTO_COMMIT); [all …]
|
H A D | pecl_bug8816.phpt | 21 $s2 = oci_parse($c, $drop_2); 23 @oci_execute($s2); 26 $s2 = oci_parse($c, $create_2); 28 oci_execute($s2); 65 $s2 = oci_parse($c, $drop_2); 67 @oci_execute($s2);
|
H A D | bug38173.phpt | 21 $s2 = oci_parse($c, $drop_2); 23 @oci_execute($s2); 26 $s2 = oci_parse($c, $create_2); 28 oci_execute($s2); 61 $s2 = oci_parse($c, $drop_2); 63 @oci_execute($s2);
|
H A D | imp_res_get_4.phpt | 70 $s2 = oci_get_implicit_resultset($s); 73 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 77 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 81 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 89 $s2 = oci_get_implicit_resultset($s); 92 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 96 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 100 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 104 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 108 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS);
|
H A D | conn_attr.inc | 56 $s2 = oci_parse($conn,$sel_stmt); 57 oci_execute($s2,OCI_DEFAULT); 58 while (oci_fetch($s2)) { 59 echo "The value of ".$attr ." is ".oci_result($s2,1)."\n"; 120 $s2 = oci_parse($conn,$sel_stmt); 121 oci_execute($s2,OCI_DEFAULT); 122 while (oci_fetch($s2)) { 131 $s2 = oci_parse($conn,$sel_stmt); 132 oci_execute($s2,OCI_DEFAULT); 133 while (oci_fetch($s2)) { [all …]
|
H A D | define0.phpt | 38 $s2 = oci_parse($c, 'select string from define0_tab'); 39 oci_define_by_name($s2, 'STRING', $string); 40 oci_execute($s2); 41 while (oci_fetch($s2)) {
|
/PHP-8.2/Zend/ |
H A D | zend_config.w32.h | 48 #define strcasecmp(s1, s2) _stricmp(s1, s2) argument 49 #define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n) argument
|
/PHP-8.2/ext/reflection/tests/ |
H A D | bug79062.phpt | 13 private $s2 = <<<'STRING' 24 $s2 = $ref->getProperty('s2'); 25 var_dump($s2->getDocComment()); 28 var_dump($s2->getDocComment());
|
/PHP-8.2/ext/phar/ |
H A D | makestub.php | 29 $s2 = substr($s, strlen($s1) + strlen('index.php')); variable 30 $s2 = substr($s2, 0, strpos($s2, 'XXXX')); variable 31 $s3 = substr($s, strlen($s2) + 4 + strlen($s1) + strlen('index.php')); 84 $stub .= "\tstatic const char newstub2[] = \"" . $s2 . "\";
|
/PHP-8.2/ext/standard/tests/file/ |
H A D | fclose_variation1.phpt | 7 $s2 = $s; 8 separate_zval($s2); 11 echo fread($s2, strlen("<?php"));
|
/PHP-8.2/Zend/tests/ |
H A D | self_mod.phpt | 8 $s2 = "45345some"; 20 $s2 %= 33; 21 var_dump($s2);
|
H A D | shift_001.phpt | 8 $s2 = "45345some"; 20 $s2 <<= 3; 21 var_dump($s2);
|
H A D | shift_002.phpt | 8 $s2 = "45345some"; 20 $s2 >>= 3; 21 var_dump($s2);
|
H A D | self_and.phpt | 8 $s2 = "45345some"; 22 $s2 &= 33; 23 var_dump($s2);
|
H A D | self_or.phpt | 8 $s2 = "45345some"; 22 $s2 |= 33; 23 var_dump($s2);
|
H A D | self_xor.phpt | 8 $s2 = "45345some"; 22 $s2 ^= 33; 23 var_dump($s2);
|
/PHP-8.2/ext/spl/tests/ |
H A D | bug45826.phpt | 15 $s2 = $o->serialize(); 17 var_dump($s2); 25 $o2->unserialize($s2); 32 unset($o,$x,$s1,$s2,$o1,$o2); 53 $s2 = $o->__serialize(); 55 var_dump($s2); 63 $o2->__unserialize($s2);
|
/PHP-8.2/ext/soap/tests/interop/Round4/GroupH/ |
H A D | round4_groupH_complex_rpcenc.inc | 16 function echoMultipleFaults1($which, $s1, $s2) { 18 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, $s2, "ComplexF… 24 function echoMultipleFaults2($which, $s1, $s2, $s3) { 26 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $s2, "ComplexF…
|