/src/sys/arch/acorn32/stand/boot32/ |
boot32.c | 932 size_t fragsize; local in function:boot32_read 938 fragsize = nbpp; /* select one page */ 939 if (size < nbpp) fragsize = size;/* clip to size left */ 943 pv_offset, fragsize)->logical; 945 bytes_read = read(f, fragaddr, fragsize); 949 if (bytes_read < fragsize) 952 size -= fragsize; /* advance */ 953 addr += fragsize; 963 size_t fragsize; local in function:boot32_memcpy 967 fragsize = nbpp; /* select one page * 987 size_t fragsize; local in function:boot32_memset [all...] |
/src/distrib/alpha/instkernel/ramdisk/ |
install.sh | 303 fragsize=1024 316 echo ":ta=4.2BSD:ba#${blocksize}:fa#${fragsize}:\\" >> $DT 363 echo ":td=4.2BSD:bd#${blocksize}:fd#${fragsize}:\\" >> $DT 370 echo ":te=4.2BSD:be#${blocksize}:fe#${fragsize}:\\" >> $DT 377 echo ":tf=4.2BSD:bf#${blocksize}:ff#${fragsize}:\\" >> $DT 384 echo ":tg=4.2BSD:bg#${blocksize}:fg#${fragsize}:\\" >> $DT 391 echo ":th=4.2BSD:bh#${blocksize}:fh#${fragsize}:\\" >> $DT
|
/src/sys/arch/hp300/stand/inst/ |
inst.c | 301 int fragsize; local in function:get_fstype 353 fragsize = blocksize / 8; /* XXX */ 354 fragsize = uimax(fragsize, lp->d_secsize); 355 GETNUM(" FFS fragment size? [%d] ", fragsize); 356 if (fragsize < lp->d_secsize || (fragsize % lp->d_secsize) != 0) { 361 if ((blocksize % fragsize) != 0) { 371 pp->p_frag = blocksize / fragsize; 372 pp->p_fsize = fragsize; [all...] |
/src/sys/net80211/ |
ieee80211_output.c | 919 u_int fragno, fragsize, off, remainder, payload; local in function:ieee80211_fragment 934 fragsize = totalhdrsize + remainder; 935 if (fragsize > mtu) 936 fragsize = mtu; 937 IASSERT(fragsize < MCLBYTES, 938 ("fragment size %u too big!", fragsize)); 939 if (fragsize > MHLEN) 947 m_align(m, fragsize - ciphdrsize); 962 payload = fragsize - totalhdrsize;
|
/src/sys/compat/ossaudio/ |
ossaudiovar.h | 170 int fragsize; member in struct:oss_audio_buf_info
|
ossaudio.c | 668 bufinfo.fragsize = tmpinfo.blocksize; 691 bufinfo.fragsize = tmpinfo.blocksize; 699 __func__, bufinfo.fragsize, bufinfo.fragments,
|
/src/lib/libossaudio/ |
oss_dsp.c | 288 bufinfo.fragsize = tmpinfo.blocksize; 300 bufinfo.fragsize = tmpinfo.blocksize;
|
soundcard.h | 345 int fragsize; member in struct:audio_buf_info
|