HomeSort by relevance Sort by last modified time
    Searched defs:hash_size (Results 1 - 13 of 13) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ConnectionState.java 46 protected int hash_size; field in class:ConnectionState
69 return encCipher.getOutputSize(1+hash_size); // 1 byte for data
77 return encCipher.getOutputSize(content_size+hash_size);
88 return decCipher.getOutputSize(generic_cipher_size)-hash_size;
  /external/chromium/crypto/
symmetric_key_win.cc 138 DWORD hash_size = 0; local
141 hash_size = 20;
144 hash_size = 32;
147 hash_size = 48;
150 hash_size = 64;
153 if (hash_size == 0)
158 return (key_size_in_bits >= (hash_size / 2 * 8) &&
239 DWORD hash_size,
271 std::vector<BYTE> hash_value(hash_size);
273 DWORD size = hash_size;
    [all...]
  /external/e2fsprogs/intl/
gettextP.h 109 nls_uint32 hash_size; member in struct:loaded_domain
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_record.h 45 size_t hash_size; member in struct:tlsv1_record_layer
  /external/wpa_supplicant_8/src/tls/
tlsv1_record.h 41 size_t hash_size; member in struct:tlsv1_record_layer
  /external/e2fsprogs/e2fsck/
revoke.c 94 int hash_size; member in struct:jbd_revoke_table_s
117 (block << (hash_shift - 12))) & (table->hash_size - 1);
200 int journal_init_revoke(journal_t *journal, int hash_size)
210 /* Check that the hash_size is a power of two */
211 J_ASSERT ((hash_size & (hash_size-1)) == 0);
213 journal->j_revoke->hash_size = hash_size;
216 tmp = hash_size;
222 kmalloc(hash_size * sizeof(struct list_head), GFP_KERNEL)
    [all...]
  /external/dnsmasq/src/
cache.c 26 static int bignames_left, hash_size; variable
108 /* hash_size is a power of two. */
114 else if (new_size <= hash_size || !(new = whine_malloc(new_size * sizeof(struct crec *))))
121 old_size = hash_size;
123 hash_size = new_size;
150 /* hash_size is a power of two */
151 return hash_table + ((val ^ (val >> 16)) & (hash_size - 1));
307 for (i = 0; i < hash_size; i++)
600 for (i=0; i<hash_size; i++)
673 for (i=0; i<hash_size; i++
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
deflate.h 137 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state
138 uInt hash_bits; /* log2(hash_size) */
139 uInt hash_mask; /* hash_size-1 */
  /external/zlib/
deflate.h 140 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state
141 uInt hash_bits; /* log2(hash_size) */
142 uInt hash_mask; /* hash_size-1 */
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
tls_openssl.c 171 DWORD hash_size, len, i; local
201 len = sizeof(hash_size);
202 if (!CryptGetHashParam(hash, HP_HASHSIZE, (BYTE *) &hash_size, &len,
208 if ((int) hash_size != flen) {
210 (unsigned) hash_size, flen);
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 175 DWORD hash_size, len, i; local
205 len = sizeof(hash_size);
206 if (!CryptGetHashParam(hash, HP_HASHSIZE, (BYTE *) &hash_size, &len,
212 if ((int) hash_size != flen) {
214 (unsigned) hash_size, flen);
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdb.c 140 #define TDB_HASHTABLE_SIZE(tdb) ((tdb->header.hash_size+1)*sizeof(tdb_off_t))
141 #define TDB_DATA_START(hash_size) TDB_HASH_TOP(hash_size-1)
162 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
194 u32 hash_size; /* number of hash entries */ member in struct:tdb_header
421 if (list < -1 || list >= (int)tdb->header.hash_size) {
520 if (list < -1 || list >= (int)tdb->header.hash_size) {
521 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_unlock: list %d invalid (%d)\n", list, tdb->header.hash_size));
646 0, 4*tdb->header.hash_size)) {
684 0, 4*tdb->header.hash_size)) {
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readpdb.c 409 unsigned long hash_size; member in struct:_PDB_TYPES
503 unsigned long hash_size; member in struct:_PDB_SYMBOLS_OLD
518 unsigned long hash_size; member in struct:_PDB_SYMBOLS
    [all...]

Completed in 243 milliseconds