| /openbsd-src/sys/dev/microcode/aic7xxx/ |
| H A D | aicasm_insformat.h | 53 parity : 1; member 55 uint32_t parity : 1, 71 parity : 1; member 73 uint32_t parity : 1, 88 parity : 1; member 90 uint32_t parity : 1,
|
| H A D | aicasm_gram.y | 1636 f1_instr->parity = 1; in format_1_instr() 1776 f3_instr->parity = 1; in format_3_instr()
|
| H A D | aic7xxx.seq | 618 /* XXX Watch for ATN or parity errors??? */ 705 * parity problems. 1622 * Perhaps there was a parity error on this last message byte. 1706 * Perhaps there was a parity error on this last message byte 1985 * If there is a parity error, wait for the kernel to 2116 * If there is a parity error, wait for the kernel to
|
| /openbsd-src/sys/dev/gpio/ |
| H A D | gpiodcf.c | 341 u_int32_t parity = 0x6996; in gpiodcf_mg_probe() local 374 p1 = (parity >> (minute_bits & 0x0f) & 1) ^ in gpiodcf_mg_probe() 375 (parity >> (minute_bits >> 4) & 1); in gpiodcf_mg_probe() 377 p2 = (parity >> (hour_bits & 0x0f) & 1) ^ in gpiodcf_mg_probe() 378 (parity >> (hour_bits >> 4) & 1); in gpiodcf_mg_probe() 380 p3 = (parity >> (day_bits & 0x0f) & 1) ^ in gpiodcf_mg_probe() 381 (parity >> (day_bits >> 4) & 1) ^ in gpiodcf_mg_probe() 382 ((parity >> wday) & 1) ^ (parity >> (month_bits & 0x0f) & 1) ^ in gpiodcf_mg_probe() 383 (parity >> (month_bits >> 4) & 1) ^ in gpiodcf_mg_probe() 384 (parity >> (year_bits & 0x0f) & 1) ^ in gpiodcf_mg_probe() [all …]
|
| /openbsd-src/sys/dev/usb/ |
| H A D | udcf.c | 505 u_int32_t parity = 0x6996; in udcf_mg_probe() local 538 p1 = (parity >> (minute_bits & 0x0f) & 1) ^ in udcf_mg_probe() 539 (parity >> (minute_bits >> 4) & 1); in udcf_mg_probe() 541 p2 = (parity >> (hour_bits & 0x0f) & 1) ^ in udcf_mg_probe() 542 (parity >> (hour_bits >> 4) & 1); in udcf_mg_probe() 544 p3 = (parity >> (day_bits & 0x0f) & 1) ^ in udcf_mg_probe() 545 (parity >> (day_bits >> 4) & 1) ^ in udcf_mg_probe() 546 ((parity >> wday) & 1) ^ (parity >> (month_bits & 0x0f) & 1) ^ in udcf_mg_probe() 547 (parity >> (month_bits >> 4) & 1) ^ in udcf_mg_probe() 548 (parity >> (year_bits & 0x0f) & 1) ^ in udcf_mg_probe() [all …]
|
| H A D | uslhcom.c | 307 config->parity = UART_CONFIG_PARITY_ODD; in uslhcom_create_config() 309 config->parity = UART_CONFIG_PARITY_EVEN; in uslhcom_create_config() 311 config->parity = UART_CONFIG_PARITY_NONE; in uslhcom_create_config() 435 config.parity = UART_CONFIG_PARITY_NONE; in uslhcom_open()
|
| H A D | uslhcomreg.h | 70 u_char parity; member
|
| /openbsd-src/sys/dev/ |
| H A D | softraid_raid5.c | 380 int64_t parity, row_size; in sr_raid5_rw() local 428 parity = no_chunk - ((strip_no / no_chunk) % (no_chunk + 1)); in sr_raid5_rw() 429 if (chunk >= parity) in sr_raid5_rw() 466 if (sr_raid5_write(wu, wu_r, chunk, parity, lba, in sr_raid5_rw() 541 int parity, daddr_t blkno, long len, void *data, int xsflags, in sr_raid5_write() argument 585 chunk, parity, (unsigned long long)blkno); in sr_raid5_write() 589 parity_online = sr_raid5_chunk_online(sd, parity); in sr_raid5_write() 590 parity_rebuild = sr_raid5_chunk_rebuild(sd, parity); in sr_raid5_write() 593 if (i == chunk || i == parity) in sr_raid5_write() 624 if (sr_raid5_addio(wu_r, parity, blkno, len, NULL, in sr_raid5_write() [all …]
|
| /openbsd-src/sbin/ldattach/ |
| H A D | ldattach.c | 119 int bits = 0, parity = 0, stop = 0, flowcl = 0, hupcl = 1; in main() local 140 parity = 'e'; in main() 149 parity = 'o'; in main() 238 if (parity != 0) in main() 240 if (parity == 'o') in main()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Memoize/t/ |
| H A D | normalize.t | 33 sub parity { $COUNT++; $_[0] % 2 } 35 memoize('parity', NORMALIZER => 'main::parnorm'); 36 is_deeply [map parity($_), @ARGS], [qw(1 0 1 0 1)], 'parity normalizer';
|
| /openbsd-src/sys/arch/hppa/stand/libsa/ |
| H A D | cmd_hppa.c | 168 int port, mode, speed, parity, bits; in print_console() local 240 parity = PZL_PARITY(sstor.ss_console.dp_layers[0]); in print_console() 241 printf(".%s", parities[parity]); in print_console() 318 int speed, parity, bits; local 374 parity = 0; /* none */ 376 parity = -1; 379 parity = i; 382 if (parity == 2) 383 parity = -1; /* unknown parity */ 385 if (parity < 0) { [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Host/common/ |
| H A D | Terminal.cpp | 324 llvm::Error Terminal::SetParity(Terminal::Parity parity) { in SetParity() argument 337 if (parity != Parity::No) { in SetParity() 339 if (parity == Parity::Odd || parity == Parity::Mark) in SetParity() 341 if (parity == Parity::Mark || parity == Parity::Space) { in SetParity()
|
| /openbsd-src/sys/net/ |
| H A D | toeplitz.c | 74 parity(uint16_t n16) in parity() function 94 if (parity(seed) == 0) in stoeplitz_random_seed()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Host/ |
| H A D | Terminal.h | 66 llvm::Error SetParity(Parity parity);
|
| /openbsd-src/sys/arch/hppa/include/ |
| H A D | pdc.h | 667 #define PZL_ENCODE(bits, parity, speed) \ argument 668 (((bits) - 5) & 0x03) | (((parity) & 0x3) << 3) | \
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | libgcc2.h | 308 #define __paritySI2 __NW(parity,2) 313 #define __parityDI2 __NDW(parity,2)
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/nlm/ |
| H A D | gdbserve.c | 783 char parity[] = "NOEMS"; variable 936 parity[portConfig.parityMode], in main()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-mt/ |
| H A D | Opts.td | 13 …], "nologo">, HelpText<"No effect as this tool never writes copyright data. Included for parity">;
|
| /openbsd-src/sys/dev/pckbc/ |
| H A D | pms.c | 140 u_char parity[256]; member 2088 for (i = 0; i < nitems(sc->elantech->parity); i++) in pms_enable_elantech_v1() 2089 sc->elantech->parity[i] = sc->elantech->parity[i & (i - 1)] ^ 1; in pms_enable_elantech_v1() 2305 if (data < 0 || data >= nitems(elantech->parity) || in pms_sync_elantech_v1() 2307 * FW 0x20022 sends inverted parity bits on cold boot, returning in pms_sync_elantech_v1() 2308 * to normal after suspend & resume, so the parity check is in pms_sync_elantech_v1() 2311 (elantech->fw_version != 0x20022 && elantech->parity[data] != p))
|
| /openbsd-src/gnu/llvm/lld/docs/ |
| H A D | windows_support.rst | 59 :good:`Done`. LLD can emit PDBs that are at parity with those generated by
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/builtins/ |
| H A D | README.txt | 57 int __paritysi2(si_int a); // bit parity 58 int __paritydi2(di_int a); // bit parity 59 int __parityti2(ti_int a); // bit parity
|
| /openbsd-src/sys/arch/arm64/stand/efiboot/ |
| H A D | efiacpi.c | 329 uint8_t parity; member
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Term-ReadKey/ |
| H A D | README | 94 disabled, 8-bit mode enabled if parity permits, and CR to CR/LF
|
| /openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
| H A D | README-TestSuite | 101 Version 0.5.1 of unittest2 has feature parity with unittest in Python 2.7
|
| /openbsd-src/sys/dev/acpi/ |
| H A D | acpireg.h | 440 uint8_t parity; member
|