Home
last modified time | relevance | path

Searched refs:hnext (Results 1 – 25 of 389) sorted by relevance

12345678910>>...16

/dports/security/suricata/suricata-6.0.4/src/
H A Dhost.c357 h = h->hnext; in HostCleanup()
362 h->hprev->hnext = h->hnext; in HostCleanup()
540 h = h->hnext; in HostGetHostFromHash()
564 if (h->hnext) { in HostGetHostFromHash()
568 h->hprev->hnext = h->hnext; in HostGetHostFromHash()
623 h = h->hnext; in HostLookupHostFromHash()
633 if (h->hnext) { in HostLookupHostFromHash()
637 h->hprev->hnext = h->hnext; in HostLookupHostFromHash()
710 h->hprev->hnext = h->hnext; in HostGetUsedHost()
711 if (h->hnext != NULL) in HostGetUsedHost()
[all …]
H A Dippair.c352 h = h->hnext; in IPPairCleanup()
357 h->hprev->hnext = h->hnext; in IPPairCleanup()
580 h = h->hnext; in IPPairGetIPPairFromHash()
604 if (h->hnext) { in IPPairGetIPPairFromHash()
608 h->hprev->hnext = h->hnext; in IPPairGetIPPairFromHash()
663 h = h->hnext; in IPPairLookupIPPairFromHash()
673 if (h->hnext) { in IPPairLookupIPPairFromHash()
677 h->hprev->hnext = h->hnext; in IPPairLookupIPPairFromHash()
750 h->hprev->hnext = h->hnext; in IPPairGetUsedIPPair()
751 if (h->hnext != NULL) in IPPairGetUsedIPPair()
[all …]
H A Ddefrag-timeout.c81 dt->hprev->hnext = dt->hnext; in DefragTrackerHashRowTimeout()
82 if (dt->hnext != NULL) in DefragTrackerHashRowTimeout()
83 dt->hnext->hprev = dt->hprev; in DefragTrackerHashRowTimeout()
85 hb->head = dt->hnext; in DefragTrackerHashRowTimeout()
89 dt->hnext = NULL; in DefragTrackerHashRowTimeout()
H A Dippair-timeout.c104 h->hprev->hnext = h->hnext; in IPPairHashRowTimeout()
105 if (h->hnext != NULL) in IPPairHashRowTimeout()
106 h->hnext->hprev = h->hprev; in IPPairHashRowTimeout()
108 hb->head = h->hnext; in IPPairHashRowTimeout()
112 h->hnext = NULL; in IPPairHashRowTimeout()
H A Ddefrag-hash.c564 dt = dt->hnext; in DefragGetTrackerFromHash()
588 if (dt->hnext) { in DefragGetTrackerFromHash()
592 dt->hprev->hnext = dt->hnext; in DefragGetTrackerFromHash()
598 dt->hnext = hb->head; in DefragGetTrackerFromHash()
647 dt = dt->hnext; in DefragLookupTrackerFromHash()
657 if (dt->hnext) { in DefragLookupTrackerFromHash()
661 dt->hprev->hnext = dt->hnext; in DefragLookupTrackerFromHash()
734 dt->hprev->hnext = dt->hnext; in DefragTrackerGetUsedDefragTracker()
735 if (dt->hnext != NULL) in DefragTrackerGetUsedDefragTracker()
738 hb->head = dt->hnext; in DefragTrackerGetUsedDefragTracker()
[all …]
H A Dhost-timeout.c118 h->hprev->hnext = h->hnext; in HostHashRowTimeout()
119 if (h->hnext != NULL) in HostHashRowTimeout()
120 h->hnext->hprev = h->hprev; in HostHashRowTimeout()
122 hb->head = h->hnext; in HostHashRowTimeout()
126 h->hnext = NULL; in HostHashRowTimeout()
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/rtdb/db/
H A Dmpool.h50 struct BKT *hnext; /* next hash bucket */ member
64 struct BKT *hnext; /* next hash bucket */ member
100 (bp)->hprev->hnext = (bp)->hnext; \
101 (bp)->hnext->hprev = (bp)->hprev; \
105 (bp)->hnext = hp->hnext; \
107 hp->hnext->hprev = (bp); \
108 hp->hnext = (bp); \
/dports/science/nwchem-data/nwchem-7.0.2-release/src/rtdb/db/
H A Dmpool.h50 struct BKT *hnext; /* next hash bucket */ member
64 struct BKT *hnext; /* next hash bucket */ member
100 (bp)->hprev->hnext = (bp)->hnext; \
101 (bp)->hnext->hprev = (bp)->hprev; \
105 (bp)->hnext = hp->hnext; \
107 hp->hnext->hprev = (bp); \
108 hp->hnext = (bp); \
/dports/irc/ircd-hybrid/ircd-hybrid-8.2.39/src/
H A Dhash.c110 client->hnext = clientTable[hashv]; in hash_add_client()
189 clientTable[hashv] = client->hnext; in hash_del_client()
190 client->hnext = client; in hash_del_client()
194 while (tmp->hnext != client) in hash_del_client()
195 if ((tmp = tmp->hnext) == NULL) in hash_del_client()
198 tmp->hnext = tmp->hnext->hnext; in hash_del_client()
199 client->hnext = client; in hash_del_client()
260 prev->hnext = client->hnext; in hash_find_client()
261 client->hnext = clientTable[hashv]; in hash_find_client()
321 prev->hnext = client->hnext; in hash_find_server()
[all …]
/dports/irc/undernet-ircu/ircu2.10.12.19/ircd/
H A Dhash.c137 chptr->hnext = channelTable[hashv]; in hAddChannel()
196 channelTable[hashv] = chptr->hnext; in hRemChannel()
197 chptr->hnext = chptr; in hRemChannel()
202 if (tmp->hnext == chptr) { in hRemChannel()
203 tmp->hnext = tmp->hnext->hnext; in hRemChannel()
204 chptr->hnext = chptr; in hRemChannel()
207 tmp = tmp->hnext; in hRemChannel()
253 while (prev = chptr, chptr = chptr->hnext) { in hSeekChannel()
255 prev->hnext = chptr->hnext; in hSeekChannel()
256 chptr->hnext = channelTable[hashv]; in hSeekChannel()
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/differential_equations/src/fortran/
H A Dodeint.f28 double precision x1,x2,rtol,hmin,hdid,hnext local
58 $ rwork(lyscal),hdid,hnext,derivs,rwork(lwork))
67 rwork(lh)=hnext
71 if(abs(hnext).lt.hmin) then
72 write(messag, 17) hnext,hmin
73 hnext=hmin
75 h=hnext
/dports/cad/irsim/irsim-9.7.110/base/
H A Dnsubrs.c279 n->hnext = n; /* node NOT inserted in hash-table */
321 for( n = *prev; n != NULL; n = *(prev = &n->hnext) )
333 nd->hnext = *prev;
347 for( n = *prev; n != NULL ; n = *(prev = &n->hnext) )
353 *prev = n->hnext;
354 n->hnext = n; /* mark node not in hash-table */
373 for( n = hash[index]; n; n = n->hnext )
394 for( n = hash[ ma ], mi = 0; n; n = n->hnext, mi++ )
415 for( n = hash[index]; n != NULL; n = n->hnext ) in GetNodeList()
457 for( n = hash[ ma ], mi = 0; n != NULL; n = n->hnext, mi++ )
[all …]
/dports/science/clhep/2.4.1.0/CLHEP/GenericFunctions/src/
H A DAdaptiveRKStepper.cc44 double hnext; in step() local
73 hnext=h; in step()
78 hnext = S*h*std::pow(T/(delta + TINY),1.0/(p+1)); in step()
80 if (hnext<h) hnext=h; in step()
83 hnext = Rmax*h; in step()
88 stepsize=hnext; in step()
/dports/irc/unreal/Unreal3.2.10.7/src/
H A Dhash.c228 prev->hnext = tmp->hnext; in del_from_client_hash_table()
231 tmp->hnext = NULL; in del_from_client_hash_table()
467 anptr = anptr->hnext; in count_watch_memory()
496 anptr = anptr->hnext; in add_to_watch_hash_table()
506 anptr->hnext = watchTable[hashv]; in add_to_watch_hash_table()
553 anptr = anptr->hnext; in hash_check_watch()
621 anptr = anptr->hnext; in hash_get_watch()
643 anptr = anptr->hnext; in del_from_watch_hash_table()
693 nlast->hnext = anptr->hnext; in del_from_watch_hash_table()
752 np2 = np2->hnext; in hash_del_watch_list()
[all …]
/dports/net/hostapd-devel/hostap-14ab4a816/src/ap/
H A Dap_list.c59 s = s->hnext; in ap_get_ap()
92 ap->hnext = iface->ap_hash[STA_HASH(ap->addr)]; in ap_ap_hash_add()
104 iface->ap_hash[STA_HASH(ap->addr)] = s->hnext; in ap_ap_hash_del()
108 while (s->hnext != NULL && in ap_ap_hash_del()
109 os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0) in ap_ap_hash_del()
110 s = s->hnext; in ap_ap_hash_del()
111 if (s->hnext != NULL) in ap_ap_hash_del()
112 s->hnext = s->hnext->hnext; in ap_ap_hash_del()
/dports/net/hostapd/hostapd-2.9/src/ap/
H A Dap_list.c59 s = s->hnext; in ap_get_ap()
92 ap->hnext = iface->ap_hash[STA_HASH(ap->addr)]; in ap_ap_hash_add()
104 iface->ap_hash[STA_HASH(ap->addr)] = s->hnext; in ap_ap_hash_del()
108 while (s->hnext != NULL && in ap_ap_hash_del()
109 os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0) in ap_ap_hash_del()
110 s = s->hnext; in ap_ap_hash_del()
111 if (s->hnext != NULL) in ap_ap_hash_del()
112 s->hnext = s->hnext->hnext; in ap_ap_hash_del()
/dports/security/wpa_supplicant-devel/hostap-14ab4a816/src/ap/
H A Dap_list.c59 s = s->hnext; in ap_get_ap()
92 ap->hnext = iface->ap_hash[STA_HASH(ap->addr)]; in ap_ap_hash_add()
104 iface->ap_hash[STA_HASH(ap->addr)] = s->hnext; in ap_ap_hash_del()
108 while (s->hnext != NULL && in ap_ap_hash_del()
109 os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0) in ap_ap_hash_del()
110 s = s->hnext; in ap_ap_hash_del()
111 if (s->hnext != NULL) in ap_ap_hash_del()
112 s->hnext = s->hnext->hnext; in ap_ap_hash_del()
/dports/security/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dap_list.c59 s = s->hnext; in ap_get_ap()
92 ap->hnext = iface->ap_hash[STA_HASH(ap->addr)]; in ap_ap_hash_add()
104 iface->ap_hash[STA_HASH(ap->addr)] = s->hnext; in ap_ap_hash_del()
108 while (s->hnext != NULL && in ap_ap_hash_del()
109 os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0) in ap_ap_hash_del()
110 s = s->hnext; in ap_ap_hash_del()
111 if (s->hnext != NULL) in ap_ap_hash_del()
112 s->hnext = s->hnext->hnext; in ap_ap_hash_del()
/dports/net/wpa_supplicant_gui/wpa_supplicant-2.9/src/ap/
H A Dap_list.c59 s = s->hnext; in ap_get_ap()
92 ap->hnext = iface->ap_hash[STA_HASH(ap->addr)]; in ap_ap_hash_add()
104 iface->ap_hash[STA_HASH(ap->addr)] = s->hnext; in ap_ap_hash_del()
108 while (s->hnext != NULL && in ap_ap_hash_del()
109 os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0) in ap_ap_hash_del()
110 s = s->hnext; in ap_ap_hash_del()
111 if (s->hnext != NULL) in ap_ap_hash_del()
112 s->hnext = s->hnext->hnext; in ap_ap_hash_del()
/dports/graphics/mirtk/MIRTK-2.0.0-122-g38210fa/Modules/Transformation/src/
H A DFreeFormTransformationRungeKutta.h427 if (abs(hnext) < mindt) hnext = copysign(mindt, d); in Transform()
428 else if (abs(hnext) > maxdt) hnext = copysign(maxdt, d); in Transform()
431 hnext = h; in Transform()
439 h = hnext; in Transform()
521 if (abs(hnext) < mindt) hnext = copysign(mindt, d); in Jacobian()
522 else if (abs(hnext) > maxdt) hnext = copysign(maxdt, d); in Jacobian()
525 hnext = h; in Jacobian()
537 h = hnext; in Jacobian()
622 if (abs(hnext) < mindt) hnext = copysign(mindt, d); in JacobianDOFs()
636 h = hnext; in JacobianDOFs()
[all …]
/dports/games/libretro-gw/gw-libretro-2be30ba/lua/src/
H A Dlstring.c72 TString *hnext = p->hnext; /* save next */ in luaS_resize() local
74 p->hnext = tb->hash[h]; /* chain it */ in luaS_resize()
76 p = hnext; in luaS_resize()
113 p = &(*p)->hnext; in luaS_remove()
114 *p = (*p)->hnext; /* remove element from its list */ in luaS_remove()
127 for (ts = *list; ts != NULL; ts = ts->hnext) { in internshrstr()
141 ts->hnext = *list; in internshrstr()
/dports/emulators/mess/mame-mame0226/3rdparty/genie/src/host/lua-5.3.0/src/
H A Dlstring.c72 TString *hnext = p->hnext; /* save next */ in luaS_resize() local
74 p->hnext = tb->hash[h]; /* chain it */ in luaS_resize()
76 p = hnext; in luaS_resize()
113 p = &(*p)->hnext; in luaS_remove()
114 *p = (*p)->hnext; /* remove element from its list */ in luaS_remove()
127 for (ts = *list; ts != NULL; ts = ts->hnext) { in internshrstr()
141 ts->hnext = *list; in internshrstr()
/dports/devel/genie/GENie-a503d6e/src/host/lua-5.3.0/src/
H A Dlstring.c72 TString *hnext = p->hnext; /* save next */ in luaS_resize() local
74 p->hnext = tb->hash[h]; /* chain it */ in luaS_resize()
76 p = hnext; in luaS_resize()
113 p = &(*p)->hnext; in luaS_remove()
114 *p = (*p)->hnext; /* remove element from its list */ in luaS_remove()
127 for (ts = *list; ts != NULL; ts = ts->hnext) { in internshrstr()
141 ts->hnext = *list; in internshrstr()
/dports/emulators/mame/mame-mame0226/3rdparty/genie/src/host/lua-5.3.0/src/
H A Dlstring.c72 TString *hnext = p->hnext; /* save next */ in luaS_resize() local
74 p->hnext = tb->hash[h]; /* chain it */ in luaS_resize()
76 p = hnext; in luaS_resize()
113 p = &(*p)->hnext; in luaS_remove()
114 *p = (*p)->hnext; /* remove element from its list */ in luaS_remove()
127 for (ts = *list; ts != NULL; ts = ts->hnext) { in internshrstr()
141 ts->hnext = *list; in internshrstr()
/dports/www/c-icap/c_icap-0.5.10/
H A Dcache.c86 struct ci_cache_entry *hnext; member
164 cache_data->last_queue_entry->hnext = NULL; in ci_local_cache_init()
186 cache_data->last_queue_entry->hnext = NULL; in ci_local_cache_init()
271 assert(e != e->hnext); in ci_local_cache_search()
272 e = e->hnext; in ci_local_cache_search()
323 cache_data->hash_table[e->hash] = tmp->hnext; in ci_local_cache_update()
325 while (tmp->hnext != NULL && e != tmp->hnext) tmp = tmp->hnext; in ci_local_cache_update()
326 if (tmp->hnext) in ci_local_cache_update()
327 tmp->hnext = tmp->hnext->hnext; in ci_local_cache_update()
331 e->hnext = NULL; in ci_local_cache_update()
[all …]

12345678910>>...16