Home
last modified time | relevance | path

Searched refs:_tmp (Results 1 – 11 of 11) sorted by relevance

/PHP-8.0/win32/
H A Dreaddir.c101 char *_tmp; in readdir() local
114 _tmp = php_win32_cp_conv_w_to_any(dp->fileinfo.cFileName, PHP_WIN32_CP_IGNORE_LEN, &reclen); in readdir()
115 if (!_tmp) { in readdir()
119 memmove(dp->dent.d_name, _tmp, reclen + 1); in readdir()
120 free(_tmp); in readdir()
H A Dioutil.c322 …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.0/TSRM/
H A DTSRM.c288 tsrm_resource_type *_tmp; in ts_allocate_id() local
289 _tmp = (tsrm_resource_type *) realloc(resource_types_table, sizeof(tsrm_resource_type)*id_count); in ts_allocate_id()
290 if (!_tmp) { in ts_allocate_id()
296 resource_types_table = _tmp; in ts_allocate_id()
346 tsrm_resource_type *_tmp; in ts_allocate_fast_id() local
347 _tmp = (tsrm_resource_type *) realloc(resource_types_table, sizeof(tsrm_resource_type)*id_count); in ts_allocate_fast_id()
348 if (!_tmp) { in ts_allocate_fast_id()
354 resource_types_table = _tmp; in ts_allocate_fast_id()
/PHP-8.0/ext/opcache/jit/
H A Dzend_jit_x86.h212 zend_regset _tmp = (set); \
213 while (!ZEND_REGSET_IS_EMPTY(_tmp)) { \
214 zend_reg _reg = ZEND_REGSET_FIRST(_tmp); \
215 ZEND_REGSET_EXCL(_tmp, _reg); \
/PHP-8.0/ext/gd/tests/
H A Dcreatefromwbmp2.phpt10 $filename = __DIR__ . '/_tmp.wbmp';
H A Dcreatefromwbmp2_extern.phpt10 $filename = __DIR__ . '/_tmp.wbmp';
/PHP-8.0/win32/build/
H A Dconfutils.js712 if (!_tmp.match("LNK4039")) {
713 if (_tmp.match(/\d{2,}:\s+([a-z0-9\s]+)/i)) {
1545 _tmp.Close();
1602 var _tmp = src.split("\\");
1604 var filename = _tmp.pop();
1607 var dirname = _tmp.join("\\");
1735 var _tmp = src.split("\\");
1736 var filename = _tmp.pop();
3731 var _tmp = parseInt(PHP_VERBOSITY);
3732 if (0 != _tmp && 1 != _tmp && 2 != _tmp) {
[all …]
H A Dconfig.w32177 var _tmp = execute(cppcheck + " --version").split(/ /)[1];
179 parseInt(_tmp.split(".")[0]),
180 parseInt(_tmp.split(".")[1]),
/PHP-8.0/Zend/
H A Dzend_virtual_cwd.c1384 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.0/
H A Drun-tests.php3596 $_tmp = [];
3606 array_unshift($_tmp, basename($dir));
3612 array_shift($_tmp);
3614 foreach ($_tmp as $p) {
/PHP-8.0/ext/curl/
H A Dinterface.c134 char _tmp[MAXPATHLEN] = {0}; in php_curl_option_url() local
136 memmove(_tmp, "file:///", sizeof("file:///") - 1); in php_curl_option_url()
137 memmove(_tmp + sizeof("file:///") - 1, url + sizeof("file://") - 1, len - sizeof("file://") + 1); in php_curl_option_url()
139 return php_curl_option_str(ch, CURLOPT_URL, _tmp, len + 1, 0); in php_curl_option_url()

Completed in 58 milliseconds