Searched refs:fragsize (Results 1 - 9 of 9) sorted by relevance

/netbsd-current/sys/arch/acorn32/stand/boot32/
H A Dboot32.c932 size_t fragsize; local
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
967 fragsize
987 size_t fragsize; local
[all...]
/netbsd-current/distrib/alpha/instkernel/ramdisk/
H A Dinstall.sh303 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
/netbsd-current/sys/arch/hp300/stand/inst/
H A Dinst.c301 int fragsize; local
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...]
/netbsd-current/sys/net80211/
H A Dieee80211_output.c920 u_int fragno, fragsize, off, remainder, payload; local
935 fragsize = totalhdrsize + remainder;
936 if (fragsize > mtu)
937 fragsize = mtu;
938 IASSERT(fragsize < MCLBYTES,
939 ("fragment size %u too big!", fragsize));
940 if (fragsize > MHLEN)
948 m_align(m, fragsize - ciphdrsize);
963 payload = fragsize - totalhdrsize;
/netbsd-current/sys/compat/ossaudio/
H A Dossaudiovar.h170 int fragsize; member in struct:oss_audio_buf_info
H A Dossaudio.c668 bufinfo.fragsize = tmpinfo.blocksize;
691 bufinfo.fragsize = tmpinfo.blocksize;
699 __func__, bufinfo.fragsize, bufinfo.fragments,
/netbsd-current/lib/libossaudio/
H A Doss_dsp.c288 bufinfo.fragsize = tmpinfo.blocksize;
300 bufinfo.fragsize = tmpinfo.blocksize;
H A Dsoundcard.h345 int fragsize; member in struct:audio_buf_info
/netbsd-current/crypto/external/bsd/openssl/dist/test/
H A Dsslapitest.c10328 size_t written, readbytes, offset, msglen, fragsize = 10, numpipes = 5; local
10373 fragsize = SSL3_RT_MAX_PLAIN_LENGTH;
10374 msglen = fragsize * numpipes;
10399 if (!TEST_false(SSL_set_split_send_fragment(peera, fragsize + 1)))
10409 || !TEST_true(SSL_set_split_send_fragment(peera, fragsize)))
10447 for (offset = 0; offset < msglen; offset += fragsize) {
10450 if (sendlen > fragsize)
10451 sendlen = fragsize;
10494 if (fragsize == SSL3_RT_MAX_PLAIN_LENGTH)

Completed in 136 milliseconds