Home
last modified time | relevance | path

Searched refs:s2 (Results 76 – 100 of 110) sorted by relevance

12345

/PHP-8.2/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_complex_rpcenc_005w.phpt17 $s2 = new BaseStruct(12.345,12);
19 $client->echoMultipleFaults1(2,$s1,$s2);
H A Dr4_groupH_complex_rpcenc_004w.phpt17 $s2 = new BaseStruct(12.345,12);
19 $client->echoMultipleFaults1(1,$s1,$s2);
H A Dr4_groupH_complex_rpcenc_006w.phpt17 $s2 = new BaseStruct(12.345,12);
19 $client->echoMultipleFaults1(3,$s1,$s2);
H A Dr4_groupH_complex_rpcenc_007w.phpt27 $s2 = new ExtendedStruct(12.345,2,"arg",-3,5);
30 $client->echoMultipleFaults2(1,$s1,$s2,$s3);
H A Dr4_groupH_complex_rpcenc_010w.phpt27 $s2 = new ExtendedStruct(12.345,2,"arg",-3,5);
30 $client->echoMultipleFaults2(4,$s1,$s2,$s3);
H A Dr4_groupH_complex_rpcenc_008w.phpt27 $s2 = new ExtendedStruct(12.345,2,"arg",-3,5);
30 $client->echoMultipleFaults2(2,$s1,$s2,$s3);
H A Dr4_groupH_complex_rpcenc_009w.phpt27 $s2 = new ExtendedStruct(12.345,2,"arg",-3,5);
30 $client->echoMultipleFaults2(3,$s1,$s2,$s3);
/PHP-8.2/Zend/asm/
H A Djump_mips32_o32_elf_gas.S53 sw $s2, 56($sp) # save S2
90 lw $s2, 56($sp) # restore S2
H A Djump_mips64_n64_elf_gas.S60 sd $s2, 80($sp) # save S2
100 ld $s2, 80($sp) # restore S2
/PHP-8.2/ext/standard/html_tables/
H A Dhtml_table_gen.php522 $s2 = (hexdec($el[1]) & 0xFC0) >> 6; variable
525 $mstable[$s1][$s2][$s3] = "";
527 $mstable[$s1][$s2][$s3] = $el[0];
/PHP-8.2/ext/opcache/
H A Dzend_accelerator_util_funcs.c454 #define ADLER32_DO1(buf) {s1 += *(buf); s2 += s1;}
463 unsigned int s2 = (checksum >> 16) & 0xffff; in zend_adler32() local
474 s2 %= ADLER32_BASE; in zend_adler32()
494 s2 %= ADLER32_BASE; in zend_adler32()
497 return (s2 << 16) | s1; in zend_adler32()
/PHP-8.2/ext/standard/tests/strings/
H A Dstrval_variation2.phpt9 $s2 = "\x20\x21\x22\x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f";
28 echo bin2hex(strval($s2));
/PHP-8.2/main/
H A Drfc1867.c556 char *s2 = strrchr(path, '/'); in php_ap_basename() local
558 if (s && s2) { in php_ap_basename()
559 if (s > s2) { in php_ap_basename()
562 s = ++s2; in php_ap_basename()
567 } else if (s2) { in php_ap_basename()
568 return ++s2; in php_ap_basename()
/PHP-8.2/Zend/
H A Dzend_strtod.c2623 s2 = s;
2630 s = s2;
3897 s2 = j; in zend_dtoa()
3901 s2 = 0; in zend_dtoa()
3906 s2 += k; in zend_dtoa()
4148 s2 += i; in zend_dtoa()
4152 i = m2 < s2 ? m2 : s2; in zend_dtoa()
4155 s2 -= i; in zend_dtoa()
4190 s2 += Log2P; in zend_dtoa()
4205 s2 += i; in zend_dtoa()
[all …]
/PHP-8.2/ext/sodium/tests/
H A Dcrypto_core_ristretto255.phpt83 $s2 = sodium_crypto_scalarmult_ristretto255($r, $s);
/PHP-8.2/ext/opcache/jit/dynasm/
H A Ddasm_arm64.lua445 local s, s2 = match(expr, "^(%S+)%s*(.*)$")
448 return parse_imm(s2, 6, 10, 0, false) + shl(s, 22)
462 local s, s2 = match(expr, "^(%S+)%s*(.*)$")
469 return (s2 == "" and 0 or parse_imm(s2, 3, 10, 0, false)) + shl(s, 13)
H A Ddasm_arm.lua676 local s, s2 = match(shift, "^(%S+)%s*(.*)$")
679 if sub(s2, 1, 1) == "#" then
680 return parse_imm(s2, 5, 7, 0, false) + shl(s, 5)
683 return shl(parse_gpr(s2), 8) + shl(s, 5) + 16
H A Ddynasm.lua681 for _,s2 in ipairs(s) do
682 out:write(format(" %-12s %s\n", name, s2))
/PHP-8.2/ext/standard/
H A Dstring.c640 zend_string *s1, *s2; in PHP_FUNCTION() local
644 Z_PARAM_STR(s2) in PHP_FUNCTION()
1677 spanp = s2;
3850 uint8x16_t s2 = vceqq_u8(x, vdupq_n_u8('\"')); local
3853 uint8x16_t s23 = vorrq_u8(s2, s3);
5362 zend_string *s1, *s2; local
5366 Z_PARAM_STR(s2)
5370 ZSTR_VAL(s2), ZSTR_LEN(s2),
5931 zend_string *s1, *s2; local
5939 Z_PARAM_STR(s2)
[all …]
H A Dstreamsfuncs.c54 php_stream *s1, *s2; in PHP_FUNCTION() local
77 s2 = php_stream_sock_open_from_socket(pair[1], 0); in PHP_FUNCTION()
78 if (s2 == NULL) { in PHP_FUNCTION()
90 php_stream_auto_cleanup(s2); in PHP_FUNCTION()
93 add_next_index_resource(return_value, s2->res); in PHP_FUNCTION()
H A Darray.c174 const char *s1, *s2; in php_array_key_compare_string_case_unstable_i() local
187 s2 = s->key->val; in php_array_key_compare_string_case_unstable_i()
191 l2 = buf2 + sizeof(buf2) - 1 - s2; in php_array_key_compare_string_case_unstable_i()
199 const char *s1, *s2; in php_array_key_compare_string_unstable_i() local
212 s2 = s->key->val; in php_array_key_compare_string_unstable_i()
216 l2 = buf2 + sizeof(buf2) - 1 - s2; in php_array_key_compare_string_unstable_i()
224 const char *s1, *s2; in php_array_key_compare_string_natural_general() local
237 s2 = s->key->val; in php_array_key_compare_string_natural_general()
273 const char *s1, *s2; in php_array_key_compare_string_locale_unstable_i() local
283 s2 = s->key->val; in php_array_key_compare_string_locale_unstable_i()
[all …]
/PHP-8.2/ext/pcre/pcre2lib/sljit/
H A DsljitNativeSPARC_common.c119 #define S2(s2) ((sljit_ins)reg_map[s2]) argument
120 #define FS2(s2) ((sljit_ins)freg_map[s2]) argument
121 #define FS2N(s2) ((sljit_ins)freg_map[s2] | 0x1) argument
122 #define S2A(s2) ((sljit_ins)(s2)) argument
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_main.c656 char *s1, *s2; in php_cgi_ini_activate_user_config() local
674 s2 = path; in php_cgi_ini_activate_user_config()
678 s2 = (char *) doc_root; in php_cgi_ini_activate_user_config()
686 if (strncmp(s1, s2, s_len) == 0) { in php_cgi_ini_activate_user_config()
687 ptr = s2 + doc_root_len; in php_cgi_ini_activate_user_config()
/PHP-8.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_iso2022_jp_ms.c248 int c1, c2, s1 = 0, s2 = 0; in mbfl_filt_conv_wchar_2022jpms() local
284 if ((s1 <= 0) || (s1 >= 0xa1a1 && s2 == 0)) { /* not found or X 0212 */ in mbfl_filt_conv_wchar_2022jpms()
/PHP-8.2/sapi/cgi/
H A Dcgi_main.c798 char *s1, *s2; local
817 s2 = path;
821 s2 = (char *) doc_root;
830 if (strnicmp(s1, s2, s_len) == 0) {
832 if (strncmp(s1, s2, s_len) == 0) {
834 char *ptr = s2 + doc_root_len;

Completed in 90 milliseconds

12345