Home
last modified time | relevance | path

Searched refs:blist (Results 1 – 9 of 9) sorted by relevance

/dragonfly/contrib/gdb-7/gdb/
HDdcache.c152 append_block (struct dcache_block **blist, struct dcache_block *block) in append_block() argument
154 if (*blist) in append_block()
156 block->next = *blist; in append_block()
157 block->prev = (*blist)->prev; in append_block()
159 (*blist)->prev = block; in append_block()
167 *blist = block; in append_block()
174 remove_block (struct dcache_block **blist, struct dcache_block *block) in remove_block() argument
178 *blist = NULL; in remove_block()
187 if (*blist == block) in remove_block()
188 *blist = block->next; in remove_block()
[all …]
/dragonfly/games/hunt/huntd/
HDshots.c97 BULLET *blist; in moveshots() local
111 blist = Bullets; in moveshots()
115 for (bp = blist; bp != NULL; bp = next) { in moveshots()
168 blist = Bullets; in moveshots()
170 for (bp = blist; bp != NULL; bp = next) { in moveshots()
1071 zapshot(BULLET *blist, BULLET *obp) in zapshot() argument
1075 for (bp = blist; bp != NULL; bp = bp->b_next) { in zapshot()
1081 explshot(blist, obp->b_y, obp->b_x); in zapshot()
1092 explshot(BULLET *blist, int y, int x) in explshot() argument
1096 for (bp = blist; bp != NULL; bp = bp->b_next) in explshot()
[all …]
/dragonfly/sbin/fsck_hammer2/
HDtest.c330 struct blockref_list blist; in test_pfs_blockref() local
343 TAILQ_INIT(&blist); in test_pfs_blockref()
344 if (init_pfs_blockref(&broot, &blist) == -1) { in test_pfs_blockref()
349 if (TAILQ_EMPTY(&blist)) { in test_pfs_blockref()
354 TAILQ_FOREACH(p, &blist, entry) { in test_pfs_blockref()
387 cleanup_pfs_blockref(&blist); in test_pfs_blockref()
1026 __add_pfs_blockref(const hammer2_blockref_t *bref, struct blockref_list *blist, in __add_pfs_blockref() argument
1036 p = TAILQ_FIRST(blist); in __add_pfs_blockref()
1051 TAILQ_INSERT_TAIL(blist, newp, entry); in __add_pfs_blockref()
1055 init_pfs_blockref(const hammer2_blockref_t *bref, struct blockref_list *blist) in init_pfs_blockref() argument
[all …]
/dragonfly/sys/sys/
HDblist.h90 typedef struct blist { struct
/dragonfly/sys/vm/
HDswap_pager.h101 extern struct blist *swapblist;
HDswap_pager.c169 struct blist *swapblist;
/dragonfly/lib/libkvm/
HDkvm_getswapinfo.c378 struct blist *swapblist = NULL; in dump_blist()
379 struct blist blcopy = { 0 }; in dump_blist()
/dragonfly/contrib/gdb-7/gdb/cli/
HDcli-script.c1331 struct command_line **blist; in free_command_lines() local
1338 blist = l->body_list; in free_command_lines()
1339 for (i = 0; i < l->body_count; i++, blist++) in free_command_lines()
1340 free_command_lines (blist); in free_command_lines()
/dragonfly/sys/kern/
HDsubr_blist.c194 bl = kmalloc(sizeof(struct blist), M_SWAP, M_WAITOK | M_ZERO); in blist_create()