Searched refs:_tmp (Results 1 – 10 of 10) sorted by relevance
/PHP-8.1/win32/ |
H A D | readdir.c | 97 char *_tmp; in readdir() local 110 _tmp = php_win32_cp_conv_w_to_any(dp->fileinfo.cFileName, PHP_WIN32_CP_IGNORE_LEN, &reclen); in readdir() 111 if (!_tmp) { in readdir() 115 memmove(dp->dent.d_name, _tmp, reclen + 1); in readdir() 116 free(_tmp); in readdir()
|
H A D | ioutil.c | 322 …wchar_t *_tmp = (wchar_t *) malloc((path_len + PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW + 1) * sizeo… in php_win32_ioutil_mkdir_w() local 324 if (!_tmp) { in php_win32_ioutil_mkdir_w() 329 …memmove(_tmp, PHP_WIN32_IOUTIL_LONG_PATH_PREFIXW, PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW * sizeof(… in php_win32_ioutil_mkdir_w() 331 dst = _tmp + PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW; in php_win32_ioutil_mkdir_w() 341 _tmp[path_len] = L'\0'; in php_win32_ioutil_mkdir_w() 343 tmp = _tmp; in php_win32_ioutil_mkdir_w() 603 wchar_t *idx = *buf, canonicalw[MAXPATHLEN], _tmp[MAXPATHLEN], *pos = _tmp; in php_win32_ioutil_normalize_path_w() local 622 if (S_OK != canonicalize_path_w(canonicalw, MAXPATHLEN, _tmp, PATHCCH_ALLOW_LONG_PATHS)) { in php_win32_ioutil_normalize_path_w()
|
/PHP-8.1/TSRM/ |
H A D | TSRM.c | 293 tsrm_resource_type *_tmp; in ts_allocate_id() local 294 _tmp = (tsrm_resource_type *) realloc(resource_types_table, sizeof(tsrm_resource_type)*id_count); in ts_allocate_id() 295 if (!_tmp) { in ts_allocate_id() 301 resource_types_table = _tmp; in ts_allocate_id() 351 tsrm_resource_type *_tmp; in ts_allocate_fast_id() local 352 _tmp = (tsrm_resource_type *) realloc(resource_types_table, sizeof(tsrm_resource_type)*id_count); in ts_allocate_fast_id() 353 if (!_tmp) { in ts_allocate_fast_id() 359 resource_types_table = _tmp; in ts_allocate_fast_id()
|
/PHP-8.1/ext/gd/tests/ |
H A D | createfromwbmp2.phpt | 11 $filename = __DIR__ . '/_tmp.wbmp';
|
H A D | createfromwbmp2_extern.phpt | 11 $filename = __DIR__ . '/_tmp.wbmp';
|
/PHP-8.1/win32/build/ |
H A D | confutils.js | 712 if (!_tmp.match("LNK4039")) { 713 if (_tmp.match(/\d{2,}:\s+([a-z0-9\s]+)/i)) { 1545 _tmp.Close(); 1601 var _tmp = src.split("\\"); 1603 var filename = _tmp.pop(); 1606 var dirname = _tmp.join("\\"); 1734 var _tmp = src.split("\\"); 1735 var filename = _tmp.pop(); 3742 var _tmp = parseInt(PHP_VERBOSITY); 3743 if (0 != _tmp && 1 != _tmp && 2 != _tmp) { [all …]
|
H A D | config.w32 | 177 var _tmp = execute(cppcheck + " --version").split(/ /)[1]; 179 parseInt(_tmp.split(".")[0]), 180 parseInt(_tmp.split(".")[1]),
|
/PHP-8.1/ext/opcache/jit/ |
H A D | zend_jit_internal.h | 99 zend_regset _tmp = (set); \ 100 while (!ZEND_REGSET_IS_EMPTY(_tmp)) { \ 101 zend_reg _reg = ZEND_REGSET_FIRST(_tmp); \ 102 ZEND_REGSET_EXCL(_tmp, _reg); \
|
/PHP-8.1/Zend/ |
H A D | zend_virtual_cwd.c | 1384 mode_t _tmp = mode; in virtual_chmod() local 1388 if (_tmp & _S_IREAD) { in virtual_chmod() 1391 if (_tmp & _S_IWRITE) { in virtual_chmod()
|
/PHP-8.1/ext/curl/ |
H A D | interface.c | 128 char _tmp[MAXPATHLEN] = {0}; in php_curl_option_url() local 130 memmove(_tmp, "file:///", sizeof("file:///") - 1); in php_curl_option_url() 131 memmove(_tmp + sizeof("file:///") - 1, url + sizeof("file://") - 1, len - sizeof("file://") + 1); in php_curl_option_url() 133 return php_curl_option_str(ch, CURLOPT_URL, _tmp, len + 1); in php_curl_option_url()
|
Completed in 81 milliseconds