| /netbsd-src/external/gpl3/binutils.old/dist/include/opcode/ |
| H A D | tic6x-control-registers.h | 25 CTRL(amr, C62X, read_write, 0x0, 0x10) 26 CTRL(csr, C62X, read_write, 0x1, 0x10) 27 CTRL(dnum, C64XP, read, 0x11, 0x1f) 28 CTRL(ecr, C64XP, write, 0x1d, 0x1f) 29 CTRL(efr, C64XP, read, 0x1d, 0x1f) 30 CTRL(fadcr, C67X, read_write, 0x12, 0x1f) 31 CTRL(faucr, C67X, read_write, 0x13, 0x1f) 32 CTRL(fmcr, C67X, read_write, 0x14, 0x1f) 33 CTRL(gfpgfr, C64X, read_write, 0x18, 0x1f) 34 CTRL(gplya, C64XP, read_write, 0x16, 0x1f) [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/include/opcode/ |
| H A D | tic6x-control-registers.h | 25 CTRL(amr, C62X, read_write, 0x0, 0x10) 26 CTRL(csr, C62X, read_write, 0x1, 0x10) 27 CTRL(dnum, C64XP, read, 0x11, 0x1f) 28 CTRL(ecr, C64XP, write, 0x1d, 0x1f) 29 CTRL(efr, C64XP, read, 0x1d, 0x1f) 30 CTRL(fadcr, C67X, read_write, 0x12, 0x1f) 31 CTRL(faucr, C67X, read_write, 0x13, 0x1f) 32 CTRL(fmcr, C67X, read_write, 0x14, 0x1f) 33 CTRL(gfpgfr, C64X, read_write, 0x18, 0x1f) 34 CTRL(gplya, C64XP, read_write, 0x16, 0x1f) [all …]
|
| /netbsd-src/sys/sys/ |
| H A D | ttydefaults.h | 57 #define CTRL(x) (x&037) macro 58 #define CEOF CTRL('d') 61 #define CINTR CTRL('c') 62 #define CSTATUS CTRL('t') 63 #define CKILL CTRL('u') 66 #define CSUSP CTRL('z') 68 #define CDSUSP CTRL('y') 69 #define CSTART CTRL('q') 70 #define CSTOP CTRL('s') 71 #define CLNEXT CTRL('v') [all …]
|
| /netbsd-src/sys/ddb/ |
| H A D | db_input.c | 71 #define CTRL(c) ((c) & 0x1f) macro 163 case CTRL('b'): in db_inputchar() 170 case CTRL('f'): in db_inputchar() 177 case CTRL('a'): in db_inputchar() 184 case CTRL('e'): in db_inputchar() 191 case CTRL('h'): in db_inputchar() 197 case CTRL('d'): in db_inputchar() 202 case CTRL('k'): in db_inputchar() 207 case CTRL('u'): in db_inputchar() 211 case CTRL('t'): in db_inputchar() [all …]
|
| H A D | db_output.c | 71 #define CTRL(c) ((c) & 0xff) macro 138 case CTRL('c'): in db_more()
|
| /netbsd-src/lib/libc/gen/ |
| H A D | getpass.c | 190 if (c == C(VREPRINT, CTRL('r')) || c == C(VSTART, CTRL('q')) || in __weak_alias() 191 c == C(VSTOP, CTRL('s')) || c == C(VSTATUS, CTRL('t')) || in __weak_alias() 192 c == C(VDISCARD, CTRL('o'))) in __weak_alias() 196 if (c == C(VLNEXT, CTRL('v'))) { in __weak_alias() 202 if (c == C(VKILL, CTRL('u')) || c == C(VWERASE, CTRL('w'))) { in __weak_alias() 212 if (c == C(VERASE, CTRL('h'))) { in __weak_alias() 224 if (c == C(VINTR, CTRL('c'))) { in __weak_alias() 228 if (c == C(VQUIT, CTRL('\\'))) { in __weak_alias() 232 if (c == C(VSUSP, CTRL('z')) || c == C(VDSUSP, CTRL('y'))) { in __weak_alias() 238 if (c == C(VEOF, CTRL('d'))) { in __weak_alias() [all …]
|
| /netbsd-src/bin/ksh/ |
| H A D | emacs.c | 31 #undef CTRL /* _BSD brain damage */ 32 #define CTRL(x) ((x) == '?' ? 0x7F : (x) & 0x1F) /* ASCII */ macro 106 static int x_prefix1 = CTRL('['), x_prefix2 = CTRL('X'); 234 { XFUNC_del_back, 0, CTRL('?') }, 235 { XFUNC_del_bword, 1, CTRL('?') }, 236 { XFUNC_eot_del, 0, CTRL('D') }, 237 { XFUNC_del_back, 0, CTRL('H') }, 238 { XFUNC_del_bword, 1, CTRL('H') }, 243 { XFUNC_mv_back, 0, CTRL('B') }, 244 { XFUNC_mv_forw, 0, CTRL('F') }, [all …]
|
| /netbsd-src/external/gpl3/gdb.old/dist/readline/readline/ |
| H A D | chardefs.h | 45 #ifdef CTRL 46 # undef CTRL 63 #define CTRL(c) ((c) & control_character_mask) macro 133 #define RETURN CTRL('M') 147 #define ABORT_CHAR CTRL('G') 152 #define PAGE CTRL('L') 162 #define ESC CTRL('[')
|
| /netbsd-src/external/gpl3/gdb/dist/readline/readline/ |
| H A D | chardefs.h | 45 #ifdef CTRL 46 # undef CTRL 63 #define CTRL(c) ((c) & control_character_mask) macro 133 #define RETURN CTRL('M') 147 #define ABORT_CHAR CTRL('G') 152 #define PAGE CTRL('L') 162 #define ESC CTRL('[')
|
| H A D | search.c | 285 c = CTRL ('C'); in _rl_nsearch_dispatch() 289 case CTRL('W'): in _rl_nsearch_dispatch() 293 case CTRL('U'): in _rl_nsearch_dispatch() 301 case CTRL('H'): in _rl_nsearch_dispatch() 311 case CTRL('C'): in _rl_nsearch_dispatch() 312 case CTRL('G'): in _rl_nsearch_dispatch()
|
| H A D | vi_mode.c | 1999 if (c == '\033' || c == CTRL ('C')) in _rl_vi_change_char() 2242 if (vi_insertion_keymap[CTRL ('H')].type == ISFUNC && in rl_vi_replace() 2243 vi_insertion_keymap[CTRL ('H')].function == rl_rubout) in rl_vi_replace() 2244 vi_replace_map[CTRL ('H')].function = rl_vi_overstrike_delete; in rl_vi_replace() 2247 if (vi_insertion_keymap[CTRL ('U')].type == ISFUNC && in rl_vi_replace() 2248 vi_insertion_keymap[CTRL ('U')].function == rl_unix_line_discard) in rl_vi_replace() 2249 vi_replace_map[CTRL ('U')].function = rl_vi_overstrike_kill_line; in rl_vi_replace() 2252 if (vi_insertion_keymap[CTRL ('W')].type == ISFUNC && in rl_vi_replace() 2253 vi_insertion_keymap[CTRL ('W')].function == rl_vi_unix_word_rubout) in rl_vi_replace() 2254 vi_replace_map[CTRL ('W')].function = rl_vi_overstrike_kill_word; in rl_vi_replace() [all …]
|
| /netbsd-src/games/boggle/boggle/ |
| H A D | mach.c | 190 case CTRL('h'): /* <bs> */ in get_line() 199 case CTRL('u'): /* <^u> */ in get_line() 200 case CTRL('w'): /* <^w> */ in get_line() 210 case CTRL('z'): /* <^z> */ in get_line() 214 case CTRL('s'): /* <^s> */ in get_line() 225 case CTRL('c'): /* <^c> */ in get_line() 229 case CTRL('d'): /* <^d> */ in get_line() 233 case CTRL('r'): /* <^l> */ in get_line() 234 case CTRL('l'): /* <^r> */ in get_line()
|
| H A D | bog.c | 253 else if (ch == CTRL('l') || ch == CTRL('r')) in main() 266 else if (ch == CTRL('l') || ch == CTRL('r')) in main()
|
| /netbsd-src/usr.bin/tip/ |
| H A D | cmdtab.c | 54 {CTRL('d'),NORM,"exit from tip", finish }, 55 {CTRL('y'),NORM,"suspend tip (local+remote)", suspend }, 56 {CTRL('z'),NORM,"suspend tip (local only)", suspend },
|
| /netbsd-src/games/cgram/ |
| H A D | cgram.c | 491 #define CTRL(letter) (letter - 64) in handle_key() macro 493 case CTRL('A'): in handle_key() 498 case CTRL('B'): in handle_key() 502 case CTRL('E'): in handle_key() 506 case CTRL('F'): in handle_key() 519 case CTRL('L'): in handle_key() 522 case CTRL('N'): in handle_key() 526 case CTRL('P'): in handle_key()
|
| /netbsd-src/lib/libedit/readline/ |
| H A D | readline.h | 79 #ifndef CTRL 84 #ifndef CTRL 85 #define CTRL(c) ((c) & 037) macro 93 #define ABORT_CHAR CTRL('G')
|
| /netbsd-src/usr.bin/systat/ |
| H A D | keyboard.c | 100 case CTRL('l'): in keyboard() 104 case CTRL('g'): in keyboard() 131 if (ch == CTRL('w') && col > 0) { in keyboard()
|
| /netbsd-src/sys/lib/libsa/ |
| H A D | getfile.c | 35 #define CTRL(x) ((x) & 037) macro 46 if (buf[0] == CTRL('d') && buf[1] == 0) in getfile()
|
| /netbsd-src/sys/arch/prep/stand/boot/ |
| H A D | kbd.c | 149 #define CTRL(s) (s & 0x1F) in kbd() macro 151 (chr == CTRL('A')) || (chr == CTRL('S'))) { in kbd()
|
| /netbsd-src/sys/arch/bebox/stand/boot/ |
| H A D | kbd.c | 149 #define CTRL(s) (s & 0x1F) in kbd() macro 151 (chr == CTRL('A')) || (chr == CTRL('S'))) { in kbd()
|
| /netbsd-src/distrib/acorn32/stand/BtNetBSD/!BtNetBSD/Docs/ |
| H A D | FBInstall | 34 to test for the ALT or CTRL keys are being held down. In addition 56 that the ALT and CTRL keys can be detected quickly. However, currently 73 To engage the fastconf mode hold CTRL down immediately 75 the CTRL key can be released. 118 This is the behaviour when CTRL is held down at boot time. This is similar to
|
| /netbsd-src/usr.bin/tset/ |
| H A D | tset.c | 103 optarg[1] == '?' ? '\177' : CTRL(optarg[1]) : in main() 114 optarg[1] == '?' ? '\177' : CTRL(optarg[1]) : in main() 119 optarg[1] == '?' ? '\177' : CTRL(optarg[1]) : in main()
|
| /netbsd-src/games/hangman/ |
| H A D | getguess.c | 69 if (ch == CTRL('D')) in getguess() 105 if (ch == CTRL('L')) { in readch()
|
| /netbsd-src/games/cribbage/ |
| H A D | io.c | 56 #ifdef CTRL 57 #undef CTRL 59 #define CTRL(X) (X - 'A' + 1) macro 504 if (c == CTRL('L')) { in readchar() 551 putchar(CTRL('G')); in get_line()
|
| /netbsd-src/games/robots/ |
| H A D | move.c | 196 case CTRL('L'): in get_move() 202 putchar(CTRL('G')); in get_move() 268 putchar(CTRL('G')); in do_move()
|