Searched defs:bits (Results 1 - 25 of 652) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dstrict-err.asm0 bits 64
1 bits 64 label
H A Dripseg.asm0 bits 64
1 bits 64 label
H A Dstrict.asm0 bits 32
88 bits 64 label
1 bits 32 label
H A Damd200707.asm0 bits 64
1 bits 64 label
H A Dimm64.asm0 bits 64
1 bits 64 label
H A Driprel1.asm0 bits 64
1 bits 64 label
/external/chromium/base/
H A Dbits_unittest.cc7 #include "base/bits.h"
11 namespace bits { namespace in namespace:base
47 } // namespace bits
/external/chromium_org/base/
H A Dbits_unittest.cc7 #include "base/bits.h"
11 namespace bits { namespace in namespace:base
47 } // namespace bits
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
H A Dalignnop16.asm0 bits 16
1 bits 16 label
H A Dalignnop32.asm0 bits 32
1 bits 32 label
/external/icu4c/i18n/
H A Dscriptset.h50 UBool contains(const ScriptSet &other) const; // All set bits in other are also set in this.
62 uint32_t bits[6]; member in class:ScriptSet
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dmd5_i.h14 u32 bits[2]; member in struct:MD5Context
/external/wpa_supplicant_8/src/crypto/
H A Dmd5_i.h14 u32 bits[2]; member in struct:MD5Context
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dmd5_i.h14 u32 bits[2]; member in struct:MD5Context
/external/chromium_org/components/variations/
H A Dmetrics_util.cc20 uint32 bits; local
21 COMPILE_ASSERT(sizeof(bits) < sizeof(sha1_hash), need_more_data);
22 memcpy(&bits, sha1_hash, sizeof(bits));
24 return base::ByteSwapToLE32(bits);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dmd5.h31 uint32 bits[2]; member in struct:MD5Context
/external/chromium_org/third_party/openssl/openssl/crypto/aes/
H A Daes_misc.c69 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
75 return private_AES_set_encrypt_key(userKey, bits, key);
78 int AES_set_decrypt_key(const unsigned char *userKey, const int bits, argument
84 return private_AES_set_decrypt_key(userKey, bits, key);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dmd5.h11 32 bits, merely 32 bits or more. Choosing a data type which is 32
12 bits instead of 64 is not important; speed is considerably more
18 unsigned long bits[2]; member in struct:yasm_md5_context
/external/dropbear/libtomcrypt/src/prngs/
H A Drng_make_prng.c15 portable way to get secure random bits to feed a PRNG (Tom St Denis)
20 @param bits Number of bits of entropy desired (64 ... 1024)
26 int rng_make_prng(int bits, int wprng, prng_state *prng, argument
39 if (bits < 64 || bits > 1024) {
47 bits = ((bits/8)+((bits&7)!=0?1:0)) * 2;
48 if (rng_get_bytes(buf, (unsigned long)bits, callbac
[all...]
/external/dropbear/libtommath/
H A Dbn_mp_montgomery_calc_normalization.c26 int x, bits, res; local
28 /* how many bits of last digit does b use */
29 bits = mp_count_bits (b) % DIGIT_BIT;
32 if ((res = mp_2expt (a, (b->used - 1) * DIGIT_BIT + bits - 1)) != MP_OKAY) {
37 bits = 1;
42 for (x = bits - 1; x < (int)DIGIT_BIT; x++) {
/external/elfutils/libdwfl/
H A Ddwfl_build_id_find_debuginfo.c65 const unsigned char *bits; local
67 if (INTUSE(dwfl_module_build_id) (mod, &bits, &vaddr) > 0)
H A Ddwfl_module_report_build_id.c55 const unsigned char *bits, size_t len,
68 && !memcmp (bits, mod->build_id_bits, len))
90 memcpy (copy, bits, len);
54 dwfl_module_report_build_id(Dwfl_Module *mod, const unsigned char *bits, size_t len, GElf_Addr vaddr) argument
/external/linux-tools-perf/util/
H A Dbitmap.c16 int __bitmap_weight(const unsigned long *bitmap, int bits) argument
18 int k, w = 0, lim = bits/BITS_PER_LONG;
23 if (bits % BITS_PER_LONG)
24 w += hweight_long(bitmap[k] & BITMAP_LAST_WORD_MASK(bits));
/external/openssl/crypto/aes/
H A Daes_misc.c69 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
75 return private_AES_set_encrypt_key(userKey, bits, key);
78 int AES_set_decrypt_key(const unsigned char *userKey, const int bits, argument
84 return private_AES_set_decrypt_key(userKey, bits, key);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DRC2Parameters.java9 private int bits; field in class:RC2Parameters
19 int bits)
22 this.bits = bits;
34 return bits;
17 RC2Parameters( byte[] key, int bits) argument

Completed in 735 milliseconds

1234567891011>>