HomeSort by: relevance | last modified time | path
    Searched refs:inch (Results 1 - 12 of 12) sorted by relevancy

  /src/games/robots/
move_robs.c 59 addch(inch());
61 addch(inch());
120 addch(inch());
122 addch(inch());
play_level.c 67 addch(inch());
69 addch(inch());
  /src/lib/libcurses/
inch.c 1 /* $NetBSD: inch.c,v 1.15 2024/12/23 02:58:03 blymn Exp $ */
34 __RCSID("$NetBSD: inch.c,v 1.15 2024/12/23 02:58:03 blymn Exp $");
43 * inch --
47 inch(void) function in typeref:typename:chtype
Makefile 25 idcok.c immedok.c inch.c inchstr.c initscr.c insch.c insdelln.c \
106 curses_tty.3 idlok.3 curses_refresh.3 immedok.3 curses_inch.3 inch.3 \
curses.h 460 #define inch() winch(stdscr) macro
566 chtype inch(void);
  /src/sys/fs/msdosfs/
msdosfs_conv.c 783 uint16_t inch = le16toh(in[0]); local in function:ucs2utf8
785 if (inch <= 0x007f) {
788 *out++ = inch;
790 } else if (inch <= 0x07ff) {
793 *out++ = 0xc0 | (inch >> 6);
794 *out++ = 0x80 | (inch & 0x3f);
800 *out++ = 0xe0 | (inch >> 12);
801 *out++ = 0x80 | ((inch >> 6) & 0x3f);
802 *out++ = 0x80 | (inch & 0x3f);
901 u_int16_t inch; local in function:ucs2char8str
    [all...]
  /src/usr.bin/msgs/
msgs.c 740 char inch; local in function:ask
757 if (((inch = inbuf[0]) == 's' || inch == 'm') && !restricted) {
775 if (inch == 's') {
813 if (inch == 's')
  /src/games/phantasia/
io.c 136 line[loop] = inch();
  /src/games/mille/
init.c 182 if (inch() != 'Y') {
  /src/tests/lib/libcurses/tests/
Makefile 81 FILES+= inch
  /src/tests/lib/libcurses/
t_curses.sh 695 atf_test_case inch
702 h_run inch
2278 atf_add_test_case inch
  /src/tests/lib/libcurses/slave/
curses_commands.c 505 report_byte(inch());

Completed in 18 milliseconds