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

/freebsd-12-stable/gnu/usr.bin/binutils/ld/
H A DMakefile.sparc6415 .for BITS in 64 32
17 EMS+= elf${BITS}_sparc
19 LDSCRIPTS+= elf${BITS}_sparc.${ext}
20 ldscripts/elf${BITS}_sparc.${ext}: eelf${BITS}_sparc.c
23 SRCS+= eelf${BITS}_sparc.c
24 CLEANFILES+= eelf${BITS}_sparc.c
25 eelf${BITS}_sparc.c: emulparams/elf${BITS}_sparc.sh emultempl/elf32.em \
30 elf${BITS}_spar
[all...]
/freebsd-12-stable/sys/dev/etherswitch/arswitch/
H A Darswitchreg.h46 #define BITS(_shift, _count) (BITM(_count) << (_shift)) macro
91 #define AR8X16_REG_SW_MAC_ADDR0_BYTE4 BITS(8, 8)
93 #define AR8X16_REG_SW_MAC_ADDR0_BYTE5 BITS(0, 8)
97 #define AR8X16_REG_SW_MAC_ADDR1_BYTE0 BITS(24, 8)
99 #define AR8X16_REG_SW_MAC_ADDR1_BYTE1 BITS(16, 8)
101 #define AR8X16_REG_SW_MAC_ADDR1_BYTE2 BITS(8, 8)
103 #define AR8X16_REG_SW_MAC_ADDR1_BYTE3 BITS(0, 8)
143 #define AR8216_ATU_OP BITS(0, 3)
152 #define AR8216_ATU_PORT_NUM BITS(8, 4)
155 #define AR8216_ATU_ADDR5 BITS(1
[all...]
/freebsd-12-stable/contrib/unbound/smallapp/
H A Dunbound-control-setup.sh49 BITS=3072
100 openssl genrsa -out $SVR_BASE.key $BITS || error "could not genrsa"
106 openssl genrsa -out $CTL_BASE.key $BITS || error "could not genrsa"
111 echo "default_bits=$BITS" >> request.cfg
128 echo "default_bits=$BITS" >> request.cfg
H A Dunbound-control-setup.sh.in49 BITS=3072
119 openssl genrsa -out "$SVR_BASE.key" "$BITS"
124 default_bits=$BITS
157 openssl genrsa -out "$CTL_BASE.key" "$BITS"
162 default_bits=$BITS
/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_atomic.cpp771 // BITS - size in bits, used to distinguish low level calls
773 #define OP_CMPXCHG(TYPE, BITS, OP) \
778 while (!KMP_COMPARE_AND_STORE_ACQ##BITS( \
779 (kmp_int##BITS *)lhs, *VOLATILE_CAST(kmp_int##BITS *) & old_value, \
780 *VOLATILE_CAST(kmp_int##BITS *) & new_value)) { \
795 #define OP_CMPXCHG_WORKAROUND(TYPE, BITS, OP) \
799 kmp_int##BITS *vvv; \
802 old_value.vvv = (kmp_int##BITS *)&old_value.cmp; \
803 new_value.vvv = (kmp_int##BITS *)
[all...]
/freebsd-12-stable/sys/contrib/zlib/
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.c523 #define BITS(n) \ macro
560 the requested bits are not available. The typical use of the BITS macros
564 ... do something with BITS(n) ...
568 input left to load n bits into the accumulator, or it continues. BITS(n)
573 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
589 keep[want++] = BITS(n);
680 ((BITS(8) << 8) + (hold >> 8)) % 31) {
685 if (BITS(4) != Z_DEFLATED) {
691 len = BITS(4) + 8;
858 state->last = BITS(
[all...]
/freebsd-12-stable/usr.bin/systat/
H A Dconvtbl.c39 #define BITS (1) macro
67 [SC_BIT] = { BIT, BITS, "b", "bit" },
/freebsd-12-stable/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-12-stable/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-12-stable/contrib/ntp/libparse/
H A Dclk_rawdcf.c409 #define BITS 9 macro
410 unsigned char histbuf[BITS];
420 for (i = 0; i < BITS; i++)
493 for (; i < BITS; i++)
507 highmax = BITS-1;
/freebsd-12-stable/usr.bin/gzip/
H A Dzuncompress.c47 #define de_stack ((char_type *)&tab_suffixof(1 << BITS))
49 #define BITS 16 /* Default bits. */ macro
112 char_type zs_buf[BITS];
125 char_type zs_gbuf[BITS];
251 if (zs->zs_maxbits > BITS || zs->zs_maxbits < 12) {
294 * bound by 1 << BITS - 256.
/freebsd-12-stable/usr.bin/compress/
H A Dzopen.c77 #define BITS 16 /* Default bits. */ macro
80 /* A code_int must be able to hold 2**BITS values of type int, and also -1. */
125 char_type zs_buf[BITS];
138 char_type zs_gbuf[BITS];
180 * the codetab. The tab_suffix table needs 2**BITS characters. We get this
191 #define de_stack ((char_type *)&tab_suffixof(1 << BITS))
359 * Maintain a BITS character long buffer (so that 8 codes will
491 if (maxbits > BITS || maxbits < 12) {
538 * bound by 1 << BITS - 256.
700 bits < 0 || bits > BITS) {
[all...]
/freebsd-12-stable/crypto/openssl/crypto/bn/asm/
H A Dppc.pl109 $BITS= 32;
110 $BNSZ= $BITS/8;
132 $BITS= 64;
133 $BNSZ= $BITS/8;
1645 li r8,$BITS
1664 $SHRI r9,r5,`$BITS/2` # r9 = dh
1670 $SHRI r8,r3,`$BITS/2` #r8 = (h>>BN_BITS4)
1671 $SHRI r11,r4,`$BITS/2` #r11= (l&BN_MASK2h)>>BN_BITS4
1677 $CLRU r8,r8,`$BITS/2` #q = BN_MASK2l
1683 $CLRU r10,r5,`$BITS/
[all...]
H A Dppc-mont.pl47 $BITS= 32;
48 $BNSZ= $BITS/8;
67 $BITS= 64;
68 $BNSZ= $BITS/8;
1429 $SHRI $t1,$t1,$BITS-1
1434 $SHRI $t2,$t2,$BITS-1
1436 $SHRI $t3,$t3,$BITS-1
1447 $SHRI $t0,$t0,$BITS-1
1453 $SHRI $t1,$t1,$BITS-1
1460 $SHRI $t2,$t2,$BITS
[all...]
/freebsd-12-stable/crypto/openssl/crypto/sha/asm/
H A Dsha512-ia64.pl82 $BITS=8*$SZ;
96 $BITS=8*$SZ;
179 $code.=<<___ if ($BITS==64);
210 $t0="A", $t1="E", $code.=<<___ if ($BITS==64);
458 $t0="t0", $t1="t1", $code.=<<___ if ($BITS==32);
532 $t0="t0", $t1="t1", $code.=<<___ if ($BITS==32);
548 $t0="A", $t1="E", $code.=<<___ if ($BITS==64);
614 if ($BITS==64) {
625 print<<___ if ($BITS==32);
647 print<<___ if ($BITS
[all...]
H A Dsha512-armv8.pl72 $BITS=512;
81 $BITS=256;
91 $func="sha${BITS}_block_data_order";
239 adr $Ktbl,.LK$BITS
290 .type .LK$BITS,%object
291 .LK$BITS:
356 .size .LK$BITS,.-.LK$BITS
366 .asciz "SHA$BITS block transform for ARMv8, CRYPTOGAMS by <appro\@openssl.org>"
/freebsd-12-stable/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-12-stable/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-12-stable/crypto/openssl/crypto/aes/asm/
H A Daes-c64xplus.pl526 .asg OUT,BITS
533 || SHRU BITS,5,BITS ; 128-192-256 -> 4-6-8
544 || [A0] CMPEQ 4,BITS,B0
545 || [A0] CMPLT 3,BITS,A1
548 || [A0] CMPEQ 6,BITS,B0
549 || [A0] CMPLT 5,BITS,A1
552 || [A0] CMPEQ 8,BITS,B0
553 || [A0] CMPLT 7,BITS,A1
/freebsd-12-stable/crypto/openssl/apps/
H A Dreq.c37 #define BITS "default_bits" macro
575 if (!NCONF_get_number(req_conf, SECTION, BITS, &newkey)) {

Completed in 165 milliseconds