Home
last modified time | relevance | path

Searched refs:tmp (Results 201 – 225 of 1134) sorted by last modified time

12345678910>>...46

/php-src/
H A D.gdbinit432 set $tmp = 0
435 set $tmp = $tmp + 1
460 while $tmp != 0
462 set $tmp = $tmp - 1
474 while $tmp != 1
476 set $tmp = $tmp - 1
524 set $tmp = 0
533 while $tmp < $arg1 && $tmp < $maxlen
534 if $str[$tmp] > 31 && $str[$tmp] < 127
539 set $tmp = $tmp + 1
[all …]
/php-src/Zend/
H A Dzend_hash.c1453 zval tmp; in _zend_hash_packed_del_val() local
1456 ht->pDestructor(&tmp); in _zend_hash_packed_del_val()
1479 zval tmp; in _zend_hash_del_el_ex() local
1589 zval tmp; in zend_hash_del_ind() local
3258 const char *tmp = key; in _zend_handle_numeric_str_ex() local
3262 if (*tmp == '-') { in _zend_handle_numeric_str_ex()
3263 tmp++; in _zend_handle_numeric_str_ex()
3273 *idx = (*tmp - '0'); in _zend_handle_numeric_str_ex()
3275 ++tmp; in _zend_handle_numeric_str_ex()
3276 if (tmp == end) { in _zend_handle_numeric_str_ex()
[all …]
H A Dzend_operators.h317 static zend_always_inline zend_string *zval_get_tmp_string(zval *op, zend_string **tmp) { in zval_get_tmp_string() argument
319 *tmp = NULL; in zval_get_tmp_string()
322 return *tmp = zval_get_string_func(op); in zval_get_tmp_string()
325 static zend_always_inline void zend_tmp_string_release(zend_string *tmp) { in zend_tmp_string_release() argument
326 if (UNEXPECTED(tmp)) { in zend_tmp_string_release()
327 zend_string_release_ex(tmp, 0); in zend_tmp_string_release()
343 static zend_always_inline zend_string *zval_try_get_tmp_string(zval *op, zend_string **tmp) { in zval_try_get_tmp_string() argument
346 *tmp = NULL; in zval_try_get_tmp_string()
350 return *tmp = zval_try_get_string_func(op); in zval_try_get_tmp_string()
H A Dzend_virtual_cwd.c508 char *tmp; in tsrm_realpath_r() local
622 memcpy(tmp, path, len+1); in tsrm_realpath_r()
646 free_alloca(tmp, use_heap); in tsrm_realpath_r()
659 free_alloca(tmp, use_heap); in tsrm_realpath_r()
868 memcpy(path, tmp, i-1); in tsrm_realpath_r()
904 memcpy(tmp, path, len+1); in tsrm_realpath_r()
925 memcpy(path, tmp, i-1); in tsrm_realpath_r()
997 free_alloca(tmp, use_heap); in tsrm_realpath_r()
1018 void *tmp; in virtual_file_ex() local
1178 state->cwd = (char *) tmp; in virtual_file_ex()
[all …]
H A Dzend_vm_execute.skl97 zval tmp;
102 Z_TYPE_INFO(tmp) = IS_LONG;
104 Z_LVAL(tmp) = i;
105 zend_hash_index_add(zend_handlers_table, (zend_long)(uintptr_t)zend_opcode_handlers[i], &tmp);
/php-src/ext/standard/tests/file/
H A Dgh13136.phpt37 file_put_contents(__DIR__ . "/gh13071.tmp", str_repeat("a", 1024 * 1024 * 8));
43 copy(__DIR__ . "/gh13071.tmp", "up://" . __DIR__ . "/gh13071.out.tmp");
51 @unlink(__DIR__ . "/gh13071.tmp");
52 @unlink(__DIR__ . "/gh13071.out.tmp");
H A Dfile_variation8-win32.phpt44 $filename = 'FileGetContentsVar7.tmp';
67 $filename = 'FileGetContentsVar7.tmp';
102 …2.dir\fileVar8Sub\..\\\fileVar8Sub\\..\\..\fileVar8Sub\FileGetContentsVar7.tmp): Failed to open st…
107 Warning: file(%sfileVar8_win32.dir\fileVar8Sub\BADDIR\FileGetContentsVar7.tmp): Failed to open stre…
136 Warning: file(BADDIR\FileGetContentsVar7.tmp): Failed to open stream: No such file or directory in …
/php-src/ext/opcache/tests/jit/
H A Dbug77857.phpt16 $tmp = 1.0 * $v;
17 var_dump($tmp);
18 $y = $tmp/1.0;
H A Dassign_036.phpt31 $tmp = $propValue;
32 \settype($tmp, $newType);
/php-src/ext/gd/
H A Dgd.c403 char tmp[256]; in PHP_MINFO_FUNCTION() local
410 snprintf(tmp, sizeof(tmp), "1.x"); in PHP_MINFO_FUNCTION()
440 char tmp[12]; in PHP_MINFO_FUNCTION() local
441 snprintf(tmp, sizeof(tmp), "%d", XpmLibraryVersion()); in PHP_MINFO_FUNCTION()
1776 FILE *tmp; in _php_image_output() local
1805 fclose(tmp); in _php_image_output()
3359 zval *tmp; in PHP_FUNCTION() local
3505 zval *tmp; in PHP_FUNCTION() local
3661 zval *tmp; in PHP_FUNCTION() local
3745 zval *tmp; in PHP_FUNCTION() local
[all …]
/php-src/main/
H A Dreentrancy.c117 if (tmp) { in php_localtime_r()
124 return tmp; in php_localtime_r()
133 char *tmp; in php_ctime_r() local
138 if (tmp) { in php_ctime_r()
140 tmp = buf; in php_ctime_r()
145 return tmp; in php_ctime_r()
154 char *tmp; in php_asctime_r() local
159 if (tmp) { in php_asctime_r()
161 tmp = buf; in php_asctime_r()
166 return tmp; in php_asctime_r()
[all …]
/php-src/ext/standard/
H A Dvar.c1149 zval tmp; in php_var_serialize_intern() local
1151 ZVAL_OBJ_COPY(&tmp, Z_OBJ_P(struc)); in php_var_serialize_intern()
1152 if (!(ht = php_var_serialize_call_sleep(Z_OBJ(tmp), Z_FUNC_P(zv)))) { in php_var_serialize_intern()
1158 OBJ_RELEASE(Z_OBJ(tmp)); in php_var_serialize_intern()
1162 php_var_serialize_class(buf, &tmp, ht, var_hash); in php_var_serialize_intern()
1164 OBJ_RELEASE(Z_OBJ(tmp)); in php_var_serialize_intern()
H A Dfilters.c1085 zend_string *tmp; in php_conv_get_string_prop_ex() local
1086 zend_string *str = zval_get_tmp_string(tmpval, &tmp); in php_conv_get_string_prop_ex()
1091 zend_tmp_string_release(tmp); in php_conv_get_string_prop_ex()
H A Dsha1.c125 #define W(i) ( tmp=x[(i-3)&15]^x[(i-8)&15]^x[(i-14)&15]^x[i&15], \
126 (x[i&15]=ROTATE_LEFT(tmp, 1)) )
254 uint32_t d = state[3], e = state[4], x[16], tmp; in SHA1Transform() local
H A Dstreamsfuncs.c937 zval *tmp; in parse_context_params() local
939 if (NULL != (tmp = zend_hash_str_find(params, "notification", sizeof("notification")-1))) { in parse_context_params()
948 ZVAL_COPY(&context->notifier->ptr, tmp); in parse_context_params()
951 if (NULL != (tmp = zend_hash_str_find(params, "options", sizeof("options")-1))) { in parse_context_params()
952 if (Z_TYPE_P(tmp) == IS_ARRAY) { in parse_context_params()
953 return parse_context_options(context, Z_ARRVAL_P(tmp)); in parse_context_params()
/php-src/ext/mysqli/tests/
H A Dmysqli_result_references.phpt71 $tmp = array();
73 $tmp[] = $row;
75 $tmp = unserialize(serialize($tmp));
76 debug_zval_dump($tmp);
/php-src/ext/pdo_pgsql/
H A Dpgsql_driver.c42 char *tmp; in _pdo_pgsql_trim_message() local
51 tmp = pemalloc(i + 1, persistent); in _pdo_pgsql_trim_message()
52 memcpy(tmp, message, i); in _pdo_pgsql_trim_message()
53 tmp[i] = '\0'; in _pdo_pgsql_trim_message()
55 return tmp; in _pdo_pgsql_trim_message()
647 zval *tmp; in pgsqlCopyFromArray_internal() local
652 if (!try_convert_to_string(tmp)) { in pgsqlCopyFromArray_internal()
657 if (buffer_len < Z_STRLEN_P(tmp)) { in pgsqlCopyFromArray_internal()
658 buffer_len = Z_STRLEN_P(tmp); in pgsqlCopyFromArray_internal()
661 query_len = Z_STRLEN_P(tmp); in pgsqlCopyFromArray_internal()
[all …]
/php-src/ext/pdo_mysql/tests/inc/
H A Dmysql_pdo_test.inc63 $tmp = explode('=', $v);
64 if (count($tmp) == 2)
65 $old_options[$tmp[0]] = $tmp[1];
106 $tmp = (int)$version_string;
107 if (((string)$tmp) === $version_string)
108 return $tmp;
158 $tmp = ob_get_contents();
160 return (preg_match('/PDO Driver for MySQL.*enabled/', $tmp) &&
161 preg_match('/Client API version.*mysqlnd/', $tmp));
/php-src/win32/build/
H A DMakefile189 test: set-tmp-env
192 run: set-tmp-env
195 test: set-tmp-env
198 run: set-tmp-env
202 build-snap: set-tmp-env generated_files
H A Dconfutils.js2942 var tmp = probe_binary(PHP_CL);
2943 COMPILER_NAME_LONG = COMPILER_NAME_SHORT = "MSVC " + tmp + ", untested";
2945 WARNING("Using unknown MSVC version " + tmp);
2948 DEFINE("PHP_COMPILER_SHORT", tmp);
2949 AC_DEFINE('PHP_COMPILER_ID', tmp, "Compiler compatibility ID");
/php-src/ext/gd/tests/
H A Dimagerotate_overflow.phpt10 $tmp = imagerotate ($im, 5, -9999999);
12 var_dump($tmp);
14 if ($tmp) {
15 imagedestroy($tmp);
/php-src/sapi/phpdbg/
H A Dphpdbg_prompt.c715 zval rv, tmp; in phpdbg_handle_exception() local
719 zend_call_known_instance_method_with_0_params(ex->ce->__tostring, ex, &tmp); in phpdbg_handle_exception()
727 zend_update_property_string(zend_get_exception_base(ex), ex, ZEND_STRL("string"), Z_STRVAL(tmp)); in phpdbg_handle_exception()
728 zval_ptr_dtor(&tmp); in phpdbg_handle_exception()
/php-src/ext/hash/
H A Dhash_ripemd.c262 tmp = 0; in RIPEMD128Transform()
326 tmp = a; a = aa; aa = tmp; in RIPEMD256Transform()
334 tmp = b; b = bb; bb = tmp; in RIPEMD256Transform()
342 tmp = c; c = cc; cc = tmp; in RIPEMD256Transform()
350 tmp = d; d = dd; dd = tmp; in RIPEMD256Transform()
361 tmp = 0; in RIPEMD256Transform()
525 tmp = b; b = bb; bb = tmp; in RIPEMD320Transform()
533 tmp = d; d = dd; dd = tmp; in RIPEMD320Transform()
541 tmp = a; a = aa; aa = tmp; in RIPEMD320Transform()
549 tmp = c; c = cc; cc = tmp; in RIPEMD320Transform()
[all …]
/php-src/ext/soap/
H A Dphp_encoding.c456 zval *tmp; in master_to_xml_int() local
586 tmp == tmp->details.sdl_type->encode) { in master_to_zval()
590 tmp = tmp->details.sdl_type->encode; in master_to_zval()
848 str = estrndup(ZSTR_VAL(tmp), ZSTR_LEN(tmp)); in to_xml_string()
950 zval tmp; in to_xml_hexbin() local
1080 zval tmp; in to_xml_double() local
1400 ce = tmp; in to_zval_object_ex()
2797 tmp == tmp->details.sdl_type->encode) { in guess_zval_convert()
2801 tmp = tmp->details.sdl_type->encode; in guess_zval_convert()
3024 zval tmp; in to_xml_list() local
[all …]
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_autocommit.phpt16 if (true !== ($tmp = $db->getAttribute(PDO::ATTR_AUTOCOMMIT)))
17 printf("[001] Expecting int/1 got %s\n", var_export($tmp, true));
36 if (false !== ($tmp = $db->getAttribute(PDO::ATTR_AUTOCOMMIT)))
37 printf("[006] Expecting int/0 got %s\n", var_export($tmp, true));
50 if (true !== ($tmp = $db->getAttribute(PDO::ATTR_AUTOCOMMIT)))
51 printf("[010] Expecting int/1 got %s\n", var_export($tmp, true));

Completed in 292 milliseconds

12345678910>>...46