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

  /external/webp/src/utils/
color_cache.c 25 const int hash_size = 1 << hash_bits; local
28 cc->colors_ = (uint32_t*)WebPSafeCalloc((uint64_t)hash_size,
  /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;
ConnectionStateSSLv3.java 66 hash_size = cipherSuite.getMACLength();
81 logger.println(" hash size: " + hash_size);
90 // 2*hash_size + 2*key_size + 2*iv_size
91 byte[] key_block = new byte[2*hash_size + 2*key_size + 2*iv_size];
99 byte[] client_mac_secret = new byte[hash_size];
100 byte[] server_mac_secret = new byte[hash_size];
106 System.arraycopy(key_block, 0, client_mac_secret, 0, hash_size);
107 System.arraycopy(key_block, hash_size,
108 server_mac_secret, 0, hash_size);
109 System.arraycopy(key_block, 2*hash_size, client_key, 0, key_size)
    [all...]
ConnectionStateTLS.java 87 hash_size = cipherSuite.getMACLength();
103 logger.println(" hash size: " + hash_size);
112 // 2*hash_size + 2*key_size + 2*iv_size
113 byte[] key_block = new byte[2*hash_size + 2*key_size + 2*iv_size];
122 byte[] client_mac_secret = new byte[hash_size];
123 byte[] server_mac_secret = new byte[hash_size];
129 System.arraycopy(key_block, 0, client_mac_secret, 0, hash_size);
130 System.arraycopy(key_block, hash_size,
131 server_mac_secret, 0, hash_size);
132 System.arraycopy(key_block, 2*hash_size, client_key, 0, key_size)
    [all...]
  /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/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/wpa_supplicant_8/src/tls/
tlsv1_record.c 46 rl->hash_size = MD5_MAC_LEN;
49 rl->hash_size = SHA1_MAC_LEN;
52 rl->hash_size = SHA256_MAC_LEN;
208 rl->hash_size);
219 if (clen < rl->hash_size) {
427 if (plen < rl->hash_size) {
434 plen -= rl->hash_size;
437 rl->hash_size);
458 if (hlen != rl->hash_size ||
tlsv1_record.h 41 size_t hash_size; member in struct:tlsv1_record_layer
tlsv1_server.c 60 key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len +
75 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size);
76 pos += conn->rl.hash_size;
78 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size);
79 pos += conn->rl.hash_size;
567 return 2 * (conn->rl.hash_size + conn->rl.key_material_len +
tlsv1_client.c 78 key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len);
94 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size);
95 pos += conn->rl.hash_size;
97 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size);
98 pos += conn->rl.hash_size;
715 return 2 * (conn->rl.hash_size + conn->rl.key_material_len +
  /external/webkit/Tools/android/flex-2.5.4a/
sym.c 154 /* hashfunct - compute the hash value for "str" and hash size "hash_size" */
156 int hashfunct( str, hash_size )
158 int hash_size;
169 hashval %= hash_size;
  /external/e2fsprogs/intl/
gettextP.h 109 nls_uint32 hash_size; member in struct:loaded_domain
loadmsgcat.c 1044 domain->hash_size = W (domain->must_swap, data->hash_tab_size);
1046 (domain->hash_size > 2
1123 memneed = domain->hash_size * sizeof (nls_uint32);
1200 mem += domain->hash_size * sizeof (nls_uint32);
    [all...]
dcigettext.c 750 nls_uint32 idx = hash_val % domain->hash_size;
751 nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2));
782 if (idx >= domain->hash_size - incr)
783 idx -= domain->hash_size - incr;
    [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/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...]
tdb.h 145 struct tdb_context *tdb_open(const char *name, int hash_size, int tdb_flags,
147 struct tdb_context *tdb_open_ex(const char *name, int hash_size, int tdb_flags,
  /external/qemu/distrib/zlib-1.2.3/
deflate.c 200 s->head[s->hash_size-1] = NIL; \
201 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
283 s->hash_size = 1 << s->hash_bits;
284 s->hash_mask = s->hash_size - 1;
289 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
922 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos))
    [all...]
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/src/
deflate.c 197 s->head[s->hash_size-1] = NIL; \
198 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
289 s->hash_size = 1 << s->hash_bits;
290 s->hash_mask = s->hash_size - 1;
295 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
    [all...]
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/valgrind/main/coregrind/m_debuginfo/
readpdb.c 386 unsigned long hash_size; member in struct:_PDB_TYPES
480 unsigned long hash_size; member in struct:_PDB_SYMBOLS_OLD
495 unsigned long hash_size; member in struct:_PDB_SYMBOLS
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 187 DWORD hash_size, len, i; local
217 len = sizeof(hash_size);
218 if (!CryptGetHashParam(hash, HP_HASHSIZE, (BYTE *) &hash_size, &len,
224 if ((int) hash_size != flen) {
226 (unsigned) hash_size, flen);
    [all...]

Completed in 1220 milliseconds