HomeSort by: relevance | last modified time | path
    Searched defs:outch (Results 1 - 3 of 3) sorted by relevancy

  /src/games/hunt/huntd/
terminal.c 58 * outch:
62 outch(PLAYER *pp, int ch) function in typeref:typename:void
  /src/lib/libc/gen/
shquote.c 91 #define XLATE_OUTCH(x) wcrtomb(outch, (x), &mbso)
99 #define XLATE_OUTCH(x) (outch[0] = (x), 1)
116 outch[outchlen - 1] != '\0')) { \
120 memcpy(buf, outch, outchlen); \
131 char outch[MB_LEN_MAX]; local in function:__weak_alias
136 char outch[1];
  /src/sys/fs/msdosfs/
msdosfs_conv.c 817 uint16_t outch; local in function:utf8ucs2
822 outch = in[0];
824 *out = htole16(outch);
828 outch = (in[0] & 0x1f) << 6 | (in[1] & 0x3f);
830 *out = htole16(outch);
834 outch = (in[0] & 0x1f) << 12 | (in[1] & 0x3f) << 6 | (in[2] & 0x3f);
836 *out = htole16(outch);

Completed in 15 milliseconds