Searched refs:bits (Results 76 - 100 of 954) sorted by relevance

1234567891011>>

/macosx-10.10.1/sudo-73/src/zlib/
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...]
H A Dinftrees.c23 whose indices are 0..2^bits-1. work is a writable array of at least
27 on return points to the next available entry's address. bits is the
28 requested root table index bits, and on return it is the actual root
29 table index bits. It will differ if the request is greater than the
32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work)
37 unsigned FAR *bits;
40 unsigned len; /* a code's length in bits */
43 unsigned root; /* number of index bits for root table */
44 unsigned curr; /* number of index bits for current table */
45 unsigned drop; /* code bits t
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dumask.c158 int who, op, perm, bits, c; local
161 for (s = mode, bits = initial_bits;;)
229 bits |= perm;
232 bits &= ~perm;
237 bits &= ~who;
238 bits |= perm;
256 return (bits);
266 int um, bits; local
275 bits = parse_symbolic_mode (list->word->word, ~um & 0777);
276 if (bits
[all...]
/macosx-10.10.1/rsync-45/rsync/
H A Daccess.c68 long int bits; local
70 int bits; local
163 bits = -1;
173 bits = strtol(p, &ep, 10);
187 bits = atoi(p);
189 if (bits == 0) {
193 if (bits < 0 || bits > (addrlen << 3)) {
200 bits = 128;
203 if (bits >
[all...]
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DBitVector.h41 // of bits.
43 // - The bitvector remembers the bound of how many bits can be stored, but this
117 return !!(bits()[bit / bitsInPointer()] & (static_cast<uintptr_t>(1) << (bit & (bitsInPointer() - 1))));
123 bits()[bit / bitsInPointer()] |= (static_cast<uintptr_t>(1) << (bit & (bitsInPointer() - 1)));
129 bits()[bit / bitsInPointer()] &= ~(static_cast<uintptr_t>(1) << (bit & (bitsInPointer() - 1)));
242 // bits and then compute the hash. This makes it very easy to deal with bitvectors
268 static uintptr_t makeInlineBits(uintptr_t bits)
270 ASSERT(!(bits & (static_cast<uintptr_t>(1) << maxInlineBits())));
271 return bits | (static_cast<uintptr_t>(1) << maxInlineBits());
274 static uintptr_t cleanseInlineBits(uintptr_t bits)
[all...]
H A DBitmap.h70 std::array<WordType, words> bits; member in class:WTF::Bitmap
82 return !!(bits[n / wordSize] & (one << (n % wordSize)));
88 bits[n / wordSize] |= (one << (n % wordSize));
96 bool result = bits[index] & mask;
97 bits[index] |= mask;
106 bool result = bits[index] & mask;
107 bits[index] &= ~mask;
121 WordType* wordPtr = bits.data() + index;
141 WordType* wordPtr = bits.data() + index;
154 bits[
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/commpage/
H A Dcommpage.c205 uint64_t bits; local
209 bits = 0;
214 bits |= kHasAVX1_0;
217 bits |= kHasSSE4_2;
220 bits |= kHasSSE4_1;
223 bits |= kHasSupplementalSSE3;
226 bits |= kHasSSE3;
229 bits |= kHasSSE2;
232 bits |= kHasSSE;
235 bits |
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/
H A Dcamellia.h57 unsigned int bits; member in struct:camellia_key
/macosx-10.10.1/Libc-1044.1.2/gdtoa/FreeBSD/
H A Dgdtoa-strtof.c44 ULong bits[1]; local
55 k = strtodg(s, sp, fpi, &exp, bits, loc);
67 u.L[0] = (bits[0] & 0x7fffff) | ((exp + 0x7f + 23) << 23);
71 u.L[0] = bits[0];
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/hashTime/
H A DMD5.h47 uint32 bits[2]; // bits[0] is low 32 bits of bit count member in struct:MD5Context
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/hashTimeSA/
H A DMD5.h47 uint32 bits[2]; // bits[0] is low 32 bits of bit count member in struct:MD5Context
/macosx-10.10.1/apr-32/apr/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 */
/macosx-10.10.1/cxxfilt-11/cxxfilt/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.
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/base32/
H A Dbase32_tcl.tcl10 # A binary string is split into groups of 5 bits (2^5 == 32), and each
26 binary scan $bitstring B* bits
27 set len [string length $bits]
29 if {$rem} {append bits =/$rem}
30 #puts "($bitstring) => <$bits>"
32 return [string map $forward $bits]
H A Dbase32hex_tcl.tcl10 # A binary string is split into groups of 5 bits (2^5 == 32), and each
26 binary scan $bitstring B* bits
27 set len [string length $bits]
29 if {$rem} {append bits =/$rem}
30 #puts "($bitstring) => <$bits>"
32 return [string map $forward $bits]
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/
H A Dlfsr.c34 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits, argument
39 REQUIRE(8 <= bits && bits <= 32);
43 lfsr->bits = bits;
52 lfsr->state = 0xffffffffU >> (32 - lfsr->bits);
73 lfsr->state = 0xffffffffU >> (32 - lfsr->bits);
/macosx-10.10.1/ntp-92/lib/isc/
H A Dlfsr.c34 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits, argument
39 REQUIRE(8 <= bits && bits <= 32);
43 lfsr->bits = bits;
52 lfsr->state = 0xffffffffU >> (32 - lfsr->bits);
73 lfsr->state = 0xffffffffU >> (32 - lfsr->bits);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfbitvector.py55 bits = byte2bits(0x11)
58 self.failUnless( b == bits[i] )
60 bits = CFBitVectorGetBits(bitset, (0, 8), None)
61 self.assertEquals(bits, chr(0x11))
85 bits = ord(CFBitVectorGetBits(bitset, (0, 8), None))
89 self.assertEquals(bits2, ~bits & 0xff)
104 bits = CFBitVectorGetBits(bitset, (0, 20), None)
105 self.assertEquals(bits, '\xff\xff\xf0')
107 bits = CFBitVectorGetBits(bitset, (0, 20), None)
108 self.assertEquals(bits, '\x0
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfbitvector.py48 bits = byte2bits(0x11)
51 self.assertEqual(b , bits[i] )
52 bits = CFBitVectorGetBits(bitset, (0, 8), None)
53 self.assertEqual(bits, b'\x11')
75 bits = ord(CFBitVectorGetBits(bitset, (0, 8), None))
79 self.assertEqual(bits2, ~bits & 0xff)
94 bits = CFBitVectorGetBits(bitset, (0, 20), None)
95 self.assertEqual(bits, b'\xff\xff\xf0')
97 bits = CFBitVectorGetBits(bitset, (0, 20), None)
98 self.assertEqual(bits,
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_cfbitvector.py56 bits = byte2bits(0x11)
59 self.assertEqual(b , bits[i] )
60 bits = CFBitVectorGetBits(bitset, (0, 8), None)
61 self.assertEqual(bits, b'\x11')
83 bits = ord(CFBitVectorGetBits(bitset, (0, 8), None))
87 self.assertEqual(bits2, ~bits & 0xff)
102 bits = CFBitVectorGetBits(bitset, (0, 20), None)
103 self.assertEqual(bits, b'\xff\xff\xf0')
105 bits = CFBitVectorGetBits(bitset, (0, 20), None)
106 self.assertEqual(bits,
[all...]
/macosx-10.10.1/zlib-55/zlib/contrib/masmx64/
H A Dinffas8664.c57 state->bits < 8
67 - The maximum input bits used by a length/distance pair is 15 bits for the
68 length code, 5 bits for the length extra, 15 bits for the distance code,
69 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
95 /* 88 44 */ unsigned bits; /* ebx rbx local strm->bits */ member in struct:inffast_ar
136 ar.bits
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/camellia/
H A Dcmll_misc.c62 int Camellia_set_key(const unsigned char *userKey, const int bits, argument
68 return private_Camellia_set_key(userKey, bits, key);
70 int private_Camellia_set_key(const unsigned char *userKey, const int bits, argument
79 switch(bits)
100 key->bitLength = bits;
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/include/
H A Dsfio_t.h39 unsigned short bits; /* private flags */ \
87 0, /* bits */ \
115 (f)->bits = 0, /* bits */ \
128 #define SFDCNEXT(sp,f) (((f)=(sp)->bits&SF_DCDOWN),(sp)->bits|=SF_DCDOWN)
131 #define SFDCPREV(sp,f) ((f)?(0):((sp)->bits&=~SF_DCDOWN))
/macosx-10.10.1/OpenSSL098-52/src/fips/dsa/
H A Dfips_dsa_gen.c88 static int dsa_builtin_paramgen(DSA *ret, int bits,
92 int DSA_generate_parameters_ex(DSA *ret, int bits, argument
97 return ret->meth->dsa_paramgen(ret, bits, seed_in, seed_len,
99 return dsa_builtin_paramgen(ret, bits, seed_in, seed_len,
103 static int dsa_builtin_paramgen(DSA *ret, int bits, argument
127 if (FIPS_mode() && (bits < OPENSSL_DSA_FIPS_MIN_MODULUS_BITS))
133 if (bits < 512) bits=512;
134 bits=(bits
[all...]
/macosx-10.10.1/zlib-55/zlib/
H A Dinflate.c30 * - Add comments on state->bits assertion in inffast.c
122 state->bits = 0;
154 /* set number of window bits, free window if different */
209 int ZEXPORT inflatePrime(strm, bits, value)
211 int bits;
218 if (bits < 0) {
220 state->bits = 0;
223 if (bits > 16 || state->bits + bits > 3
250 unsigned sym, bits; local
598 unsigned bits; /* bits in bit buffer */ local
[all...]

Completed in 296 milliseconds

1234567891011>>