HomeSort by: relevance | last modified time | path
    Searched refs:hv (Results 1 - 25 of 58) sorted by relevancy

1 2 3

  /src/usr.bin/m4/lib/
ohash_qlookupi.c 25 u_int32_t hv; local
27 hv = ohash_interval(s, e);
28 return ohash_lookup_interval(h, s, *e, hv);
ohash_lookup_interval.c 24 uint32_t hv)
33 i = hv % h->size;
34 incr = ((hv % (h->size-2)) & ~1) + 1;
42 } else if (h->t[i].hv == hv &&
47 h->t[empty].hv = hv;
66 h->t[i].hv = hv;
ohash_lookup_memory.c 23 ohash_lookup_memory(struct ohash *h, const char *k, size_t size, uint32_t hv)
32 i = hv % h->size;
33 incr = ((hv % (h->size-2)) & ~1) + 1;
41 } else if (h->t[i].hv == hv &&
44 h->t[empty].hv = hv;
62 h->t[i].hv = hv;
ohash_int.h 14 u_int32_t hv; member in struct:_ohash_record
ohash_do.c 49 i = h->t[j].hv % ns;
50 incr = ((h->t[j].hv % (ns - 2)) & ~1) + 1;
56 n[i].hv = h->t[j].hv;
  /src/external/bsd/ipf/dist/lib/
printhostmap.c 14 printhostmap(hmp, hv)
16 u_int hv;
29 PRINTF(" hv = %u", hv);
printhashnode.c 21 u_int hv; local
27 hv = IPE_V4_HASH_FN(ipe.ipe_addr.i6[0], ipe.ipe_mask.i6[0],
38 PRINTF("\t%d\tAddress: %s", hv,
  /src/external/bsd/mdocml/dist/
compat_ohash.c 30 uint32_t hv; member in struct:_ohash_record
103 i = h->t[j].hv % ns;
104 incr = ((h->t[j].hv % (ns - 2)) & ~1) + 1;
110 n[i].hv = h->t[j].hv;
227 uint32_t hv)
236 i = hv % h->size;
237 incr = ((hv % (h->size-2)) & ~1) + 1;
245 } else if (h->t[i].hv == hv &
327 uint32_t hv; local
    [all...]
mandoc_xr.c 72 uint32_t hv; local
91 hv = ohash_interval(xr->hashkey, &pend);
92 slot = ohash_lookup_memory(xr_hash, xr->hashkey, tsz, hv);
  /src/sys/external/bsd/ipf/netinet/
ip_state.c 1054 u_int hv; local
1071 hv = is->is_hv % softs->ipf_state_size;
1072 /* TRACE is, hv */
1073 is->is_hv = hv;
1117 if (softs->ipf_state_table[hv] != NULL)
1118 softs->ipf_state_table[hv]->is_phnext = &is->is_hnext;
1121 is->is_phnext = softs->ipf_state_table + hv;
1122 is->is_hnext = softs->ipf_state_table[hv];
1123 softs->ipf_state_table[hv] = is;
1124 softs->ipf_state_stats.iss_bucketlen[hv]++
1354 u_int pass, hv; local
2637 u_int hv; local
2972 u_int hv, hvm, pr, v, tryagain; local
4378 u_int hv; local
5154 u_int hv; local
    [all...]
ip_sync.c 695 u_int hv; local
698 hv = sp->sm_num & (softs->ipf_sync_state_tab_sz - 1);
752 sl->sl_pnext = softs->syncstatetab + hv;
753 sl->sl_next = softs->syncstatetab[hv];
754 if (softs->syncstatetab[hv] != NULL)
755 softs->syncstatetab[hv]->sl_pnext = &sl->sl_next;
756 softs->syncstatetab[hv] = sl;
778 for (sl = softs->syncstatetab[hv]; (sl != NULL);
922 u_int hv = 0; local
958 sl->sl_pnext = softs->syncnattab + hv;
1021 u_int hv, sz; local
    [all...]
ip_htable.c 868 u_int hv; local
885 hv = IPE_V4_HASH_FN(ipe->ipe_addr.in4_addr,
895 hv = IPE_V6_HASH_FN(ipe->ipe_addr.i6,
906 ipe->ipe_hnext = iph->iph_table[hv];
907 ipe->ipe_phnext = iph->iph_table + hv;
909 if (iph->iph_table[hv] != NULL)
910 iph->iph_table[hv]->ipe_phnext = &ipe->ipe_hnext;
911 iph->iph_table[hv] = ipe;
999 u_int hv; local
1013 hv = IPE_V4_HASH_FN(ipe.ipe_addr.in4_addr
1133 u_int hv; local
1331 u_int hv; local
    [all...]
ip_nat6.c 218 u_int hv; local
225 hv = NAT_HASH_FN6(&j, 0, softn->ipf_nat_rdrrules_sz);
231 hv = NAT_HASH_FN6(&j, 0, softn->ipf_nat_rdrrules_sz);
234 hv = 0;
239 np = softn->ipf_nat_rdr_rules + hv;
244 n->in_hv[0] = hv;
265 u_int hv; local
272 hv = NAT_HASH_FN6(&j, 0, softn->ipf_nat_maprules_sz);
275 hv = 0;
280 np = softn->ipf_nat_map_rules + hv;
371 u_int hv; local
1882 u_int hv; local
2193 u_int hv; local
2642 u_32_t hv, nmsk = 0; local
3042 u_32_t hv, rmsk = 0; local
    [all...]
  /src/sys/arch/alpha/stand/netboot/
if_prom.c 159 int hv, lv; local
166 hv = dval(*enet_addr); enet_addr++;
170 if (hv == -1 || lv == -1) {
175 desc->myea[i] = (hv << 4) | lv;
  /src/external/gpl3/gcc/dist/gcc/
double-int.cc 31 #define add_double(l1,h1,l2,h2,lv,hv) \
32 add_double_with_sign (l1, h1, l2, h2, lv, hv, false)
43 #define mul_double(l1,h1,l2,h2,lv,hv) \
44 mul_double_wide_with_sign (l1, h1, l2, h2, lv, hv, NULL, NULL, false)
102 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
107 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv,
119 *hv = h;
132 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
136 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
141 *hv = - (unsigned HOST_WIDE_INT) h1
    [all...]
ira-color.cc 219 allocno_hard_regs_hasher::hash (const allocno_hard_regs *hv)
221 return iterative_hash (&hv->set, sizeof (HARD_REG_SET), 0);
235 /* Return allocno hard registers in the hash table equal to HV. */
237 find_hard_regs (allocno_hard_regs_t hv)
239 return allocno_hard_regs_htab->find (hv);
242 /* Insert allocno hard registers HV in the hash table (if it is not
245 insert_hard_regs (allocno_hard_regs_t hv)
247 allocno_hard_regs **slot = allocno_hard_regs_htab->find_slot (hv, INSERT);
250 *slot = hv;
269 allocno_hard_regs_t hv;
268 allocno_hard_regs_t hv; local
291 allocno_hard_regs_t hv; local
704 allocno_hard_regs_t hv; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
double-int.cc 31 #define add_double(l1,h1,l2,h2,lv,hv) \
32 add_double_with_sign (l1, h1, l2, h2, lv, hv, false)
43 #define mul_double(l1,h1,l2,h2,lv,hv) \
44 mul_double_wide_with_sign (l1, h1, l2, h2, lv, hv, NULL, NULL, false)
102 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
107 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv,
119 *hv = h;
132 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
136 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
141 *hv = - (unsigned HOST_WIDE_INT) h1
    [all...]
ira-color.cc 219 allocno_hard_regs_hasher::hash (const allocno_hard_regs *hv)
221 return iterative_hash (&hv->set, sizeof (HARD_REG_SET), 0);
235 /* Return allocno hard registers in the hash table equal to HV. */
237 find_hard_regs (allocno_hard_regs_t hv)
239 return allocno_hard_regs_htab->find (hv);
242 /* Insert allocno hard registers HV in the hash table (if it is not
245 insert_hard_regs (allocno_hard_regs_t hv)
247 allocno_hard_regs **slot = allocno_hard_regs_htab->find_slot (hv, INSERT);
250 *slot = hv;
269 allocno_hard_regs_t hv;
268 allocno_hard_regs_t hv; local
291 allocno_hard_regs_t hv; local
697 allocno_hard_regs_t hv; local
    [all...]
  /src/external/bsd/ipf/dist/
ip_sync.c 711 u_int hv; local
714 hv = sp->sm_num & (softs->ipf_sync_state_tab_sz - 1);
768 sl->sl_pnext = softs->syncstatetab + hv;
769 sl->sl_next = softs->syncstatetab[hv];
770 if (softs->syncstatetab[hv] != NULL)
771 softs->syncstatetab[hv]->sl_pnext = &sl->sl_next;
772 softs->syncstatetab[hv] = sl;
794 for (sl = softs->syncstatetab[hv]; (sl != NULL);
947 u_int hv = 0; local
983 sl->sl_pnext = softs->syncnattab + hv;
1050 u_int hv, sz; local
    [all...]
ip_htable.c 915 u_int hv; local
932 hv = IPE_V4_HASH_FN(ipe->ipe_addr.in4_addr,
942 hv = IPE_V6_HASH_FN(ipe->ipe_addr.i6,
953 ipe->ipe_hnext = iph->iph_table[hv];
954 ipe->ipe_phnext = iph->iph_table + hv;
956 if (iph->iph_table[hv] != NULL)
957 iph->iph_table[hv]->ipe_phnext = &ipe->ipe_hnext;
958 iph->iph_table[hv] = ipe;
1048 u_int hv; local
1064 hv = IPE_V4_HASH_FN(ipe.ipe_addr.in4_addr
1192 u_int hv; local
1399 u_int hv; local
    [all...]
ip_nat6.c 225 u_int hv; local
232 hv = NAT_HASH_FN6(&j, 0, softn->ipf_nat_rdrrules_sz);
238 hv = NAT_HASH_FN6(&j, 0, softn->ipf_nat_rdrrules_sz);
241 hv = 0;
246 np = softn->ipf_nat_rdr_rules + hv;
251 n->in_hv[0] = hv;
274 u_int hv; local
281 hv = NAT_HASH_FN6(&j, 0, softn->ipf_nat_maprules_sz);
284 hv = 0;
289 np = softn->ipf_nat_map_rules + hv;
387 u_int hv; local
1926 u_int hv; local
2245 u_int hv; local
2695 u_32_t hv, nmsk = 0; local
3095 u_32_t hv, rmsk = 0; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
gstack-1.in 64 while getopts hv-: OPT; do
  /src/external/gpl3/gdb.old/dist/gdb/
gstack-1.in 64 while getopts hv-: OPT; do
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-infthread.c 325 gdb::array_view<const gdb_byte> hv; local
329 hv = target_thread_info_to_thread_handle (thread_obj->thread);
336 if (hv.size () == 0)
342 PyObject *object = PyBytes_FromStringAndSize ((const char *) hv.data (),
343 hv.size());
  /src/external/gpl3/gdb/dist/gdb/python/
py-infthread.c 325 gdb::array_view<const gdb_byte> hv; local
329 hv = target_thread_info_to_thread_handle (thread_obj->thread);
336 if (hv.size () == 0)
342 PyObject *object = PyBytes_FromStringAndSize ((const char *) hv.data (),
343 hv.size());

Completed in 35 milliseconds

1 2 3