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

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A Dpr28778.c8 const int *blist; local
11 blist = alistp;
15 blist = list;
17 aglChoosePixelFormat ((GLint *) blist);
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dblist.h1 /* $NetBSD: blist.h,v 1.6.10.1 2005/11/10 14:12:12 skrll 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-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.law/
H A Dvtable3.C23 B blist[10]; local
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dalign2.C16 Bar blist[10]; local
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.law/
H A Dvtable3.C23 B blist[10]; local
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dalign2.C16 Bar blist[10]; local
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Ddcache.c147 append_block (struct dcache_block **blist, struct dcache_block *block) argument
149 if (*blist)
151 block->next = *blist;
152 block->prev = (*blist)->prev;
154 (*blist)->prev = block;
162 *blist = block;
169 remove_block (struct dcache_block **blist, struct dcache_block *block) argument
173 *blist = NULL;
182 if (*blist == block)
183 *blist
192 for_each_block(struct dcache_block **blist, block_func *func, void *param) argument
[all...]
/netbsd-6-1-5-RELEASE/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-6-1-5-RELEASE/usr.sbin/lpr/lpd/
H A Dlpd.c124 char **blist; /* list of addresses to bind(2) to */ variable
168 newblist = realloc(blist,
172 blist = newblist;
175 blist[blist_addrs++] = strdup(optarg);
289 if (blist != NULL) {
291 free(blist[i]);
292 free(blist);
752 error = getaddrinfo((blist_addrs == 0) ? NULL : blist[blidx],
756 syslog(LOG_ERR, "%s: %s", blist[blidx],
/netbsd-6-1-5-RELEASE/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) {
984 zapshot(BULLET *blist, BULLET *obp) argument
990 for (bp = blist; bp != NULL; bp = bp->b_next) {
1000 explshot(blist, obp->b_y, obp->b_x);
1008 explshot(BULLET *blist, int y, int x) argument
1012 for (bp = blist; b
1095 find_under(BULLET *blist, BULLET *bp) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/cli/
H A Dcli-script.c1298 struct command_line **blist;
1305 blist = l->body_list;
1306 for (i = 0; i < l->body_count; i++, blist++)
1307 free_command_lines (blist);
1296 struct command_line **blist; local
/netbsd-6-1-5-RELEASE/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 then 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-6-1-5-RELEASE/external/apache2/mDNSResponder/dist/mDNSShared/
H A Duds_daemon.c4100 browser_t *blist; local
4101 for (blist = req->u.browser.browsers; blist; blist = blist->next)
4102 LogMsgNoIdent("%3d: DNSServiceBrowse %##s", req->sd, blist->q.qname.c);
/netbsd-6-1-5-RELEASE/sys/uvm/
H A Duvm_swap.c52 #include <sys/blist.h>
137 blist_t swd_blist; /* blist for this swapdev */
1577 /* XXXMRG: ugh! blist should support this for us */

Completed in 139 milliseconds