Searched refs:b_next (Results 1 - 25 of 26) sorted by relevance

12

/netbsd-current/games/backgammon/backgammon/
H A Dmove.c57 struct BOARD *b_next; /* forward queue pointer */ member in struct:BOARD
281 qp->b_next = 0;
286 new->b_next = qp;
295 while (qp->b_next != 0) {/* traverse queue */
296 result = bcomp(new, qp->b_next);
298 new->b_next = qp->b_next;
299 qp->b_next = new;
303 mvcheck(mm, qp->b_next, new);
307 qp = qp->b_next;
[all...]
/netbsd-current/sbin/fsck_ext2fs/
H A Dutilities.c153 bufhead.b_next = bufhead.b_prev = &bufhead;
169 bp->b_next = bufhead.b_next;
170 bufhead.b_next->b_prev = bp;
171 bufhead.b_next = bp;
185 for (bp = bufhead.b_next; bp != &bufhead; bp = bp->b_next)
198 bp->b_prev->b_next = bp->b_next;
199 bp->b_next
[all...]
H A Dfsck.h80 struct bufarea *b_next; /* free list queue */ member in struct:bufarea
/netbsd-current/sbin/ifconfig/
H A Dextern.h69 SIMPLEQ_ENTRY(cmdloop_branch) b_next; member in struct:cmdloop_branch
H A Dparse.c574 SIMPLEQ_FOREACH(b, &pb->pb_branches, b_next) {
750 SIMPLEQ_INSERT_HEAD(&pb->pb_branches, b, b_next);
764 SIMPLEQ_REMOVE_HEAD(&pb->pb_branches, b_next);
775 SIMPLEQ_INSERT_TAIL(&pb->pb_branches, b, b_next);
781 SIMPLEQ_REMOVE_HEAD(&pb->pb_branches, b_next);
801 SIMPLEQ_FOREACH(b, &pb->pb_branches, b_next) {
H A Dparse.h46 SIMPLEQ_ENTRY(branch) b_next; member in struct:branch
H A Difconfig.c408 SIMPLEQ_INSERT_TAIL(&cmdloop_branches, b, b_next);
504 SIMPLEQ_FOREACH(b, &cmdloop_branches, b_next)
/netbsd-current/games/hunt/huntd/
H A Dshots.c88 next = bp->b_next;
105 bp->b_next = Bullets;
112 bp->b_next = Bullets;
120 bp->b_next = Bullets;
126 bp->b_next = Bullets;
135 next = bp->b_next;
217 zapshot(bp->b_next, bp);
223 zapshot(bp->b_next, bp);
560 bp->b_next = Bullets;
992 for (bp = blist; bp != NULL; bp = bp->b_next) {
[all...]
H A Dhunt.h119 BULLET *b_next; member in struct:bullet_def
H A Dexecute.c465 bp->b_next = Bullets;
492 bp->b_next = NULL;
H A Ddriver.c701 for (bp = Bullets; bp != NULL; bp = bp->b_next) {
/netbsd-current/sbin/fsck_ffs/
H A Dutilities.c150 bufhead.b_next = bufhead.b_prev = &bufhead;
169 bp->b_next = bufhead.b_next;
170 bufhead.b_next->b_prev = bp;
171 bufhead.b_next = bp;
185 for (bp = bufhead.b_next; bp != &bufhead; bp = bp->b_next)
196 bp->b_prev->b_next = bp->b_next;
197 bp->b_next
[all...]
H A Dfsck.h108 struct bufarea *b_next; /* free list queue */ member in struct:bufarea
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
H A Darc.h127 arc_buf_t *b_next; member in struct:arc_buf
/netbsd-current/external/bsd/openldap/dist/servers/lloadd/
H A Dbackend.c314 next = LDAP_CIRCLEQ_LOOP_NEXT( &backend, b, b_next );
687 LloadBackend *next = LDAP_CIRCLEQ_LOOP_NEXT( &backend, b, b_next );
697 LDAP_CIRCLEQ_REMOVE( &backend, b, b_next );
H A Dlload.h260 LDAP_CIRCLEQ_ENTRY(LloadBackend) b_next; member in struct:LloadBackend
H A Ddaemon.c1286 LDAP_CIRCLEQ_FOREACH ( b, &backend, b_next ) {
1339 LDAP_CIRCLEQ_FOREACH ( b, &backend, b_next ) {
1700 LDAP_CIRCLEQ_FOREACH ( b, &backend, b_next ) {
H A Dmonitor.c908 LDAP_CIRCLEQ_FOREACH ( b, &backend, b_next ) {
948 LDAP_CIRCLEQ_FOREACH ( b, &backend, b_next ) {
H A Doperation.c632 LDAP_CIRCLEQ_FOREACH ( b, &backend, b_next ) {
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Darc.c162 * | | |b_next +---->+---------+
163 * | b_pdata +-+ |---------| |b_next +-->NULL
213 * | | |b_next +---->+---------+
214 * | b_pdata +-+ |---------| |b_next +-->NULL
1207 #define ARC_BUF_LAST(buf) ((buf)->b_next == NULL)
2121 buf = buf->b_next) {
2158 buf = buf->b_next) {
2332 buf = buf->b_next) {
2387 buf = buf->b_next) {
2509 buf->b_next
[all...]
/netbsd-current/usr.bin/rdist/
H A Dserver.c203 bp->b_next = expand(makeblock(NAME, cp), E_VARS);
204 while (bp->b_next != NULL)
205 bp = bp->b_next;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Delfread.c999 struct breakpoint *b_next = b->related_breakpoint; local
1014 b = b_next;
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Delfread.c1017 struct breakpoint *b_next = b->related_breakpoint; local
1031 b = (code_breakpoint *) b_next;
/netbsd-current/external/gpl3/gcc.old/dist/libgomp/plugin/
H A Dplugin-nvptx.c528 struct ptx_free_block *b_next = b->next; local
531 b = b_next;
/netbsd-current/external/gpl3/gcc/dist/libgomp/plugin/
H A Dplugin-nvptx.c554 struct ptx_free_block *b_next = b->next; local
557 b = b_next;

Completed in 486 milliseconds

12