Lines Matching +defs:n +defs:rt

30 static inline void clamp_cursor_to_bounds(RoteTerm *rt) {  in clamp_cursor_to_bounds()
42 static void interpret_csi_SGR(RoteTerm *rt, int param[], int pcount) { in interpret_csi_SGR()
104 static void interpret_csi_ED(RoteTerm *rt, int param[], int pcount) { in interpret_csi_ED()
134 static void interpret_csi_CUP(RoteTerm *rt, int param[], int pcount) { in interpret_csi_CUP()
152 static void interpret_csi_C(RoteTerm *rt, char verb, in interpret_csi_C()
154 int n = (pcount && param[0] > 0) ? param[0] : 1; in interpret_csi_C() local
172 static void interpret_csi_EL(RoteTerm *rt, int param[], int pcount) { in interpret_csi_EL()
191 static void interpret_csi_ICH(RoteTerm *rt, int param[], int pcount) { in interpret_csi_ICH()
192 int n = (pcount && param[0] > 0) ? param[0] : 1; in interpret_csi_ICH() local
205 static void interpret_csi_DCH(RoteTerm *rt, int param[], int pcount) { in interpret_csi_DCH()
206 int n = (pcount && param[0] > 0) ? param[0] : 1; in interpret_csi_DCH() local
221 static void interpret_csi_IL(RoteTerm *rt, int param[], int pcount) { in interpret_csi_IL()
222 int n = (pcount && param[0] > 0) ? param[0] : 1; in interpret_csi_IL() local
237 static void interpret_csi_DL(RoteTerm *rt, int param[], int pcount) { in interpret_csi_DL()
238 int n = (pcount && param[0] > 0) ? param[0] : 1; in interpret_csi_DL() local
253 static void interpret_csi_ECH(RoteTerm *rt, int param[], int pcount) { in interpret_csi_ECH()
254 int n = (pcount && param[0] > 0) ? param[0] : 1; in interpret_csi_ECH() local
266 static void interpret_csi_DECSTBM(RoteTerm *rt, int param[], int pcount) { in interpret_csi_DECSTBM()
291 static void interpret_csi_SAVECUR(RoteTerm *rt, int param[], int pcount) { in interpret_csi_SAVECUR()
296 static void interpret_csi_RESTORECUR(RoteTerm *rt, int param[], int pcount) { in interpret_csi_RESTORECUR()
302 void rote_es_interpret_csi(RoteTerm *rt) { in rote_es_interpret_csi()