Home
last modified time | relevance | path

Searched refs:s2 (Results 1 – 25 of 84) sorted by relevance

1234

/PHP-5.3/ext/mbstring/libmbfl/filters/
H A Dmbfilter_sjis.c109 s2 = c2; \
112 s2--; \
114 s2 += 0x20; \
116 s2 += 0x7e; \
130 s2 = c2; \
131 if (s2 < 0x9f) { \
133 s2++; \
135 s2 -= 0x20; \
138 s2 -= 0x7e; \
149 int c1, s1, s2, w; in mbfl_filt_conv_sjis_wchar() local
[all …]
H A Dmbfilter_cp932.c109 s2 = c2; \
112 s2--; \
114 s2 += 0x20; \
116 s2 += 0x7e; \
130 s2 = c2; \
133 s2++; \
135 s2 -= 0x20; \
138 s2 -= 0x7e; \
237 s2 = 0; in mbfl_filt_conv_wchar_cp932()
251 s2 = 1; in mbfl_filt_conv_wchar_cp932()
[all …]
H A Dmbfilter_sjis_open.c109 s2 = c2; \
112 s2--; \
114 s2 += 0x20; \
116 s2 += 0x7e; \
130 s2 = c2; \
133 s2++; \
135 s2 -= 0x20; \
138 s2 -= 0x7e; \
237 s2 = 0; in mbfl_filt_conv_wchar_sjis_open()
251 s2 = 1; in mbfl_filt_conv_wchar_sjis_open()
[all …]
/PHP-5.3/ext/mbstring/tests/
H A Dsimpletest.phpt15 $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 Dmb_convert_variables.phpt46 $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-5.3/ext/zlib/
H A Dzlib.c509 if (!s2) { in PHP_FUNCTION()
520 s2 = erealloc(s2, l2 + 1); in PHP_FUNCTION()
524 efree(s2); in PHP_FUNCTION()
562 s1 = s2; in PHP_FUNCTION()
566 s2 = erealloc(s2, length + 1); /* space for \0 */ in PHP_FUNCTION()
570 efree(s2); in PHP_FUNCTION()
606 if (!s2) { in PHP_FUNCTION()
631 efree(s2); in PHP_FUNCTION()
688 if (!s2) { in PHP_FUNCTION()
695 s1 = s2; in PHP_FUNCTION()
[all …]
/PHP-5.3/ext/oci8/tests/
H A Ddrcp_functions.inc41 $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 Dbug38173.phpt19 $s2 = oci_parse($c, $drop_2);
21 @oci_execute($s2);
24 $s2 = oci_parse($c, $create_2);
26 oci_execute($s2);
59 $s2 = oci_parse($c, $drop_2);
61 @oci_execute($s2);
H A Dpecl_bug8816.phpt19 $s2 = oci_parse($c, $drop_2);
21 @oci_execute($s2);
24 $s2 = oci_parse($c, $create_2);
26 oci_execute($s2);
63 $s2 = oci_parse($c, $drop_2);
65 @oci_execute($s2);
H A Dconn_attr.inc58 $s2 = oci_parse($conn,$sel_stmt);
59 oci_execute($s2,OCI_DEFAULT);
60 while (oci_fetch($s2)) {
61 echo "The value of ".$attr ." is ".oci_result($s2,1)."\n";
122 $s2 = oci_parse($conn,$sel_stmt);
123 oci_execute($s2,OCI_DEFAULT);
124 while (oci_fetch($s2)) {
133 $s2 = oci_parse($conn,$sel_stmt);
134 oci_execute($s2,OCI_DEFAULT);
135 while (oci_fetch($s2)) {
[all …]
H A Ddefine0.phpt38 $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)) {
H A Dbug40415.phpt21 $s2 = oci_parse($c, $drop_2);
23 @oci_execute($s2);
26 $s2 = oci_parse($c, $create_2);
28 oci_execute($s2);
91 $s2 = oci_parse($c, $drop_2);
93 @oci_execute($s2);
/PHP-5.3/ext/standard/
H A Dlcg.c65 MODMULT(52774, 40692, 3791, 2147483399L, LCG(s2)); in php_combined_lcg()
67 z = LCG(s1) - LCG(s2); in php_combined_lcg()
86 LCG(s2) = (long) tsrm_thread_id(); in lcg_seed()
88 LCG(s2) = (long) getpid(); in lcg_seed()
93 LCG(s2) ^= (tv.tv_usec<<11); in lcg_seed()
/PHP-5.3/Zend/
H A Dzend_config.w32.h54 #define strcasecmp(s1, s2) stricmp(s1, s2) argument
55 #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n) argument
/PHP-5.3/Zend/tests/
H A Dshift_001.phpt8 $s2 = "45345some";
16 $s2 <<= 3;
17 var_dump($s2);
H A Dshift_002.phpt8 $s2 = "45345some";
16 $s2 >>= 3;
17 var_dump($s2);
H A Dadd_006.phpt10 $s2 = "876222numeric";
17 $c = $i + $s2;
29 $c = $s2 + $i;
H A Dnot_001.phpt9 $s2 = "some";
14 $s1 = ~$s2;
/PHP-5.3/ext/phar/
H A Dmakestub.php29 $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'));
86 $stub .= "\tstatic const char newstub2[] = \"" . $s2 . "\";
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dvacuum.c44 dynStr s1, s2; /* Two dynamic strings */ member
115 p->s2.nUsed = 0; in vacuumCallback2()
116 appendText(&p->s2, "INSERT INTO ", -1); in vacuumCallback2()
117 appendQuoted(&p->s2, p->zTable); in vacuumCallback2()
118 appendText(&p->s2, " VALUES", -1); in vacuumCallback2()
120 appendText(&p->s2, zSep, 1); in vacuumCallback2()
123 appendText(&p->s2, "NULL", 4); in vacuumCallback2()
125 appendQuoted(&p->s2, argv[i]); in vacuumCallback2()
128 appendText(&p->s2,")", 1); in vacuumCallback2()
129 p->rc = execsql(p->pzErrMsg, p->dbNew, p->s2.z); in vacuumCallback2()
[all …]
/PHP-5.3/ext/spl/tests/
H A Dbug45826.phpt15 $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-5.3/ext/zip/lib/
H A Dzip_fopen_index_encrypted.c53 struct zip_source *src, *s2; in zip_fopen_index_encrypted() local
116 if ((s2=enc_impl(za, src, ZIP_EM_TRAD_PKWARE, 0, in zip_fopen_index_encrypted()
122 src = s2; in zip_fopen_index_encrypted()
125 if ((s2=comp_impl(za, src, za->cdir->entry[fileno].comp_method, in zip_fopen_index_encrypted()
131 src = s2; in zip_fopen_index_encrypted()
135 if ((s2=zip_source_crc(za, src, 1)) == NULL) { in zip_fopen_index_encrypted()
140 src = s2; in zip_fopen_index_encrypted()
/PHP-5.3/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc_win32.h13 # define strcasecmp(s1, s2) stricmp(s1, s2) argument
/PHP-5.3/ext/soap/tests/interop/Round4/GroupH/
H A Dround4_groupH_complex_rpcenc.inc16 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…
/PHP-5.3/ext/standard/tests/strings/
H A Dhtmlspecialchars_basic.phpt13 $s2 = "&&abc<>\"&\n";
19 echo "Test 2: " . htmlspecialchars ($s2);
24 echo "Test 7: " . htmlspecialchars ($s2,ENT_NOQUOTES);
29 echo "Test 12: " . htmlspecialchars ($s2,ENT_COMPAT);
34 echo "Test 17: " . htmlspecialchars ($s2,ENT_QUOTES);
41 echo "Test 22: " . htmlspecialchars ($s2,ENT_COMPAT, "ISO-8859-1");
47 $s2 = "&quot;&amp;123&lt;456&quot;\n";
50 echo "Test 26: " . htmlspecialchars ($s2,ENT_NOQUOTES, "ISO-8859-1", false);
55 echo "Test 29: " . htmlspecialchars ($s2, ENT_NOQUOTES, "ISO-8859-1", true);

Completed in 66 milliseconds

1234