Searched refs:hash_size (Results 1 - 7 of 7) sorted by relevance

/darwin-on-arm/xnu/osfmk/profiling/i386/
H A Dprofile-md.c359 size_t hash_size;
441 pv->md.hash_size = _profile_hash_size;
486 hash_size = _profile_hash_size * sizeof (struct hasharc *);
487 misc_size = ROUNDUP(hash_size + page_size, page_size);
506 pv->md.hash_ptr = (struct hasharc **) _profile_alloc(pv, hash_size, ACONTEXT_MISC);
616 memset((void *)pv->md.hash_ptr, '\0', pv->md.hash_size * sizeof(struct hasharc *));
798 for (i = 0; i < pv->md.hash_size; i++) {
356 size_t hash_size; local
H A Dprofile-md.h392 size_t hash_size; /* size of hash table */ member in struct:profile_md
H A Dprofile-asm.s576 LCL(hash_size) = LCL(hash_ptr)+4 /* gprof hash size */
577 LCL(num_cache) = LCL(hash_size)+4 /* # of cache entries */
/darwin-on-arm/xnu/libkern/zlib/
H A Ddeflate.c227 s->head[s->hash_size-1] = NIL; \
228 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
312 s->hash_size = 1 << s->hash_bits;
313 s->hash_mask = s->hash_size - 1;
318 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
951 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
963 zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos));
1336 n = s->hash_size;
H A Ddeflate.h164 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state
165 uInt hash_bits; /* log2(hash_size) */
166 uInt hash_mask; /* hash_size-1 */
/darwin-on-arm/xnu/bsd/kern/
H A Dubc_subr.c396 size_t hash_size = 0; local
420 hash_size = code_dir->hashSize;
425 (hash_size * CSSLOT_ENTITLEMENTS));
445 if (NULL == (computed_hash = kalloc(hash_size))) {
453 if (0 != memcmp(computed_hash, embedded_hash, hash_size)) {
461 kfree(computed_hash, hash_size);
/darwin-on-arm/xnu/bsd/netinet/
H A Dip_dummynet.c174 SYSCTL_INT(_net_inet_ip_dummynet, OID_AUTO, hash_size,

Completed in 37 milliseconds