Searched refs:bits (Results 126 - 150 of 836) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/gcc/
H A Dbitmap.h39 /* Number of bits in each actual element of a bitmap. */
51 /* Bitmap set element. We use a linked list to hold only the bits that
68 BITMAP_WORD bits[BITMAP_ELEMENT_WORDS]; /* Bits that are set. */ local
104 /* Count the number of bits set in the bitmap. */
197 BITMAP_WORD bits; member in struct:__anon904
230 bi->bits = bi->elt1->bits[bi->word_no];
231 bi->bits >>= start_bit % BITMAP_WORD_BITS;
237 start_bit += !bi->bits;
281 /* If we're at the same index, then we have some intersecting bits
[all...]
H A Dbitmap.c33 bitmap_element bitmap_zero_bits; /* An element of all zero bits. */
100 /* Allocate a bitmap element. The bits are cleared, but nothing else is. */
144 memset (element->bits, 0, sizeof (element->bits));
282 /* Return nonzero if all bits in an element are zero. */
288 return (element->bits[0] | element->bits[1]) == 0;
293 if (element->bits[i] != 0)
407 memcpy (to_elt->bits, from_ptr->bits, sizeo
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/bn/
H A Dbn_rand.c118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
124 if (bits == 0)
130 bytes=(bits+7)/8;
131 bit=(bits-1)%8;
141 /* make a random number and set the top and bottom bits */
211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
213 return bnrand(0, rnd, bits, top, bottom);
216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
218 return bnrand(1, rnd, bits, top, bottom);
222 int BN_bntest_rand(BIGNUM *rnd, int bits, in argument
[all...]
H A Dbn_mpi.c65 int bits; local
70 bits=BN_num_bits(a);
71 num=(bits+7)/8;
72 if (bits > 0)
74 ext=((bits & 0x07) == 0);
/freebsd-10.0-release/lib/msun/src/
H A De_atan2l.c62 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)!=0) || /* x is NaN */
64 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* y is NaN */
66 if (expsignx==BIAS && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0)
71 if(expty==0 && ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)==0) {
80 if(exptx==0 && ((ux.bits.manh&~LDBL_NBIT)|ux.bits
[all...]
H A Ds_cosl.c59 z.bits.sign = 0;
62 if (z.bits.exp == 0)
66 if (z.bits.exp == 32767)
/freebsd-10.0-release/sys/dev/bwi/
H A Dbwimac.h80 #define MOBJ_SETBITS_4(mac, objid, ofs, bits) \
82 MOBJ_READ_4((mac), (objid), (ofs)) | (bits))
83 #define MOBJ_CLRBITS_4(mac, objid, ofs, bits) \
85 MOBJ_READ_4((mac), (objid), (ofs)) & ~(bits))
87 #define MOBJ_FILT_SETBITS_2(mac, objid, ofs, filt, bits) \
89 (MOBJ_READ_2((mac), (objid), (ofs)) & (filt)) | (bits))
95 #define HFLAGS_CLRBITS(mac, bits) \
96 HFLAGS_WRITE((mac), HFLAGS_READ((mac)) | (bits))
97 #define HFLAGS_SETBITS(mac, bits) \
98 HFLAGS_WRITE((mac), HFLAGS_READ((mac)) & ~(bits))
[all...]
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dmep-relocs.pl103 my ($bits, $left, $right, $ci, $c, $cv);
104 $bits = 0;
115 $bits = $cv+1 unless $bits > $cv+1;
122 return ($bits, $left, $right, $mask, $rmask);
133 ($bits, $left, $right, $mask) = mask2shifts ($mask);
134 $bits[$i] = $bits;
142 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask);
164 if ($attrs[$i] !~ /no-overflow/ && $bits[
[all...]
/freebsd-10.0-release/lib/libc/inet/
H A Dinet_cidr_ntop.c44 inet_cidr_ntop_ipv4(const u_char *src, int bits, char *dst, size_t size);
46 inet_cidr_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size);
50 * inet_cidr_ntop(af, src, bits, dst, size)
63 inet_cidr_ntop(int af, const void *src, int bits, char *dst, size_t size) { argument
66 return (inet_cidr_ntop_ipv4(src, bits, dst, size));
68 return (inet_cidr_ntop_ipv6(src, bits, dst, size));
97 * inet_cidr_ntop_ipv4(src, bits, dst, size)
109 inet_cidr_ntop_ipv4(const u_char *src, int bits, char *dst, size_t size) { argument
115 if ((bits < -1) || (bits > 3
153 inet_cidr_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size) argument
[all...]
/freebsd-10.0-release/contrib/binutils/include/opcode/
H A Darc.h41 /* Mask of number of bits necessary to record cpu type. */
44 /* Mask of number of bits necessary to record cpu type + endianness. */
54 int flags; /* various flag bits */
58 /* Return CPU number, given flag bits. */
59 #define ARC_OPCODE_CPU(bits) ((bits) & ARC_MACH_CPU_MASK)
61 /* Return MACH number, given flag bits. */
62 #define ARC_OPCODE_MACH(bits) ((bits) & ARC_MACH_MASK)
109 unsigned char flags; /* various flag bits */
131 unsigned char bits; member in struct:arc_operand
[all...]
/freebsd-10.0-release/contrib/jemalloc/include/jemalloc/internal/
H A Drtree.h38 rtree_t *rtree_new(unsigned bits);
57 /* The least significant bits of the key are ignored. */ \
63 unsigned i, lshift, height, bits; \
69 i++, lshift += bits, node = child) { \
70 bits = rtree->level2bits[i]; \
72 3)) - bits); \
84 bits = rtree->level2bits[i]; \
86 bits); \
129 unsigned i, lshift, height, bits; local
135 i++, lshift += bits, nod
[all...]
/freebsd-10.0-release/contrib/gdtoa/
H A Dg_dfmt.c43 ULong bits[2], *L, sign; local
80 bits[0] = L[_1];
81 bits[1] = L[_0] & 0xfffff;
83 bits[1] |= 0x100000;
93 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dstrtof.c44 ULong bits[1]; local
54 k = strtodg_l(s, sp, fpi, &exp, bits, loc);
62 u.L[0] = (bits[0] & 0x7fffff) | ((exp + 0x7f + 23) << 23);
67 u.L[0] = bits[0] | 0x7fc00000;
71 u.L[0] = bits[0];
/freebsd-10.0-release/lib/libc/gen/
H A Dsetmode.c60 mode_t bits; member in struct:bitcmd
79 * bits) followed by a '+' (set bits).
92 * When copying the user, group or other bits around, we "know"
93 * where the bits are in the mode so that we can do shifts to
111 newmode &= ~((clrval<<6) & set->bits);
113 newmode &= ~((clrval<<3) & set->bits);
115 newmode &= ~(clrval & set->bits);
119 newmode |= (value<<6) & set->bits;
121 newmode |= (value<<3) & set->bits;
[all...]
/freebsd-10.0-release/sys/crypto/rijndael/
H A Drijndael-api.c40 rijndael_set_key(rijndael_ctx *ctx, const u_char *key, int bits) argument
43 ctx->Nr = rijndaelKeySetupEnc(ctx->ek, key, bits);
44 rijndaelKeySetupDec(ctx->dk, key, bits);
/freebsd-10.0-release/crypto/openssl/crypto/whrlpool/
H A Dwp_dgst.c85 void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c,const void *_inp,size_t bits) argument
90 inpgap = (8-(unsigned int)bits%8)&7;
96 c->bitlen[0] += bits;
97 if (c->bitlen[0] < bits) /* overflow */
109 while (bits)
111 if (bitoff==0 && (n=bits/WHIRLPOOL_BBLOCK))
115 bits %= WHIRLPOOL_BBLOCK;
122 if (bits >= bitrem)
124 bits -= bitrem;
133 memcpy(c->data+byteoff,inp,bits/
[all...]
/freebsd-10.0-release/lib/libc/gdtoa/
H A D_hldtoa.c89 *sign = u.bits.sign;
93 *decpt = u.bits.exp - LDBL_ADJ;
103 *decpt = u.bits.exp - (514 + LDBL_ADJ);
130 float redux = one[u.bits.sign];
135 u.bits.exp = offset;
138 *decpt += u.bits.exp - offset;
145 manh = u.bits.manh;
146 manl = u.bits.manl;
/freebsd-10.0-release/lib/libc/softfloat/
H A DMakefile.inc6 ${.CURDIR}/softfloat/bits${SOFTFLOAT_BITS} ${.CURDIR}/softfloat
/freebsd-10.0-release/lib/libiconv_modules/UTF7/
H A Dcitrus_utf7.c64 bits: 4, /* need to hold 0 - 15 */ member in struct:__anon5584
177 if (psenc->bits > 0 || psenc->cache > 0)
197 if (psenc->bits >= BASE64_BIT)
200 psenc->bits = psenc->cache = 0;
213 switch (psenc->bits) {
215 psenc->bits += BASE64_BIT;
218 psenc->bits -= (UTF16_BIT - BASE64_BIT);
219 *u16 = (psenc->cache >> psenc->bits) &
259 hi = (psenc->cache >> psenc->bits) & UTF16_MAX;
308 int bits, local
395 int bits, pos; local
[all...]
/freebsd-10.0-release/sys/ia64/include/
H A Drunq.h47 __popcnt(uint64_t bits) argument
51 __asm __volatile("popcnt %0=%1" : "=r" (result) : "r" (bits));
/freebsd-10.0-release/sys/ofed/include/linux/
H A Dtypes.h56 #define DECLARE_BITMAP(n, bits) \
57 unsigned long n[howmany(bits, sizeof(long) * 8)]
/freebsd-10.0-release/lib/libz/
H A Dinfback.c92 unsigned sym, bits; local
103 bits = 9;
104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
110 bits = 5;
111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
135 bits = state->bits; \
146 state->bits = bits; \
153 bits
262 unsigned bits; /* bits in bit buffer */ local
[all...]
/freebsd-10.0-release/contrib/gcc/config/soft-fp/
H A Dextended.h82 } bits __attribute__((packed)); member in union:_FP_UNION_E
93 X##_f[0] = _flo.bits.frac0; \
94 X##_f[1] = _flo.bits.frac1; \
95 X##_e = _flo.bits.exp; \
96 X##_s = _flo.bits.sign; \
105 X##_f[0] = _flo->bits.frac0; \
106 X##_f[1] = _flo->bits.frac1; \
107 X##_e = _flo->bits.exp; \
108 X##_s = _flo->bits.sign; \
117 _flo.bits
277 } bits; member in union:_FP_UNION_E
[all...]
/freebsd-10.0-release/contrib/apr/misc/unix/
H A Drandbyte_os2.inc71 ULONG ulTimeLow; /* Low 32 bits of time stamp */
72 ULONG ulTimeHigh; /* High 32 bits of time stamp */
73 ULONG ulIdleLow; /* Low 32 bits of idle time */
74 ULONG ulIdleHigh; /* High 32 bits of idle time */
75 ULONG ulBusyLow; /* Low 32 bits of busy time */
76 ULONG ulBusyHigh; /* High 32 bits of busy time */
77 ULONG ulIntrLow; /* Low 32 bits of interrupt time */
78 ULONG ulIntrHigh; /* High 32 bits of interrupt time */
/freebsd-10.0-release/contrib/binutils/opcodes/
H A Dia64-asmtab.h44 /* The mask of valid bits in OPCODE. Zeros indicate operand fields. */
64 The completer entries modify certain bits in the instruction opcode.
65 Which bits are to be modified are marked by the BITS, MASK and
92 unsigned int bits; member in struct:ia64_completer_table
94 /* And its mask. 1s are bits that are to be modified in the
131 bits.

Completed in 178 milliseconds

1234567891011>>