Home
last modified time | relevance | path

Searched refs:s2 (Results 51 – 75 of 87) sorted by relevance

1234

/php-src/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-src/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-src/Zend/
H A Dzend_operators.c3163 if (s1 == s2) { in zend_binary_strcmp()
3179 if (s1 == s2) { in zend_binary_strncmp()
3196 if (s1 == s2) { in zend_binary_strcasecmp()
3218 if (s1 == s2) { in zend_binary_strncasecmp()
3239 if (s1 == s2) { in zend_binary_strcasecmp_l()
3261 if (s1 == s2) { in zend_binary_strncasecmp_l()
3279 return zend_binary_strcmp(Z_STRVAL_P(s1), Z_STRLEN_P(s1), Z_STRVAL_P(s2), Z_STRLEN_P(s2)); in zend_binary_zval_strcmp()
3285 …return zend_binary_strncmp(Z_STRVAL_P(s1), Z_STRLEN_P(s1), Z_STRVAL_P(s2), Z_STRLEN_P(s2), Z_LVAL_… in zend_binary_zval_strncmp()
3297 (ret2 = is_numeric_string_ex(s2->val, s2->len, &lval2, &dval2, false, &oflow2, NULL))) {
3345 (ret2 = is_numeric_string_ex(s2->val, s2->len, &lval2, &dval2, false, &oflow2, NULL))) {
[all …]
H A Dzend_builtin_functions.c316 zend_string *s1, *s2; in ZEND_FUNCTION() local
320 Z_PARAM_STR(s2) in ZEND_FUNCTION()
323 RETURN_LONG(zend_binary_strcmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2))); in ZEND_FUNCTION()
330 zend_string *s1, *s2; in ZEND_FUNCTION() local
335 Z_PARAM_STR(s2) in ZEND_FUNCTION()
344 RETURN_LONG(zend_binary_strncmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2), len)); in ZEND_FUNCTION()
351 zend_string *s1, *s2; in ZEND_FUNCTION() local
355 Z_PARAM_STR(s2) in ZEND_FUNCTION()
358 RETURN_LONG(zend_binary_strcasecmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2))); in ZEND_FUNCTION()
365 zend_string *s1, *s2; in ZEND_FUNCTION() local
[all …]
H A Dzend_strtod.c2619 s2 = s;
2626 s = s2;
3893 s2 = j; in zend_dtoa()
3897 s2 = 0; in zend_dtoa()
3902 s2 += k; in zend_dtoa()
4144 s2 += i; in zend_dtoa()
4148 i = m2 < s2 ? m2 : s2; in zend_dtoa()
4151 s2 -= i; in zend_dtoa()
4186 s2 += Log2P; in zend_dtoa()
4201 s2 += i; in zend_dtoa()
[all …]
/php-src/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-src/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-src/main/
H A Drfc1867.c534 char *s2 = strrchr(path, '/'); in php_ap_basename() local
536 if (s && s2) { in php_ap_basename()
537 if (s > s2) { in php_ap_basename()
540 s = ++s2; in php_ap_basename()
545 } else if (s2) { in php_ap_basename()
546 return ++s2; in php_ap_basename()
/php-src/ext/sodium/tests/
H A Dcrypto_core_ristretto255.phpt83 $s2 = sodium_crypto_scalarmult_ristretto255($r, $s);
/php-src/ext/opcache/jit/ir/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
/php-src/ext/random/
H A Dphp_random.h181 …random_status_state_xoshiro256starstar *state, uint64_t s0, uint64_t s1, uint64_t s2, uint64_t s3);
/php-src/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-src/ext/standard/
H A Dstreamsfuncs.c53 php_stream *s1, *s2; in PHP_FUNCTION() local
76 s2 = php_stream_sock_open_from_socket(pair[1], 0); in PHP_FUNCTION()
77 if (s2 == NULL) { in PHP_FUNCTION()
89 php_stream_auto_cleanup(s2); in PHP_FUNCTION()
92 add_next_index_resource(return_value, s2->res); in PHP_FUNCTION()
H A Darray.c172 const char *s1, *s2; in php_array_key_compare_string_case_unstable_i() local
185 s2 = s->key->val; in php_array_key_compare_string_case_unstable_i()
189 l2 = buf2 + sizeof(buf2) - 1 - s2; in php_array_key_compare_string_case_unstable_i()
197 const char *s1, *s2; in php_array_key_compare_string_unstable_i() local
210 s2 = s->key->val; in php_array_key_compare_string_unstable_i()
214 l2 = buf2 + sizeof(buf2) - 1 - s2; in php_array_key_compare_string_unstable_i()
222 const char *s1, *s2; in php_array_key_compare_string_natural_general() local
235 s2 = s->key->val; in php_array_key_compare_string_natural_general()
271 const char *s1, *s2; in php_array_key_compare_string_locale_unstable_i() local
281 s2 = s->key->val; in php_array_key_compare_string_locale_unstable_i()
[all …]
H A Dstring.c471 zend_string *s1, *s2; in PHP_FUNCTION() local
475 Z_PARAM_STR(s2) in PHP_FUNCTION()
479 (const char *) ZSTR_VAL(s2))); in PHP_FUNCTION()
4072 uint8x16_t s2 = vceqq_u8(x, vdupq_n_u8('\"')); local
4075 uint8x16_t s23 = vorrq_u8(s2, s3);
5602 zend_string *s1, *s2; local
5606 Z_PARAM_STR(s2)
5610 ZSTR_VAL(s2), ZSTR_LEN(s2),
6174 zend_string *s1, *s2; local
6182 Z_PARAM_STR(s2)
[all …]
/php-src/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;
/php-src/ext/opcache/jit/ir/
H A Dir_aarch64.h48 _(V2, d2, s2, h2, b2) \

Completed in 147 milliseconds

1234