Lines Matching refs:htab_size
1229 UWord htab_size; /* size of hash table, MAY ONLY BE A POWER OF 2 */ member
1307 for (u = 0; u < frame->htab_size; u++) { in preen_global_Invars()
1323 inline static UWord compute_II_hash ( Addr ip, UWord htab_size ) { in compute_II_hash() argument
1324 return (ip >> 0) & (htab_size - 1); in compute_II_hash()
1331 sf->htab_size = N_HTAB_FIXED; /* initial hash table size */ in initialise_II_hash_table()
1335 for (i = 0; i < sf->htab_size; i++) in initialise_II_hash_table()
1347 old_size = sf->htab_size; in resize_II_hash_table()
1382 sf->htab_size = new_size; in resize_II_hash_table()
1411 if (UNLIKELY(2 * sf->htab_used >= 1 * sf->htab_size)) { in find_or_create_IInstance_SLOW()
1415 tl_assert(2 * sf->htab_used <= sf->htab_size); in find_or_create_IInstance_SLOW()
1417 ix = compute_II_hash(ip, sf->htab_size); in find_or_create_IInstance_SLOW()
1418 i = sf->htab_size; in find_or_create_IInstance_SLOW()
1437 if (ix == sf->htab_size) ix = 0; in find_or_create_IInstance_SLOW()
1460 UWord ix = compute_II_hash(ip, sf->htab_size); in find_or_create_IInstance()
1996 innermost->htab_size = 0; in shadowStack_unwind()