Home
last modified time | relevance | path

Searched refs:tmp2 (Results 1 – 14 of 14) sorted by relevance

/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_metadata.phpt61 printf("[009] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2);
65 if (($tmp1 = mysqli_field_count($link)) !== ($tmp2 = $res->field_count()))
66 printf("[010] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2);
68 if (($tmp1 = $res_meta->field_count()) !== $tmp2)
69 printf("[011] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2);
72 if (($tmp1 = mysqli_field_tell($res)) !== ($tmp2 = $res_meta->current_field))
73 printf("[012] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2);
162 $tmp2 = mysqli_fetch_field($res_meta);
163 $tmp2->max_length = $tmp1->max_length;
164 if ($tmp1 != $tmp2) {
[all …]
/PHP-7.4/ext/standard/
H A Dcrypt_blowfish.c467 tmp2 = L >> 8; \
468 tmp2 &= 0xFF; \
473 tmp2 = data.ctx.S[2][tmp2]; \
476 tmp3 ^= tmp2; \
487 tmp2 = L >> 6; \
488 tmp2 &= 0x3FC; \
494 tmp2 = BF_INDEX(data.ctx.S[2], tmp2); \
497 tmp3 ^= tmp2; \
749 tmp2 = data.binary.salt[1]; in BF_crypt()
754 data.ctx.P[i + 1] ^= tmp2; in BF_crypt()
[all …]
H A Dinfo.c217 zend_string *tmp2; in php_print_gpcse_array() local
218 zend_string *str = zval_get_tmp_string(tmp, &tmp2); in php_print_gpcse_array()
230 zend_tmp_string_release(tmp2); in php_print_gpcse_array()
764 char **env, *tmp1, *tmp2; in php_print_info() local
961 if (!(tmp2=strchr(tmp1,'='))) { /* malformed entry? */ in php_print_info()
965 *tmp2 = 0; in php_print_info()
966 tmp2++; in php_print_info()
967 php_info_print_table_row(2, tmp1, tmp2); in php_print_info()
/PHP-7.4/ext/com_dotnet/
H A Dcom_wrapper.c448 zval *tmp, tmp2; in generate_dispids() local
482 ZVAL_STR_COPY(&tmp2, name); in generate_dispids()
484 zend_hash_index_update(disp->dispid_to_name, pid, &tmp2); in generate_dispids()
486 ZVAL_LONG(&tmp2, pid); in generate_dispids()
487 zend_hash_update(disp->name_to_dispid, name, &tmp2); in generate_dispids()
517 ZVAL_STR_COPY(&tmp2, name); in generate_dispids()
519 zend_hash_index_update(disp->dispid_to_name, pid, &tmp2); in generate_dispids()
521 ZVAL_LONG(&tmp2, pid); in generate_dispids()
522 zend_hash_update(disp->name_to_dispid, name, &tmp2); in generate_dispids()
/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_64.c45 sljit_uw tmp2; in load_immediate() local
81 tmp2 = imm & ((1ul << (63 - shift)) - 1); in load_immediate()
83 if (tmp2 <= 0xffff) { in load_immediate()
86 return push_inst(compiler, ORI | S(reg) | A(reg) | tmp2); in load_immediate()
89 if (tmp2 <= 0xffffffff) { in load_immediate()
92 FAIL_IF(push_inst(compiler, ORIS | S(reg) | A(reg) | (tmp2 >> 16))); in load_immediate()
93 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(tmp2)) : SLJIT_SUCCESS; in load_immediate()
96 ASM_SLJIT_CLZ(tmp2, shift2); in load_immediate()
97 tmp2 <<= shift2; in load_immediate()
99 if ((tmp2 & ~0xffff000000000000ul) == 0) { in load_immediate()
[all …]
/PHP-7.4/ext/standard/tests/file/
H A Dmove_uploaded_file_basic.phpt37 $destination2 = __FILE__ . ".tmp2";
H A Dfeof_basic.phpt37 $tmpFile2 = __FILE__.".tmp2";
/PHP-7.4/ext/soap/
H A Dphp_sdl.c1498 if (tmp2->use == SOAP_ENCODED) { in sdl_deserialize_soap_body()
1503 tmp2->name = sdl_deserialize_string(in); in sdl_deserialize_soap_body()
1504 tmp2->ns = sdl_deserialize_string(in); in sdl_deserialize_soap_body()
1506 tmp2->encode = encoders[n]; in sdl_deserialize_soap_body()
1508 tmp2->element = types[n]; in sdl_deserialize_soap_body()
2089 sdlSoapBindingFunctionHeaderPtr tmp2; in sdl_serialize_soap_body() local
2094 WSDL_CACHE_PUT_1(tmp2->use, out); in sdl_serialize_soap_body()
2095 if (tmp2->use == SOAP_ENCODED) { in sdl_serialize_soap_body()
2096 WSDL_CACHE_PUT_1(tmp2->encodingStyle, out); in sdl_serialize_soap_body()
2098 sdl_serialize_string(tmp2->name, out); in sdl_serialize_soap_body()
[all …]
H A Dsoap.c2301 zval *tmp, tmp2; local
2364 ZVAL_LONG(&tmp2, zval_get_long(tmp));
2365 tmp = &tmp2;
2440 ZVAL_LONG(&tmp2, zval_get_long(tmp));
2441 tmp = &tmp2;
/PHP-7.4/main/
H A Dphp_ini.c836 zval *tmp2; local
865 if ((tmp2 = zend_hash_str_find(&configuration_hash, path, strlen(path))) != NULL) {
866 php_ini_activate_config(Z_ARRVAL_P(tmp2), PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE);
/PHP-7.4/ext/fileinfo/
H A Dfileinfo.c524 const char *tmp2; in _php_finfo_get_type() local
539 wrap = php_stream_locate_url_wrapper(buffer, &tmp2, 0); in _php_finfo_get_type()
/PHP-7.4/ext/opcache/Optimizer/
H A Dsccp.c1604 zval tmp1, tmp2; in sccp_visit_instr() local
1607 && ct_eval_incdec(&tmp2, opline->opcode, &tmp1) == SUCCESS) { in sccp_visit_instr()
1610 ct_eval_assign_obj(&zv, &tmp2, op2); in sccp_visit_instr()
1613 SET_RESULT(result, &tmp2); in sccp_visit_instr()
/PHP-7.4/Zend/
H A Dzend_virtual_cwd.c817 char * tmp2 = substitutename + substitutename_off; in tsrm_realpath_r() local
819 *(path + bufindex) = *(tmp2 + bufindex); in tsrm_realpath_r()
/PHP-7.4/ext/ldap/
H A Dldap.c1832 zval tmp1, tmp2; in PHP_FUNCTION() local
1880 array_init(&tmp2); in PHP_FUNCTION()
1881 add_assoc_long(&tmp2, "count", num_values); in PHP_FUNCTION()
1883 add_index_stringl(&tmp2, i, ldap_value[i]->bv_val, ldap_value[i]->bv_len); in PHP_FUNCTION()
1888 zend_hash_str_update(Z_ARRVAL(tmp1), php_strtolower(attribute, attr_len), attr_len, &tmp2); in PHP_FUNCTION()

Completed in 464 milliseconds