Home
last modified time | relevance | path

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

/PHP-8.0/ext/standard/
H A Dcrypt_blowfish.c454 tmp2 = L >> 8; \
455 tmp2 &= 0xFF; \
460 tmp2 = data.ctx.S[2][tmp2]; \
463 tmp3 ^= tmp2; \
474 tmp2 = L >> 6; \
475 tmp2 &= 0x3FC; \
481 tmp2 = BF_INDEX(data.ctx.S[2], tmp2); \
484 tmp3 ^= tmp2; \
728 tmp2 = data.binary.salt[1]; in BF_crypt()
733 data.ctx.P[i + 1] ^= tmp2; in BF_crypt()
[all …]
H A Dinfo.c214 zend_string *tmp2; in php_print_gpcse_array() local
215 zend_string *str = zval_get_tmp_string(tmp, &tmp2); in php_print_gpcse_array()
227 zend_tmp_string_release(tmp2); in php_print_gpcse_array()
753 char **env, *tmp1, *tmp2; in php_print_info() local
956 if (!(tmp2=strchr(tmp1,'='))) { /* malformed entry? */ in php_print_info()
960 *tmp2 = 0; in php_print_info()
961 tmp2++; in php_print_info()
962 php_info_print_table_row(2, tmp1, tmp2); in php_print_info()
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_metadata.phpt60 printf("[009] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2);
64 if (($tmp1 = mysqli_field_count($link)) !== ($tmp2 = $res->field_count()))
65 printf("[010] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2);
67 if (($tmp1 = $res_meta->field_count()) !== $tmp2)
68 printf("[011] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2);
71 if (($tmp1 = mysqli_field_tell($res)) !== ($tmp2 = $res_meta->current_field))
72 printf("[012] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2);
161 $tmp2 = mysqli_fetch_field($res_meta);
162 $tmp2->max_length = $tmp1->max_length;
163 if ($tmp1 != $tmp2) {
[all …]
/PHP-8.0/ext/com_dotnet/
H A Dcom_wrapper.c446 zval *tmp, tmp2; in generate_dispids() local
480 ZVAL_STR_COPY(&tmp2, name); in generate_dispids()
482 zend_hash_index_update(disp->dispid_to_name, pid, &tmp2); in generate_dispids()
484 ZVAL_LONG(&tmp2, pid); in generate_dispids()
485 zend_hash_update(disp->name_to_dispid, name, &tmp2); in generate_dispids()
515 ZVAL_STR_COPY(&tmp2, name); in generate_dispids()
517 zend_hash_index_update(disp->dispid_to_name, pid, &tmp2); in generate_dispids()
519 ZVAL_LONG(&tmp2, pid); in generate_dispids()
520 zend_hash_update(disp->name_to_dispid, name, &tmp2); in generate_dispids()
/PHP-8.0/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-8.0/ext/standard/tests/file/
H A Dmove_uploaded_file_basic.phpt37 $destination2 = __FILE__ . ".tmp2";
H A Dfeof_basic.phpt31 $tmpFile2 = __FILE__.".tmp2";
/PHP-8.0/ext/fileinfo/
H A Dfileinfo.c442 const char *tmp2; in _php_finfo_get_type() local
455 wrap = php_stream_locate_url_wrapper(buffer, &tmp2, 0); in _php_finfo_get_type()
/PHP-8.0/ext/soap/
H A Dphp_sdl.c1496 if (tmp2->use == SOAP_ENCODED) { in sdl_deserialize_soap_body()
1501 tmp2->name = sdl_deserialize_string(in); in sdl_deserialize_soap_body()
1502 tmp2->ns = sdl_deserialize_string(in); in sdl_deserialize_soap_body()
1504 tmp2->encode = encoders[n]; in sdl_deserialize_soap_body()
1506 tmp2->element = types[n]; in sdl_deserialize_soap_body()
2087 sdlSoapBindingFunctionHeaderPtr tmp2; in sdl_serialize_soap_body() local
2092 WSDL_CACHE_PUT_1(tmp2->use, out); in sdl_serialize_soap_body()
2093 if (tmp2->use == SOAP_ENCODED) { in sdl_serialize_soap_body()
2094 WSDL_CACHE_PUT_1(tmp2->encodingStyle, out); in sdl_serialize_soap_body()
2096 sdl_serialize_string(tmp2->name, out); in sdl_serialize_soap_body()
[all …]
H A Dsoap.c1986 zval *tmp, tmp2; local
2049 ZVAL_LONG(&tmp2, zval_get_long(tmp));
2050 tmp = &tmp2;
2125 ZVAL_LONG(&tmp2, zval_get_long(tmp));
2126 tmp = &tmp2;
/PHP-8.0/main/
H A Dphp_ini.c814 zval *tmp2; local
843 if ((tmp2 = zend_hash_str_find(&configuration_hash, path, strlen(path))) != NULL) {
844 php_ini_activate_config(Z_ARRVAL_P(tmp2), PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE);
/PHP-8.0/ext/opcache/Optimizer/
H A Dsccp.c1544 zval tmp1, tmp2; in sccp_visit_instr() local
1547 && ct_eval_incdec(&tmp2, opline->opcode, &tmp1) == SUCCESS) { in sccp_visit_instr()
1550 ct_eval_assign_obj(&zv, &tmp2, op2); in sccp_visit_instr()
1552 SET_RESULT(result, &tmp2); in sccp_visit_instr()
1557 zval_ptr_dtor_nogc(&tmp2); in sccp_visit_instr()
/PHP-8.0/ext/ldap/
H A Dldap.c1814 zval tmp1, tmp2; in PHP_FUNCTION() local
1862 array_init(&tmp2); in PHP_FUNCTION()
1863 add_assoc_long(&tmp2, "count", num_values); in PHP_FUNCTION()
1865 add_index_stringl(&tmp2, i, ldap_value[i]->bv_val, ldap_value[i]->bv_len); in PHP_FUNCTION()
1870 zend_hash_str_update(Z_ARRVAL(tmp1), php_strtolower(attribute, attr_len), attr_len, &tmp2); in PHP_FUNCTION()
/PHP-8.0/Zend/
H A Dzend_virtual_cwd.c811 char * tmp2 = substitutename + substitutename_off; in tsrm_realpath_r() local
813 *(path + bufindex) = *(tmp2 + bufindex); in tsrm_realpath_r()

Completed in 65 milliseconds