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

/freebsd-11-stable/contrib/gdb/gdb/
H A Dbcache.c206 int hash_index;
218 hash_index = full_hash % bcache->num_buckets;
223 for (s = bcache->bucket[hash_index]; s; s = s->next)
241 new->next = bcache->bucket[hash_index];
243 bcache->bucket[hash_index] = new;
203 int hash_index; local
H A Ddictionary.c624 unsigned int hash_index local
634 for (sym = DICT_HASHED_BUCKET (dict, hash_index);
674 unsigned int hash_index; local
677 hash_index = (msymbol_hash_iw (SYMBOL_NATURAL_NAME (sym))
679 sym->hash_next = buckets[hash_index];
680 buckets[hash_index] = sym;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Dpatch.c2541 apr_hash_index_t *hash_index;
2747 for (hash_index = apr_hash_first(scratch_pool, patch->prop_patches);
2748 hash_index;
2749 hash_index = apr_hash_next(hash_index))
2755 prop_name = apr_hash_this_key(hash_index);
2756 prop_patch = apr_hash_this_val(hash_index);
2880 for (hash_index = apr_hash_first(scratch_pool, target->prop_targets);
2881 hash_index;
2882 hash_index
2540 apr_hash_index_t *hash_index; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dexpmed.c2476 int hash_index;
2525 hash_index = (t ^ (unsigned int) mode) % NUM_ALG_HASH_ENTRIES;
2528 if (alg_hash[hash_index].t == t
2529 && alg_hash[hash_index].mode == mode
2530 && alg_hash[hash_index].alg != alg_unknown)
2532 cache_alg = alg_hash[hash_index].alg;
2537 multiplication by T within alg_hash[hash_index].cost. */
2538 if (!CHEAPER_MULT_COST (&alg_hash[hash_index].cost, cost_limit))
2552 if (CHEAPER_MULT_COST (cost_limit, &alg_hash[hash_index].cost))
2837 alg_hash[hash_index]
2466 int hash_index; local
[all...]
H A Dgcse.c456 unsigned int hash_index; /* Index when in a hash table. */
5095 ptr->hash_index = hash;
5375 unsigned int hash = ptr->hash_index % expr_hash_table.size;
5396 htab_remove_elt_with_hash (pre_ldst_table, ptr, ptr->hash_index);
5854 htab_remove_elt_with_hash (pre_ldst_table, ptr, ptr->hash_index);
455 unsigned int hash_index; /* Index when in a hash table. */ member in struct:ls_expr
H A Dmips-tfile.c4589 auto symint_t hash_index;
4595 &hash_index);
4603 shash_ptr->next = orig_str_hash[hash_index];
4604 orig_str_hash[hash_index] = shash_ptr;
4549 auto symint_t hash_index; local
/freebsd-11-stable/sys/dev/ocs_fc/
H A Docs_hw.c8191 uint32_t hash_index = id & (OCS_HW_Q_HASH_SIZE - 1); local
8197 while(hash[hash_index].in_use) {
8198 hash_index = (hash_index + 1) & (OCS_HW_Q_HASH_SIZE - 1);
8202 hash[hash_index].id = id;
8203 hash[hash_index].in_use = 1;
8204 hash[hash_index].index = index;

Completed in 178 milliseconds