/src/sys/arch/ia64/ia64/ |
cpu.c | 118 char bitbuf[32]; local in function:identifycpu 199 snprintb(bitbuf, sizeof(bitbuf), IA64_FEATURES_BITMASK, features); 200 aprint_normal_dev(sc->sc_dev, "Features %s\n", bitbuf);
|
/src/common/dist/zlib/contrib/blast/ |
blast.c | 47 int bitbuf; /* bit buffer */ member in struct:state 77 val = s->bitbuf; 89 s->bitbuf = val >> need; 136 int bitbuf; /* bits from stream */ local in function:decode 140 bitbuf = s->bitbuf; 147 code |= (bitbuf & 1) ^ 1; /* invert code */ 148 bitbuf >>= 1; 151 s->bitbuf = bitbuf; [all...] |
/src/common/dist/zlib/contrib/puff/ |
puff.c | 108 int bitbuf; /* bit buffer */ member in struct:state 131 val = s->bitbuf; 140 s->bitbuf = (int)(val >> need); 169 s->bitbuf = 0; 270 int bitbuf; /* bits from stream */ local in function:decode 274 bitbuf = s->bitbuf; 281 code |= bitbuf & 1; 282 bitbuf >>= 1; 285 s->bitbuf = bitbuf [all...] |
/src/sys/dev/ic/ |
i82365.c | 363 char bitbuf[64]; local in function:pcic_power 370 snprintb(bitbuf, sizeof(bitbuf), PCIC_CSC_INTR_FORMAT, 374 device_xname(sc->dev), bitbuf));
|
/src/sys/dev/acpi/ |
apei.c | 373 char bitbuf[1024]; local in function:apei_cper_memory_error_report 381 snprintb(bitbuf, sizeof(bitbuf), 383 aprint_debug_dev(sc->sc_dev, "%s: ValidationBits=%s\n", ctx, bitbuf); 389 snprintb(bitbuf, sizeof(bitbuf), "\177\020" 417 device_printf(sc->sc_dev, "%s: ErrorStatus=%s\n", ctx, bitbuf); 512 char bitbuf[1024]; local in function:apei_cper_pcie_error_report 520 snprintb(bitbuf, sizeof(bitbuf), [all...] |
/src/sbin/nvmectl/ |
bignum.c | 3252 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local in function:basic_exponent_mod 3347 bitbuf = 0; 3386 bitbuf |= (y << (winsize - ++bitcpy)); 3402 if ((err = signed_multiply(&res, &M[bitbuf], &res)) != MP_OKAY) { 3411 bitbuf = 0; 3427 bitbuf <<= 1; 3428 if ((bitbuf & (1 << winsize)) != 0) { 4061 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local in function:fast_exponent_modulo 4173 bitbuf = 0; 4212 bitbuf |= (y << (winsize - ++bitcpy)) [all...] |