Lines Matching refs:tmp
2110 digr_T tmp; in listdigraphs() local
2113 tmp.char1 = dp->char1; in listdigraphs()
2114 tmp.char2 = dp->char2; in listdigraphs()
2115 tmp.result = getexactdigraph(tmp.char1, tmp.char2, FALSE); in listdigraphs()
2116 if (tmp.result != 0 && tmp.result != tmp.char2 in listdigraphs()
2117 && (has_mbyte || tmp.result <= 255)) in listdigraphs()
2118 printdigraph(&tmp, use_headers ? &previous : NULL); in listdigraphs()
2211 digr_T tmp; in digraph_getlist_common() local
2213 tmp.char1 = dp->char1; in digraph_getlist_common()
2214 tmp.char2 = dp->char2; in digraph_getlist_common()
2215 tmp.result = getexactdigraph(tmp.char1, tmp.char2, FALSE); in digraph_getlist_common()
2216 if (tmp.result != 0 && tmp.result != tmp.char2 in digraph_getlist_common()
2217 && (has_mbyte || tmp.result <= 255)) in digraph_getlist_common()
2218 digraph_getlist_appendpair(&tmp, rettv->vval.v_list); in digraph_getlist_common()