Lines Matching refs:temp
270 char_u temp[4]; in add_char_buff() local
284 temp[0] = K_SPECIAL; in add_char_buff()
285 temp[1] = K_SECOND(c); in add_char_buff()
286 temp[2] = K_THIRD(c); in add_char_buff()
287 temp[3] = NUL; in add_char_buff()
293 temp[0] = CSI; in add_char_buff()
294 temp[1] = KS_EXTRA; in add_char_buff()
295 temp[2] = (int)KE_CSI; in add_char_buff()
296 temp[3] = NUL; in add_char_buff()
301 temp[0] = c; in add_char_buff()
302 temp[1] = NUL; in add_char_buff()
304 add_buff(buf, temp, -1L); in add_char_buff()
2078 char_u temp[10]; // modifier: 3, mbyte-char: 6, NUL: 1 in getchar_common() local
2084 temp[i++] = K_SPECIAL; in getchar_common()
2085 temp[i++] = KS_MODIFIER; in getchar_common()
2086 temp[i++] = mod_mask; in getchar_common()
2090 temp[i++] = K_SPECIAL; in getchar_common()
2091 temp[i++] = K_SECOND(n); in getchar_common()
2092 temp[i++] = K_THIRD(n); in getchar_common()
2095 i += (*mb_char2bytes)(n, temp + i); in getchar_common()
2097 temp[i++] = n; in getchar_common()
2098 temp[i++] = NUL; in getchar_common()
2100 rettv->vval.v_string = vim_strsave(temp); in getchar_common()
2155 char_u temp[7]; // mbyte-char: 6, NUL: 1 in f_getcharstr() local
2162 i += (*mb_char2bytes)(n, temp + i); in f_getcharstr()
2164 temp[i++] = n; in f_getcharstr()
2166 temp[i++] = NUL; in f_getcharstr()
2168 rettv->vval.v_string = vim_strsave(temp); in f_getcharstr()