Home
last modified time | relevance | path

Searched refs:head2 (Results 1 – 12 of 12) sorted by relevance

/openbmc/linux/net/ipv4/
H A Dinet_hashtables.c184 struct inet_bind_hashbucket *head, *head2; in __inet_put_port() local
191 head2 = inet_bhashfn_portaddr(hashinfo, sk, net, inet_sk(sk)->inet_num); in __inet_put_port()
200 spin_lock(&head2->lock); in __inet_put_port()
208 spin_unlock(&head2->lock); in __inet_put_port()
225 struct inet_bind_hashbucket *head, *head2; in __inet_inherit_port() local
235 head2 = inet_bhashfn_portaddr(table, child, net, port); in __inet_inherit_port()
238 spin_lock(&head2->lock); in __inet_inherit_port()
242 spin_unlock(&head2->lock); in __inet_inherit_port()
262 spin_unlock(&head2->lock); in __inet_inherit_port()
275 tb2 = inet_bind2_bucket_find(head2, net, port, l3mdev, child); in __inet_inherit_port()
[all …]
H A Dinet_connection_sock.c290 struct inet_bind_hashbucket *head2; in inet_bhash2_addr_any_conflict() local
301 head2 = inet_bhash2_addr_any_hashbucket(sk, net, port); in inet_bhash2_addr_any_conflict()
303 spin_lock(&head2->lock); in inet_bhash2_addr_any_conflict()
305 inet_bind_bucket_for_each(tb2, &head2->chain) { in inet_bhash2_addr_any_conflict()
316 spin_unlock(&head2->lock); in inet_bhash2_addr_any_conflict()
332 struct inet_bind_hashbucket *head, *head2; in inet_csk_find_open_port() local
380 head2 = inet_bhashfn_portaddr(hinfo, sk, net, port); in inet_csk_find_open_port()
381 spin_lock(&head2->lock); in inet_csk_find_open_port()
382 tb2 = inet_bind2_bucket_find(head2, net, port, l3mdev, sk); in inet_csk_find_open_port()
388 spin_unlock(&head2->lock); in inet_csk_find_open_port()
[all …]
/openbmc/openbmc/poky/meta/recipes-core/musl/bsd-headers/
H A Dsys-queue.h214 #define LIST_MOVE(head1, head2) do { \ argument
215 LIST_INIT((head2)); \
217 (head2)->lh_first = (head1)->lh_first; \
383 #define SIMPLEQ_CONCAT(head1, head2) do { \ argument
384 if (!SIMPLEQ_EMPTY((head2))) { \
385 *(head1)->sqh_last = (head2)->sqh_first; \
386 (head1)->sqh_last = (head2)->sqh_last; \
387 SIMPLEQ_INIT((head2)); \
556 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
557 if (!TAILQ_EMPTY(head2)) { \
[all …]
/openbmc/qemu/include/qemu/
H A Dqueue.h354 #define QSIMPLEQ_CONCAT(head1, head2) do { \ argument
355 if (!QSIMPLEQ_EMPTY((head2))) { \
356 *(head1)->sqh_last = (head2)->sqh_first; \
357 (head1)->sqh_last = (head2)->sqh_last; \
358 QSIMPLEQ_INIT((head2)); \
362 #define QSIMPLEQ_PREPEND(head1, head2) do { \ argument
363 if (!QSIMPLEQ_EMPTY((head2))) { \
364 *(head2)->sqh_last = (head1)->sqh_first; \
365 (head1)->sqh_first = (head2)->sqh_first; \
366 QSIMPLEQ_INIT((head2)); \
/openbmc/linux/drivers/video/fbdev/nvidia/
H A Dnv_type.h79 u32 head2; member
H A Dnvidia.c441 state->head2 = NV_RD32(par->PCRTC0, 0x00002860) | 0x00001000; in nvidia_calc_regs()
449 state->head2 = NV_RD32(par->PCRTC0, 0x00002860) & ~0x00001000; in nvidia_calc_regs()
H A Dnv_hw.c1520 NV_WR32(par->PCRTC0, 0x2860, state->head2); in NVLoadStateExt()
1662 state->head2 = NV_RD32(par->PCRTC0, 0x2860); in NVUnloadStateExt()
/openbmc/linux/kernel/
H A Dpid.c376 struct hlist_head *head2 = &pid2->tasks[PIDTYPE_PID]; in exchange_tids() local
379 hlists_swap_heads_rcu(head1, head2); in exchange_tids()
/openbmc/linux/drivers/video/fbdev/riva/
H A Driva_hw.h515 U032 head2; member
H A Dfbdev.c788 newmode.ext.head2 = NV_RD32(par->riva.PCRTC0, 0x00002860) | in riva_load_video_mode()
796 newmode.ext.head2 = NV_RD32(par->riva.PCRTC0, 0x00002860) & in riva_load_video_mode()
H A Driva_hw.c1529 NV_WR32(chip->PCRTC0, 0x00002860, state->head2); in LoadStateExt()
1775 state->head2 = NV_RD32(chip->PCRTC0, 0x00002860); in UnloadStateExt()
/openbmc/linux/kernel/events/
H A Dcore.c3444 #define double_list_for_each_entry(pos1, pos2, head1, head2, member) \ argument
3446 pos2 = list_first_entry(head2, typeof(*pos2), member); \
3448 !list_entry_is_head(pos2, head2, member); \