Lines Matching refs:np
1113 NR_TRANS *np; in mf_trans_add() local
1119 if ((np = ALLOC_ONE(NR_TRANS)) == NULL) in mf_trans_add()
1153 np->nt_old_bnum = hp->bh_bnum; // adjust number in mf_trans_add()
1154 np->nt_new_bnum = new_bnum; in mf_trans_add()
1161 mf_hash_add_item(&mfp->mf_trans, (mf_hashitem_T *)np); in mf_trans_add()
1174 NR_TRANS *np; in mf_trans_del() local
1177 np = (NR_TRANS *)mf_hash_find(&mfp->mf_trans, old_nr); in mf_trans_del()
1179 if (np == NULL) // not found in mf_trans_del()
1183 new_bnum = np->nt_new_bnum; in mf_trans_del()
1186 mf_hash_rem_item(&mfp->mf_trans, (mf_hashitem_T *)np); in mf_trans_del()
1188 vim_free(np); in mf_trans_del()