Searched refs:BITS (Results 1 - 17 of 17) sorted by relevance

/freebsd-10.1-release/contrib/unbound/smallapp/
H A Dunbound-control-setup.sh50 BITS=1536
101 openssl genrsa -out $SVR_BASE.key $BITS || error "could not genrsa"
107 openssl genrsa -out $CTL_BASE.key $BITS || error "could not genrsa"
113 default_bits=$BITS
131 default_bits=$BITS
H A Dunbound-control-setup.sh.in50 BITS=1536
101 openssl genrsa -out $SVR_BASE.key $BITS || error "could not genrsa"
107 openssl genrsa -out $CTL_BASE.key $BITS || error "could not genrsa"
113 default_bits=$BITS
131 default_bits=$BITS
/freebsd-10.1-release/sys/dev/etherswitch/arswitch/
H A Darswitchreg.h298 #define BITS(_shift, _count) (BITM(_count) << _shift) macro
315 #define AR934X_AT_CTRL_AGE_TIME BITS(0, 15)
370 #define AR8327_PAD_RGMII_RXCLK_DELAY_SEL BITS(20, 2)
372 #define AR8327_PAD_RGMII_TXCLK_DELAY_SEL BITS(22, 2)
405 #define AR8327_MAX_FRAME_SIZE_MTU BITS(0, 14)
418 #define AR8327_PORT_VLAN0_DEF_SVID BITS(0, 12)
420 #define AR8327_PORT_VLAN0_DEF_CVID BITS(16, 12)
425 #define AR8327_PORT_VLAN1_OUT_MODE BITS(12, 2)
437 #define AR8327_ATU_FUNC_OP BITS(0, 4)
450 #define AR8327_VTU_FUNC0_EG_MODE BITS(
[all...]
/freebsd-10.1-release/lib/libz/
H A Dinfback.c190 #define BITS(n) \ macro
300 state->last = BITS(1);
302 switch (BITS(2)) {
361 state->nlen = BITS(5) + 257;
363 state->ndist = BITS(5) + 1;
365 state->ncode = BITS(4) + 4;
380 state->lens[order[state->have++]] = (unsigned short)BITS(3);
401 here = state->lencode[BITS(state->lenbits)];
419 copy = 3 + BITS(2);
426 copy = 3 + BITS(
[all...]
H A Dinflate.c506 #define BITS(n) \ macro
543 the requested bits are not available. The typical use of the BITS macros
547 ... do something with BITS(n) ...
551 input left to load n bits into the accumulator, or it continues. BITS(n)
556 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
572 keep[want++] = BITS(n);
661 ((BITS(8) << 8) + (hold >> 8)) % 31) {
666 if (BITS(4) != Z_DEFLATED) {
672 len = BITS(4) + 8;
835 state->last = BITS(
[all...]
/freebsd-10.1-release/usr.bin/systat/
H A Dconvtbl.c37 #define BITS (1) macro
65 [SC_BIT] = { BIT, BITS, "b", "bit" },
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinflate.c457 #define BITS(n) \ macro
499 the requested bits are not available. The typical use of the BITS macros
503 ... do something with BITS(n) ...
507 input left to load n bits into the accumulator, or it continues. BITS(n)
512 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
528 keep[want++] = BITS(n);
617 ((BITS(8) << 8) + (hold >> 8)) % 31) {
622 if (BITS(4) != Z_DEFLATED) {
628 len = BITS(4) + 8;
799 state->last = BITS(
[all...]
/freebsd-10.1-release/contrib/binutils/opcodes/
H A Darc-dis.c61 #define BITS(word,s,e) (((word) << (31 - e)) >> (s + (31 - e))) macro
62 #define OPCODE(word) (BITS ((word), 27, 31))
63 #define FIELDA(word) (BITS ((word), 21, 26))
64 #define FIELDB(word) (BITS ((word), 15, 20))
65 #define FIELDC(word) (BITS ((word), 9, 14))
69 #define FIELDD(word) (BITS (((signed int)word), 0, 8))
86 state->nullifyMode = BITS (state->words[0], 5, 6); \
87 cond = BITS (state->words[0], 0, 4); \
96 cond = BITS (state->words[0], 0, 4); \
579 switch (BITS (stat
[all...]
/freebsd-10.1-release/usr.bin/gzip/
H A Dzuncompress.c45 #define de_stack ((char_type *)&tab_suffixof(1 << BITS))
47 #define BITS 16 /* Default bits. */ macro
110 char_type zs_buf[BITS];
123 char_type zs_gbuf[BITS];
249 if (zs->zs_maxbits > BITS || zs->zs_maxbits < 12) {
292 * bound by 1 << BITS - 256.
/freebsd-10.1-release/contrib/ntp/libparse/
H A Dclk_rawdcf.c354 #define BITS 9 macro
355 unsigned char histbuf[BITS];
365 for (i = 0; i < BITS; i++)
438 for (; i < BITS; i++)
452 highmax = BITS-1;
/freebsd-10.1-release/usr.bin/compress/
H A Dzopen.c75 #define BITS 16 /* Default bits. */ macro
78 /* A code_int must be able to hold 2**BITS values of type int, and also -1. */
123 char_type zs_buf[BITS];
136 char_type zs_gbuf[BITS];
178 * the codetab. The tab_suffix table needs 2**BITS characters. We get this
189 #define de_stack ((char_type *)&tab_suffixof(1 << BITS))
357 * Maintain a BITS character long buffer (so that 8 codes will
489 if (maxbits > BITS || maxbits < 12) {
536 * bound by 1 << BITS - 256.
698 bits < 0 || bits > BITS) {
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/bn/asm/
H A Dppc-mont.pl30 $BITS= 32;
31 $BNSZ= $BITS/8;
49 $BITS= 64;
50 $BNSZ= $BITS/8;
H A Dppc.pl106 $BITS= 32;
107 $BNSZ= $BITS/8;
129 $BITS= 64;
130 $BNSZ= $BITS/8;
1635 li r8,$BITS
1654 $SHRI r9,r5,`$BITS/2` # r9 = dh
1660 $SHRI r8,r3,`$BITS/2` #r8 = (h>>BN_BITS4)
1661 $SHRI r11,r4,`$BITS/2` #r11= (l&BN_MASK2h)>>BN_BITS4
1667 $CLRU r8,r8,`$BITS/2` #q = BN_MASK2l
1673 $CLRU r10,r5,`$BITS/
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/sha/asm/
H A Dsha512-ia64.pl69 $BITS=8*$SZ;
83 $BITS=8*$SZ;
169 $code.=<<___ if ($BITS==64);
197 $t0="t0", $t1="t1", $code.=<<___ if ($BITS==32);
224 $t0="A", $t1="E", $code.=<<___ if ($BITS==64);
507 $t0="t0", $t1="t1", $code.=<<___ if ($BITS==32);
524 $t0="A", $t1="E", $code.=<<___ if ($BITS==64);
595 if ($BITS==64) {
605 print<<___ if ($BITS==32);
627 print<<___ if ($BITS
[all...]
/freebsd-10.1-release/contrib/ntp/parseutil/
H A Ddcfd.c537 #define BITS 9 macro
538 unsigned char histbuf[BITS];
560 for (i = 0; i < BITS; i++)
661 for (; i < BITS; i++)
678 highmax = BITS-1;
/freebsd-10.1-release/contrib/ipfilter/
H A DMakefile116 "BITS=$(BITS)" "OBJ=$(OBJ)" "LOOKUP=$(LOOKUP)" "COMPIPF=$(COMPIPF)" \
264 (cd AIX/`AIX/cpurev`; make build AIX=`uname -v` TOP=../.. "DEBUG=-g" $(MFLAGS) "OSREV=`../cpurev`" BITS=`../bootbits.sh`; cd ..)
304 (cd HPUX; $(MAKE) BITS=32 TOP=.. clean)
321 (cd HPUX; $(MAKE) BITS=32 clean)
348 (cd HPUX/`HPUX/cpurev`; $(MAKE) build TOP=../.. $(DEST) $(MFLAGS) "BITS=`getconf KERNEL_BITS`" `../makeargs`; cd ..)
349 (cd HPUX/`HPUX/cpurev`; $(MAKE) -f Makefile.ipsend build TOP=../.. $(DEST) $(MFLAGS) "BITS=`getconf KERNEL_BITS`" `../makeargs`; cd ..)
382 (cd HPUX/`HPUX/cpurev`; $(MAKE) CPU=$(CPU) TOP=../.. "BITS=`getconf KERNEL_BITS`" install)
/freebsd-10.1-release/crypto/openssl/apps/
H A Dreq.c94 #define BITS "default_bits" macro
625 if (!NCONF_get_number(req_conf, SECTION, BITS, &newkey)) {

Completed in 139 milliseconds