Home
last modified time | relevance | path

Searched refs:DSIZE (Results 1 – 6 of 6) sorted by relevance

/freebsd-11-stable/usr.sbin/fwcontrol/
HDfwdv.c83 #define DSIZE 480 macro
116 pad = malloc(DSIZE*MAXBLOCKS); in dvrecv()
117 memset(pad, 0xff, DSIZE*MAXBLOCKS); in dvrecv()
219 npad *= DSIZE; in dvrecv()
236 wbuf[vec++].iov_len = DSIZE; in dvrecv()
275 pbuf = malloc(DSIZE * TNBUF); in dvsend()
295 pkt->mode.stream.len = DSIZE + sizeof(struct ciphdr); in dvsend()
325 while (tlen < DSIZE * TNBUF) { in dvsend()
326 len = read(fd, pbuf + tlen, DSIZE * TNBUF - tlen); in dvsend()
342 dv = (struct dvdbc *)(pbuf + offset * DSIZE); in dvsend()
[all …]
/freebsd-11-stable/usr.sbin/pc-sysinstall/backend/
HDfunctions.sh227 DSIZE=`du -k ${FETCHOUTFILE} | tr -d '\t' | cut -d '/' -f 1`
228 if [ $(is_num "$DSIZE") ] ; then
229 if [ $SIZE -lt $DSIZE ] ; then DSIZE="$SIZE"; fi
230 echo "SIZE: ${SIZE} DOWNLOADED: ${DSIZE}"
231 echo "SIZE: ${SIZE} DOWNLOADED: ${DSIZE}" >>${LOGOUT}
/freebsd-11-stable/lib/libc/db/hash/
HDhash.c211 "DIRECTORY SIZE ", hashp->DSIZE, in __hash_open()
283 hashp->DSIZE = DEF_DIRSIZE; in init_hash()
368 if (nsegs > hashp->DSIZE) in init_htab()
369 hashp->DSIZE = nsegs; in init_htab()
807 if (new_segnum >= hashp->DSIZE) { in __expand_table()
809 dirsize = hashp->DSIZE * sizeof(SEGMENT *); in __expand_table()
812 hashp->DSIZE = dirsize << 1; in __expand_table()
884 calloc(hashp->DSIZE, sizeof(SEGMENT *))) == NULL) { in alloc_segs()
HDhash.h273 #define DSIZE hdr.dsize macro
/freebsd-11-stable/usr.sbin/ppp/
HDlink.c372 #define DSIZE (sizeof despatcher / sizeof despatcher[0]) macro
379 for (f = 0; f < DSIZE; f++) in Despatch()
389 f == DSIZE ? "Unknown" : "Unexpected", proto, in Despatch()
/freebsd-11-stable/contrib/gcc/cp/
HDChangeLog-20005357 (layout_virtual_bases): DSIZE is unsigned HOST_WIDE_INT.