Home
last modified time | relevance | path

Searched refs:MKNZ (Results 1 – 11 of 11) sorted by relevance

/dports/devel/plan9port/plan9port-1f098efb7370a0b28306d10681e21883fb1c1507/src/cmd/venti/srv/
H A Dfmtarenas.c99 ap->map = MKNZ(AMap, n); in threadmain()
100 ap->arenas = MKNZ(Arena*, n); in threadmain()
H A Dfmtindex.c71 amap = MKNZ(AMap, narenas); in threadmain()
72 arenas = MKNZ(Arena*, narenas); in threadmain()
H A Ddcache.c97 dcache.heads = MKNZ(DBlock*, HashSize); in initdcache()
98 dcache.heap = MKNZ(DBlock*, nblocks); in initdcache()
99 dcache.blocks = MKNZ(DBlock, nblocks); in initdcache()
100 dcache.write = MKNZ(DBlock*, nblocks); in initdcache()
101 dcache.mem = MKNZ(u8int, (nblocks+1+128) * blocksize); in initdcache()
H A Dlumpcache.c50 lumpcache.heads = MKNZ(Lump*, HashSize); in initlumpcache()
51 lumpcache.heap = MKNZ(Lump*, nblocks); in initlumpcache()
52 lumpcache.blocks = MKNZ(Lump, nblocks); in initlumpcache()
H A Dstats.c115 stathist = MKNZ(Stats, nstathist); in statsinit()
H A Darenas.c149 ap->arenas = MKNZ(Arena*, ap->narenas); in initarenapart()
370 am = MKNZ(AMap, n); in parseamap()
H A Dlumpqueue.c49 lumpqs = MKNZ(LumpQueue, nq); in initlumpqueues()
H A Dindex.c126 ix->arenas = MKNZ(Arena*, ix->narenas); in initindex()
355 smap = MKNZ(AMap, n); in newindex()
H A Dsortientry.c180 ib->bucks = MKNZ(IEBuck, ib->nbucks); in initiebucks()
H A Dbuildindex.c239 buf = MKNZ(IEntryBuf, ix->nsects); in arenapartproc()
871 buf = MKNZ(Buf, nbuf); in isectproc()
H A Dfns.h228 #define MKNZ(t,n) ((t*)ezmalloc((n)*sizeof(t))) macro