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

  /src/usr.bin/locate/locate/
locate.h 38 #define PARITY 0200 /* parity bit */
locate.c 209 if (c < PARITY)
211 else { /* bigrams are parity-marked */
212 c &= PARITY - 1;
  /src/usr.bin/locate/code/
locate.code.c 138 *cp &= PARITY-1;
169 /* Found, so mark byte with parity bit. */
170 if (putchar((code / 2) | PARITY) == EOF)
  /src/usr.bin/tip/
tip.c 229 setparity("none"); /* set the parity table */
586 * Do a write to the remote machine with the correct parity.
588 * with the right parity and output it.
611 * Build a parity table with appropriate high-order bit.
617 const char *parity; local
620 if (value(PARITY) == NULL || ((char *)value(PARITY))[0] == '\0') {
623 value(PARITY) = curpar = strdup(defparity);
625 parity = value(PARITY);
    [all...]
tip.h 71 extern char *PA; /* parity to be generated */
223 #define PARITY 31
cmds.c 772 if (vtable[PARITY].v_access&CHANGED) {
773 vtable[PARITY].v_access &= ~CHANGED;
  /src/common/lib/libx86emu/
x86emu.c 5772 #define PARITY(x) (((x86emu_parity_tab[(x) / 32] >> ((x) % 32)) & 1) == 0)
5795 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF);
5818 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF);
5840 CONDITIONAL_SET_FLAG(PARITY(l & 0xff), F_PF);
5861 CONDITIONAL_SET_FLAG(PARITY(l & 0xff), F_PF);
5882 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF);
5908 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF);
5940 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF);
5962 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF);
5984 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF)
    [all...]
  /src/sys/arch/luna68k/dev/
xpbus.c 72 #define PARITY 6 /* PC6 output to enable parity error */
  /src/sys/kern/
tty.c 133 * Table with character classes and parity. The 8th bit indicates parity,
139 #define E 0x00 /* Even parity. */
140 #define O 0x80 /* Odd parity. */
141 #define PARITY(c) (char_type[c] & O)
608 * Handle exceptional conditions (break, parity, framing).

Completed in 25 milliseconds