Lines Matching refs:ftp
947 fromto_T *ftp; in read_rep_section() local
960 ftp = &((fromto_T *)gap->ga_data)[gap->ga_len]; in read_rep_section()
961 ftp->ft_from = read_cnt_string(fd, 1, &i); in read_rep_section()
966 ftp->ft_to = read_cnt_string(fd, 1, &i); in read_rep_section()
969 vim_free(ftp->ft_from); in read_rep_section()
981 ftp = &((fromto_T *)gap->ga_data)[i]; in read_rep_section()
982 if (first[*ftp->ft_from] == -1) in read_rep_section()
983 first[*ftp->ft_from] = i; in read_rep_section()
3428 fromto_T *ftp; in add_fromto() local
3433 ftp = ((fromto_T *)gap->ga_data) + gap->ga_len; in add_fromto()
3435 ftp->ft_from = getroom_save(spin, word); in add_fromto()
3437 ftp->ft_to = getroom_save(spin, word); in add_fromto()
4866 fromto_T *ftp; in write_vim_spell() local
5026 ftp = &((fromto_T *)gap->ga_data)[i]; in write_vim_spell()
5027 l += 1 + (int)STRLEN(ftp->ft_from); // count <*fromlen> and <*from> in write_vim_spell()
5028 l += 1 + (int)STRLEN(ftp->ft_to); // count <*tolen> and <*to> in write_vim_spell()
5051 ftp = &((fromto_T *)gap->ga_data)[i]; in write_vim_spell()
5054 p = rr == 1 ? ftp->ft_from : ftp->ft_to; in write_vim_spell()