Searched refs:tmp1 (Results 1 – 8 of 8) sorted by relevance
/PHP-8.1/ext/mysqli/tests/ |
H A D | mysqli_stmt_get_result_metadata.phpt | 61 printf("[009] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2); 66 printf("[010] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2); 69 printf("[011] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2); 73 printf("[012] %s/%s !== %s/%s\n", gettype($tmp1), $tmp1, gettype($tmp2), $tmp2); 75 if (0 !== $tmp1) 76 printf("[013] Expecting int/0 got %s/%s\n", gettype($tmp1), $tmp1); 161 $tmp1 = $res->fetch_field(); 164 if ($tmp1 != $tmp2) { 166 var_dump($tmp1); 170 if ($tmp1 != $fields['res'][$pos]) { [all …]
|
/PHP-8.1/ext/standard/ |
H A D | crypt_blowfish.c | 453 tmp1 = L & 0xFF; \ 459 tmp1 = data.ctx.S[3][tmp1]; \ 465 tmp3 += tmp1; \ 472 tmp1 = L & 0xFF; \ 473 tmp1 <<= 2; \ 480 tmp1 = BF_INDEX(data.ctx.S[3], tmp1); \ 486 tmp3 += tmp1; \ 652 BF_word tmp1, tmp2, tmp3, tmp4; in BF_crypt() local 727 tmp1 = data.binary.salt[0]; in BF_crypt() 732 data.ctx.P[i] ^= tmp1; in BF_crypt() [all …]
|
H A D | info.c | 775 char **env, *tmp1, *tmp2; in php_print_info() local 983 tmp1 = estrdup(*env); in php_print_info() 984 if (!(tmp2=strchr(tmp1,'='))) { /* malformed entry? */ in php_print_info() 985 efree(tmp1); in php_print_info() 990 php_info_print_table_row(2, tmp1, tmp2); in php_print_info() 991 efree(tmp1); in php_print_info()
|
/PHP-8.1/sapi/apache2handler/ |
H A D | php_functions.c | 364 smart_str tmp1 = {0}; in PHP_MINFO_FUNCTION() local 380 smart_str_appendl(&tmp1, s, (p - s)); in PHP_MINFO_FUNCTION() 382 smart_str_appends(&tmp1, s); in PHP_MINFO_FUNCTION() 384 smart_str_appendc(&tmp1, ' '); in PHP_MINFO_FUNCTION() 386 if (tmp1.s) { in PHP_MINFO_FUNCTION() 387 if (tmp1.s->len > 0) { in PHP_MINFO_FUNCTION() 388 tmp1.s->val[tmp1.s->len - 1] = '\0'; in PHP_MINFO_FUNCTION() 390 tmp1.s->val[0] = '\0'; in PHP_MINFO_FUNCTION() 428 php_info_print_table_row(2, "Loaded Modules", tmp1.s->val); in PHP_MINFO_FUNCTION() 430 smart_str_free(&tmp1); in PHP_MINFO_FUNCTION()
|
/PHP-8.1/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeS390X.c | 94 #define tmp1 r1 macro 1035 sljit_gpr src_r = tmp1; in emit_rr() 1073 sljit_gpr src2_r = tmp1; in emit_rrf() 1173 index = tmp1; in emit_rx() 1179 index = tmp1; in emit_rx() 1181 base = tmp1; in emit_rx() 1205 sljit_gpr dst_r = tmp1; in emit_siy() 1208 sljit_gpr index = tmp1; in emit_siy() 1222 FAIL_IF(push_inst(compiler, la(tmp1, 0, dst_r, tmp1))); in emit_siy() 2537 base_r = tmp1; in sljit_emit_shift() [all …]
|
/PHP-8.1/ext/standard/tests/file/ |
H A D | feof_basic.phpt | 8 $tmpFile1 = __FILE__.".tmp1";
|
/PHP-8.1/ext/ldap/ |
H A D | ldap.c | 729 zval tmp1; in _php_ldap_controls_to_array() local 742 _php_ldap_control_to_array(ld, *ctrlp, &tmp1, request); in _php_ldap_controls_to_array() 743 add_assoc_zval(array, (*ctrlp)->ldctl_oid, &tmp1); in _php_ldap_controls_to_array() 1959 zval tmp1, tmp2; in PHP_FUNCTION() local 1997 array_init(&tmp1); in PHP_FUNCTION() 2015 zend_hash_str_update(Z_ARRVAL(tmp1), attribute, attr_len, &tmp2); in PHP_FUNCTION() 2016 add_index_string(&tmp1, num_attrib, attribute); in PHP_FUNCTION() 2030 add_assoc_long(&tmp1, "count", num_attrib); in PHP_FUNCTION() 2033 add_assoc_string(&tmp1, "dn", dn); in PHP_FUNCTION() 2035 add_assoc_null(&tmp1, "dn"); in PHP_FUNCTION() [all …]
|
/PHP-8.1/Zend/Optimizer/ |
H A D | sccp.c | 1524 zval tmp1, tmp2; in sccp_visit_instr() local 1526 if (ct_eval_fetch_obj(&tmp1, op1, op2) == SUCCESS in sccp_visit_instr() 1527 && ct_eval_incdec(&tmp2, opline->opcode, &tmp1) == SUCCESS) { in sccp_visit_instr() 1534 SET_RESULT(result, &tmp1); in sccp_visit_instr() 1536 zval_ptr_dtor_nogc(&tmp1); in sccp_visit_instr()
|
Completed in 40 milliseconds