Searched refs:CSI_ARG (Results 1 - 6 of 6) sorted by relevance

/seL4-refos-master/libs/libvterm/src/
H A Dpen.c52 col->red = CSI_ARG(args[0]);
53 col->green = CSI_ARG(args[1]);
54 col->blue = CSI_ARG(args[2]);
191 switch(arg = CSI_ARG(args[argi])) {
231 state->pen.font = CSI_ARG(args[argi]) - 10;
272 value = CSI_ARG(args[argi]) - 30;
283 argi += 1 + lookup_colour(CSI_ARG(args[argi+1]), args+argi+2, argcount-argi-2, 0, &state->pen.fg);
295 set_pen_col_ansi(state, VTERM_ATTR_BACKGROUND, CSI_ARG(args[argi]) - 40);
301 argi += 1 + lookup_colour(CSI_ARG(args[argi+1]), args+argi+2, argcount-argi-2, 1, &state->pen.bg);
313 set_pen_col_ansi(state, VTERM_ATTR_FOREGROUND, CSI_ARG(arg
[all...]
H A Dstate.c895 col = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? 1 : CSI_ARG(args[1]);
914 switch(CSI_ARG(args[0])) {
954 switch(CSI_ARG(args[0])) {
1087 col = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? 1 : CSI_ARG(args[1]);
1122 set_mode(state, CSI_ARG(args[0]), 1);
1127 set_dec_mode(state, CSI_ARG(args[0]), 1);
1144 set_mode(state, CSI_ARG(args[0]), 0);
1149 set_dec_mode(state, CSI_ARG(args[0]), 0);
1183 request_dec_mode(state, CSI_ARG(args[0]));
1234 state->scrollregion_bottom = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? -1 : CSI_ARG(arg
[all...]
/seL4-refos-master/projects/refos/impl/libs/libvterm/src/
H A Dpen.c52 col->red = CSI_ARG(args[0]);
53 col->green = CSI_ARG(args[1]);
54 col->blue = CSI_ARG(args[2]);
191 switch(arg = CSI_ARG(args[argi])) {
231 state->pen.font = CSI_ARG(args[argi]) - 10;
272 value = CSI_ARG(args[argi]) - 30;
283 argi += 1 + lookup_colour(CSI_ARG(args[argi+1]), args+argi+2, argcount-argi-2, 0, &state->pen.fg);
295 set_pen_col_ansi(state, VTERM_ATTR_BACKGROUND, CSI_ARG(args[argi]) - 40);
301 argi += 1 + lookup_colour(CSI_ARG(args[argi+1]), args+argi+2, argcount-argi-2, 1, &state->pen.bg);
313 set_pen_col_ansi(state, VTERM_ATTR_FOREGROUND, CSI_ARG(arg
[all...]
H A Dstate.c895 col = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? 1 : CSI_ARG(args[1]);
914 switch(CSI_ARG(args[0])) {
954 switch(CSI_ARG(args[0])) {
1087 col = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? 1 : CSI_ARG(args[1]);
1122 set_mode(state, CSI_ARG(args[0]), 1);
1127 set_dec_mode(state, CSI_ARG(args[0]), 1);
1144 set_mode(state, CSI_ARG(args[0]), 0);
1149 set_dec_mode(state, CSI_ARG(args[0]), 0);
1183 request_dec_mode(state, CSI_ARG(args[0]));
1234 state->scrollregion_bottom = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? -1 : CSI_ARG(arg
[all...]
/seL4-refos-master/libs/libvterm/include/vterm/
H A Dvterm.h59 #define CSI_ARG(a) ((a) & CSI_ARG_MASK) macro
64 #define CSI_ARG_IS_MISSING(a) (CSI_ARG(a) == CSI_ARG_MISSING)
65 #define CSI_ARG_OR(a,def) (CSI_ARG(a) == CSI_ARG_MISSING ? (def) : CSI_ARG(a))
66 #define CSI_ARG_COUNT(a) (CSI_ARG(a) == CSI_ARG_MISSING || CSI_ARG(a) == 0 ? 1 : CSI_ARG(a))
/seL4-refos-master/projects/refos/impl/libs/libvterm/include/vterm/
H A Dvterm.h59 #define CSI_ARG(a) ((a) & CSI_ARG_MASK) macro
64 #define CSI_ARG_IS_MISSING(a) (CSI_ARG(a) == CSI_ARG_MISSING)
65 #define CSI_ARG_OR(a,def) (CSI_ARG(a) == CSI_ARG_MISSING ? (def) : CSI_ARG(a))
66 #define CSI_ARG_COUNT(a) (CSI_ARG(a) == CSI_ARG_MISSING || CSI_ARG(a) == 0 ? 1 : CSI_ARG(a))

Completed in 93 milliseconds