Searched refs:bits (Results 101 - 125 of 954) sorted by relevance

1234567891011>>

/macosx-10.10.1/sudo-73/src/zlib/
H A Dinflate.c30 * - Add comments on state->bits assertion in inffast.c
120 state->bits = 0;
165 /* set number of window bits, free window if different */
229 int ZEXPORT inflatePrime(strm, bits, value)
231 int bits;
238 if (bits < 0) {
240 state->bits = 0;
243 if (bits > 16 || state->bits + bits > 3
270 unsigned sym, bits; local
618 unsigned bits; /* bits in bit buffer */ local
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dbufbn.c60 * by (bits+7)/8 bytes of binary data, msb first.
65 int bits = BN_num_bits(value); local
66 int bin_size = (bits + 7) / 8;
80 /* Store the number of bits in the buffer in two bytes, msb first. */
81 put_u16(msg, bits);
105 u_int bits, bytes; local
108 /* Get the number of bits. */
113 bits = get_u16(buf);
115 bytes = (bits + 7) / 8;
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Ducnv_u7.c169 * 15..0 bits (up to 14 bits incoming base64)
175 * 7..0 bits (6 bits outgoing base64)
220 uint16_t bits; local
242 bits=(uint16_t)status;
286 bits=0;
336 } else if(bits!=0) {
337 /* bits are illegally left over, a UChar is incomplete */
361 bits
469 uint8_t bits; local
902 uint16_t bits; local
1168 uint8_t bits; local
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Duudecode.el153 (bits 0)
170 (setq remain 0 bits 0 counter 0)
180 (setq bits (+ bits
191 (char-to-string (lsh bits -16))
192 (char-to-string (logand (lsh bits -8) 255))
193 (char-to-string (logand bits 255)))
195 (setq bits 0 counter 0))
196 (t (setq bits (lsh bits
[all...]
/macosx-10.10.1/rsync-45/rsync/zlib/
H A Dinflate.c30 * - Add comments on state->bits assertion in inffast.c
122 state->bits = 0;
128 int ZEXPORT inflatePrime(strm, bits, value)
130 int bits;
137 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR;
138 value &= (1L << bits) - 1;
139 state->hold += value << state->bits;
140 state->bits
215 unsigned sym, bits; local
563 unsigned bits; /* bits in bit buffer */ local
[all...]
/macosx-10.10.1/xnu-2782.1.97/libkern/zlib/
H A Dinflate.c57 * - Add comments on state->bits assertion in inffast.c
149 state->bits = 0;
155 int ZEXPORT inflatePrime(strm, bits, value)
157 int bits;
164 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR;
165 value &= (1L << bits) - 1;
166 state->hold += value << state->bits;
167 state->bits
244 unsigned sym, bits; local
592 unsigned bits; /* bits in bit buffer */ local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/include/
H A DNTMakefile47 $(INCDIR)\krb5-types.h: $(OBJ)\bits.exe
48 $(OBJ)\bits.exe $(INCDIR)\krb5-types.h
50 $(OBJ)\bits.exe: $(OBJ)\bits.obj
/macosx-10.10.1/OpenSSH-189/openssh/regress/
H A Dkeytype.sh21 bits=`echo ${kt} | awk -F- '{print $2}'`
23 printf "keygen $type, $bits bits:\t"
24 ${TIME} ${SSHKEYGEN} -b $bits -q -N '' -t $type -f $OBJ/key.$kt ||\
25 fail "ssh-keygen for type $type, $bits bits failed"
/macosx-10.10.1/OpenSSL098-52/src/crypto/dsa/
H A Ddsa_depr.c86 DSA *DSA_generate_parameters(int bits, argument
99 if(DSA_generate_parameters_ex(ret, bits, seed_in, seed_len,
H A Ddsa_gen.c87 static int dsa_builtin_paramgen(DSA *ret, int bits,
91 int DSA_generate_parameters_ex(DSA *ret, int bits, argument
96 return ret->meth->dsa_paramgen(ret, bits, seed_in, seed_len,
98 return dsa_builtin_paramgen(ret, bits, seed_in, seed_len,
102 static int dsa_builtin_paramgen(DSA *ret, int bits, argument
119 if (bits < 512) bits=512;
120 bits=(bits+63)/64*64;
129 * but our internal buffers are restricted to 160 bits*/
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/rc2/
H A Drc2.h83 void private_RC2_set_key(RC2_KEY *key, int len, const unsigned char *data,int bits);
85 void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data,int bits);
/macosx-10.10.1/OpenSSL098-52/src/crypto/rsa/
H A Drsa_depr.c71 RSA *RSA_generate_key(int bits, unsigned long e_value, argument
92 if(RSA_generate_key_ex(rsa, bits, e, &cb)) {
/macosx-10.10.1/OpenSSL098-52/src/include/openssl/
H A Drc2.h83 void private_RC2_set_key(RC2_KEY *key, int len, const unsigned char *data,int bits);
85 void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data,int bits);
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/backward/
H A Dalgobase.h61 #include <bits/stl_algobase.h>
62 #include <bits/stl_uninitialized.h>
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dconcept_check.h40 #include <bits/c++config.h>
60 #include <bits/boost_concept_check.h>
/macosx-10.10.1/ntp-92/libntp/
H A Dmktime.c100 ** just 32 bits, its a max of 32 iterations (even at 64 bits it
184 register int bits; local
216 ** Calculate the number of magnitude bits in a time_t
220 for (bits = 0, t = 1; t > 0; ++bits, t <<= 1)
224 ** if time_t is unsigned, then 1 << bits is median.
226 t = (t < 0) ? 0 : ((time_t) 1 << bits);
234 if (bits-- < 0)
236 if (bits <
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/mach/
H A Dmessage.h127 * The unused bits should be zero and are reserved for the kernel
144 #define MACH_MSGH_BITS_USER 0x801f1f1fU /* allowed bits user->kernel */
156 /* setter macros for the bits */
167 /* getter macros for pulling values out of the bits field */
168 #define MACH_MSGH_BITS_REMOTE(bits) \
169 ((bits) & MACH_MSGH_BITS_REMOTE_MASK)
170 #define MACH_MSGH_BITS_LOCAL(bits) \
171 (((bits) & MACH_MSGH_BITS_LOCAL_MASK) >> 8)
172 #define MACH_MSGH_BITS_VOUCHER(bits) \
173 (((bits)
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/include/
H A Dlutil_md5.h24 32 bits, merely 32 bits or more. Choosing a data type which is 32
25 bits instead of 64 is not important; speed is considerably more
33 ber_uint_t bits[2]; member in struct:lutil_MD5Context
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dopenssl-compat.c91 RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *bn_e, void *cb) argument
101 new_rsa = RSA_generate_key(bits, e, NULL, NULL);
115 DSA_generate_parameters_ex(DSA *dsa, int bits, const unsigned char *seed, argument
122 new_dsa = DSA_generate_parameters(bits, (unsigned char *)seed, seed_len,
/macosx-10.10.1/emacs-93/emacs/src/
H A Dw32.h31 unsigned int bits[FD_SETSIZE / 32]; member in struct:__anon8543
38 (p)->bits[(n)/32] |= (1 << (n)%32); \
44 (p)->bits[(n)/32] &= ~(1 << (n)%32); \
47 #define FD_ISSET(n, p) ((n) < FD_SETSIZE ? ((p)->bits[(n)/32] & (1 << (n)%32)) : 0)
/macosx-10.10.1/ICU-531.30/icuSources/layout/
H A DDeviceTables.cpp29 le_uint16 bits = fieldBits[format]; local
30 le_uint16 count = 16 / bits;
33 le_uint16 shift = 16 - (bits * (fieldIndex + 1));
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_read_support_compression_compress.c111 int section_end_code; /* When to increase bits. */
112 int bits; /* Current code length. */ member in struct:private_data
245 state->bits = 9;
246 state->section_end_code = (1<<state->bits) - 1;
329 code = newcode = getbits(self, state->bits);
346 int skip_bytes = state->bits -
347 (state->bytes_in_section % state->bits);
348 skip_bytes %= state->bits;
357 state->bits = 9;
358 state->section_end_code = (1 << state->bits)
[all...]
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/
H A Datomicity.h38 #include <bits/c++config.h>
39 #include <bits/gthr.h>
40 #include <bits/atomic_word.h>
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/
H A Dbn_prime.c131 static int probable_prime(BIGNUM *rnd, int bits);
132 static int probable_prime_dh(BIGNUM *rnd, int bits,
134 static int probable_prime_dh_safe(BIGNUM *rnd, int bits,
159 int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe, argument
166 int checks = BN_prime_checks_for_size(bits);
174 /* make a random number and set the top and bottom bits */
177 if (!probable_prime(ret,bits)) goto err;
183 if (!probable_prime_dh_safe(ret,bits,add,rem,ctx))
188 if (!probable_prime_dh(ret,bits,add,rem,ctx))
377 static int probable_prime(BIGNUM *rnd, int bits) argument
406 probable_prime_dh(BIGNUM *rnd, int bits, const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx) argument
444 probable_prime_dh_safe(BIGNUM *p, int bits, const BIGNUM *padd, const BIGNUM *rem, BN_CTX *ctx) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_prime.c144 static int probable_prime(BIGNUM *rnd, int bits);
145 static int probable_prime_dh(BIGNUM *rnd, int bits,
147 static int probable_prime_dh_safe(BIGNUM *rnd, int bits,
150 BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe, BIGNUM *add, argument
158 int checks = BN_prime_checks_for_size(bits);
170 /* make a random number and set the top and bottom bits */
173 if (!probable_prime(rnd,bits)) goto err;
179 if (!probable_prime_dh_safe(rnd,bits,add,rem,ctx))
184 if (!probable_prime_dh(rnd,bits,add,rem,ctx))
366 static int probable_prime(BIGNUM *rnd, int bits) argument
397 probable_prime_dh(BIGNUM *rnd, int bits, BIGNUM *add, BIGNUM *rem, BN_CTX *ctx) argument
434 probable_prime_dh_safe(BIGNUM *p, int bits, BIGNUM *padd, BIGNUM *rem, BN_CTX *ctx) argument
[all...]

Completed in 182 milliseconds

1234567891011>>