Lines Matching refs:dest
1868 char_u *dest = p - 2; in read_file_or_blob() local
1872 if (start == dest) in read_file_or_blob()
1879 if (dest < buf) in read_file_or_blob()
1882 adjust_prevlen = (int)(buf - dest); in read_file_or_blob()
1883 dest = buf; in read_file_or_blob()
1886 mch_memmove(dest, p + 1, readlen - (p - buf) - 1); in read_file_or_blob()
1889 p = dest - 1; in read_file_or_blob()
3008 char_u *dest; in concat_fnames() local
3010 dest = alloc(STRLEN(fname1) + STRLEN(fname2) + 3); in concat_fnames()
3011 if (dest != NULL) in concat_fnames()
3013 STRCPY(dest, fname1); in concat_fnames()
3015 add_pathsep(dest); in concat_fnames()
3016 STRCAT(dest, fname2); in concat_fnames()
3018 return dest; in concat_fnames()