Lines Matching refs:tmp_new
1142 char_u *tmp_new = dio->dio_new.din_fname; in diff_file() local
1149 eval_diff(tmp_orig, tmp_new, tmp_diff); in diff_file()
1161 len = STRLEN(tmp_orig) + STRLEN(tmp_new) in diff_file()
1186 tmp_orig, tmp_new); in diff_file()
1205 char_u *tmp_new; // name of patched temp file in ex_diffpatch() local
1236 tmp_new = vim_tempname('n', FALSE); in ex_diffpatch()
1237 if (tmp_orig == NULL || tmp_new == NULL) in ex_diffpatch()
1257 buflen = STRLEN(tmp_orig) + STRLEN(esc_name) + STRLEN(tmp_new) + 16; in ex_diffpatch()
1289 eap->arg, tmp_new); in ex_diffpatch()
1296 tmp_new, tmp_orig, esc_name); in ex_diffpatch()
1315 STRCPY(buf, tmp_new); in ex_diffpatch()
1318 STRCPY(buf, tmp_new); in ex_diffpatch()
1323 if (mch_stat((char *)tmp_new, &st) < 0 || st.st_size == 0) in ex_diffpatch()
1345 eap->arg = tmp_new; in ex_diffpatch()
1373 if (tmp_new != NULL) in ex_diffpatch()
1374 mch_remove(tmp_new); in ex_diffpatch()
1375 vim_free(tmp_new); in ex_diffpatch()