Home
last modified time | relevance | path

Searched refs:CSI_ARG_OR (Results 1 – 3 of 3) sorted by relevance

/haiku/src/apps/serialconnect/libvterm/src/
H A Dstate.c1009 val = CSI_ARG_OR(args[0], 1); in on_csi()
1015 row = CSI_ARG_OR(args[0], 1); in on_csi()
1179 col = CSI_ARG_OR(args[0], 1); in on_csi()
1191 val = CSI_ARG_OR(args[0], 0); in on_csi()
1202 row = CSI_ARG_OR(args[0], 1); in on_csi()
1216 row = CSI_ARG_OR(args[0], 1); in on_csi()
1229 val = CSI_ARG_OR(args[0], 0); in on_csi()
1288 val = CSI_ARG_OR(args[0], 0); in on_csi()
1317 val = CSI_ARG_OR(args[0], 1); in on_csi()
1349 val = CSI_ARG_OR(args[0], 0); in on_csi()
[all …]
H A Dpen.c82 *index = CSI_ARG_OR(args[0], -1); in lookup_colour()
84 lookup_colour_palette(state, argcount ? CSI_ARG_OR(args[0], -1) : -1, col); in lookup_colour()
/haiku/src/apps/serialconnect/libvterm/include/
H A Dvterm.h160 #define CSI_ARG_OR(a,def) (CSI_ARG(a) == CSI_ARG_MISSING ? (def) : CSI_ARG(a)) macro