Searched refs:blist (Results 1 - 12 of 12) sorted by relevance

/netbsd-current/sys/sys/
H A Dblist.h1 /* $NetBSD: blist.h,v 1.7 2005/12/11 12:25:20 christos Exp $ */
34 * blist = blist_create(blocks)
35 * (void) blist_destroy(blist)
36 * blkno = blist_alloc(blist, count)
37 * (void) blist_free(blist, blkno, count)
38 * nblks = blist_fill(blist, blkno, count)
39 * (void) blist_resize(&blist, count, freeextra)
49 * capable of managing up to (2^31) blocks per blist, though
54 * $FreeBSD: src/sys/sys/blist.h,v 1.9 2005/01/07 02:29:23 imp Exp $
75 typedef struct blist *blist_
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Ddcache.c146 append_block (struct dcache_block **blist, struct dcache_block *block) argument
148 if (*blist)
150 block->next = *blist;
151 block->prev = (*blist)->prev;
153 (*blist)->prev = block;
161 *blist = block;
168 remove_block (struct dcache_block **blist, struct dcache_block *block) argument
172 *blist = NULL;
181 if (*blist == block)
182 *blist
191 for_each_block(struct dcache_block **blist, block_func *func, void *param) argument
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Ddcache.c150 append_block (struct dcache_block **blist, struct dcache_block *block) argument
152 if (*blist)
154 block->next = *blist;
155 block->prev = (*blist)->prev;
157 (*blist)->prev = block;
165 *blist = block;
172 remove_block (struct dcache_block **blist, struct dcache_block *block) argument
176 *blist = NULL;
185 if (*blist == block)
186 *blist
195 for_each_block(struct dcache_block **blist, block_func *func, void *param) argument
[all...]
/netbsd-current/sbin/ldconfig/
H A Dldconfig.c376 struct hints_bucket *blist; local
408 blist = (struct hints_bucket *)xmalloc(n);
409 memset(blist, 0, n);
412 blist[i].hi_next = -1;
420 bp = blist +
425 if (blist[i].hi_pathx == 0)
433 bp = &blist[bp->hi_next];
435 bp = blist + i;
472 if ((size_t)write(fd, blist, hdr.hh_nbucket * sizeof(struct hints_bucket)) !=
501 free(blist);
519 struct hints_bucket *blist; local
[all...]
/netbsd-current/usr.sbin/lpr/lpd/
H A Dlpd.c124 char **blist; /* list of addresses to bind(2) to */ variable
167 newblist = realloc(blist,
171 blist = newblist;
174 blist[blist_addrs++] = strdup(optarg);
288 if (blist != NULL) {
290 free(blist[i]);
291 free(blist);
751 error = getaddrinfo((blist_addrs == 0) ? NULL : blist[blidx],
755 syslog(LOG_ERR, "%s: %s", blist[blidx],
/netbsd-current/games/hunt/huntd/
H A Dshots.c72 BULLET *blist; local
85 blist = Bullets;
87 for (bp = blist; bp != NULL; bp = next) {
132 blist = Bullets;
134 for (bp = blist; bp != NULL; bp = next) {
986 zapshot(BULLET *blist, BULLET *obp) argument
992 for (bp = blist; bp != NULL; bp = bp->b_next) {
1002 explshot(blist, obp->b_y, obp->b_x);
1010 explshot(BULLET *blist, int y, int x) argument
1014 for (bp = blist; b
1097 find_under(BULLET *blist, BULLET *bp) argument
[all...]
/netbsd-current/sys/kern/
H A Dsubr_blist.c57 * Unlike the rlist code, the blist code wires all necessary memory at
60 * on an rlist_free() call. The non-blocking features of the blist code
62 * rlist code uses a little less overall memory than the blist code (but
63 * due to swap interleaving not all that much less), but the blist code
98 #include <sys/blist.h>
119 #include "../sys/blist.h"
137 struct blist { struct
174 * blist_create() - create a blist capable of handling up to the specified
179 * The smallest blist consists of a single leaf node capable of
202 bl = kmem_zalloc(sizeof(struct blist), KM_SLEE
[all...]
/netbsd-current/external/apache2/mDNSResponder/dist/mDNSShared/
H A Duds_daemon.c5264 browser_t *blist; local
5266 for (blist = req->u.browser.browsers; blist; blist = blist->next)
5268 (blist == req->u.browser.browsers) ? prefix : " ", req->flags, req->interfaceIndex, blist->q.qname.c,
5336 browser_t *blist; local
5337 for (blist = req->u.browser.browsers; blist; blis
5401 browser_t *blist; local
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/external/perl/Text-Template-1.46/lib/Text/
H A DTemplate.pm726 { my $blist = '';
728 $blist .= qq{ * $i\n};
730 $blist;
733 Here we construct the list in a variable called C<$blist>, which we
/netbsd-current/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm850 { my $blist = '';
852 $blist .= qq{ * $i\n};
854 $blist;
857 Here we construct the list in a variable called C<$blist>, which we
/netbsd-current/external/bsd/nsd/dist/
H A Doptions.c1009 struct acl_options* b, *blast = NULL, *blist = NULL; local
1023 if(!blist) blist = b;
1029 return blist;
/netbsd-current/sys/uvm/
H A Duvm_swap.c55 #include <sys/blist.h>
143 blist_t swd_blist; /* blist for this swapdev */
1702 /* XXXMRG: ugh! blist should support this for us */

Completed in 406 milliseconds