Home
last modified time | relevance | path

Searched refs:blocksize (Results 76 – 100 of 201) sorted by relevance

123456789

/freebsd/bin/ls/
H A Dls.c101 long blocksize; /* block size units */ variable
563 blocksize = 2; in main()
565 (void)getbsize(&notused, &blocksize); in main()
566 blocksize /= 512; in main()
972 d.s_block = snprintf(NULL, 0, "%lu", howmany(maxblock, blocksize)); in display()
H A Dls.h39 extern long blocksize; /* block size units */
H A Dprint.c213 (void)printf("total %lu\n", howmany(dp->btotal, blocksize)); in printlong()
225 dp->s_block, howmany(sp->st_blocks, blocksize)); in printlong()
354 (void)printf("total %lu\n", howmany(dp->btotal, blocksize)); in printcol()
404 (int)sizefield, howmany(sp->st_blocks, blocksize)); in printaname()
/freebsd/sys/dev/sound/pci/
H A Dfm801.c417 fm801ch_setblocksize(kobj_t obj, void *data, u_int32_t blocksize) in fm801ch_setblocksize() argument
428 fm801->play_blksize = blocksize; in fm801ch_setblocksize()
431 fm801->rec_blksize = blocksize; in fm801ch_setblocksize()
433 DPRINT("fm801ch_setblocksize %d (dir %d)\n",blocksize, ch->dir); in fm801ch_setblocksize()
435 return blocksize; in fm801ch_setblocksize()
H A Dt4dwave.c537 trpchan_setblocksize(kobj_t obj, void *data, u_int32_t blocksize) in trpchan_setblocksize() argument
541 sndbuf_resize(ch->buffer, 2, blocksize); in trpchan_setblocksize()
542 return blocksize; in trpchan_setblocksize()
658 trrchan_setblocksize(kobj_t obj, void *data, u_int32_t blocksize) in trrchan_setblocksize() argument
662 sndbuf_resize(ch->buffer, 2, blocksize); in trrchan_setblocksize()
664 return blocksize; in trrchan_setblocksize()
H A Dals4000.c262 alschan_setblocksize(kobj_t obj, void *data, u_int32_t blocksize) in alschan_setblocksize() argument
267 if (blocksize > sc->bufsz / 2) { in alschan_setblocksize()
268 blocksize = sc->bufsz / 2; in alschan_setblocksize()
270 sndbuf_resize(ch->buffer, 2, blocksize); in alschan_setblocksize()
271 return blocksize; in alschan_setblocksize()
/freebsd/sys/crypto/openssl/
H A Dossl_cipher.h48 uint16_t blocksize; member
H A Dossl_sha1.c68 .blocksize = SHA1_BLOCK_LEN,
/freebsd/sys/contrib/openzfs/include/sys/
H A Dspace_map.h233 void space_map_truncate(space_map_t *sm, int blocksize, dmu_tx_t *tx);
234 uint64_t space_map_alloc(objset_t *os, int blocksize, dmu_tx_t *tx);
/freebsd/sys/arm/allwinner/
H A Da10_codec.c155 uint32_t blocksize; member
646 ch->blocksize); in a10codec_transfer()
685 ch->pos += ch->blocksize; in a10codec_dmaintr()
934 a10codec_chan_setblocksize(kobj_t obj, void *data, uint32_t blocksize) in a10codec_chan_setblocksize() argument
938 ch->blocksize = blocksize & ~3; in a10codec_chan_setblocksize()
940 return (ch->blocksize); in a10codec_chan_setblocksize()
/freebsd/sys/contrib/device-tree/Bindings/riscv/
H A Dcpus.yaml81 The blocksize in bytes for the Zicbom cache operations.
86 The blocksize in bytes for the Zicbop cache operations.
91 The blocksize in bytes for the Zicboz cache operations.
/freebsd/sys/opencrypto/
H A Dxform_chacha20_poly1305.c157 .blocksize = 1,
214 .blocksize = 1,
H A Dxform_auth.h56 uint16_t blocksize; member
H A Dxform_enc.h52 uint16_t blocksize; /* Required input block size -- 1 for stream ciphers. */ member
H A Dxform_poly1305.c66 .blocksize = POLY1305_BLOCK_LEN,
/freebsd/sys/dev/ocs_fc/
H A Docs_scsi.c506 uint32_t blocksize; /* data block size */ in ocs_scsi_dif_check_unknown() local
515 blocksize = ocs_hw_dif_mem_blocksize(&io->hw_dif, TRUE); in ocs_scsi_dif_check_unknown()
516 first_check_block = length / blocksize; in ocs_scsi_dif_check_unknown()
688 uint32_t blocksize = 0; in ocs_scsi_build_sgls() local
716 case OCS_HW_DIF_BK_SIZE_512: blocksize = 512; break; in ocs_scsi_build_sgls()
717 case OCS_HW_DIF_BK_SIZE_1024: blocksize = 1024; break; in ocs_scsi_build_sgls()
718 case OCS_HW_DIF_BK_SIZE_2048: blocksize = 2048; break; in ocs_scsi_build_sgls()
719 case OCS_HW_DIF_BK_SIZE_4096: blocksize = 4096; break; in ocs_scsi_build_sgls()
720 case OCS_HW_DIF_BK_SIZE_520: blocksize = 520; break; in ocs_scsi_build_sgls()
727 if ((sgl[i].len % blocksize) != 0) { in ocs_scsi_build_sgls()
[all …]
/freebsd/sys/dev/sound/pcm/
H A Dchannel_if.m82 channel_nosetfragments(kobj_t obj, void *data, u_int32_t blocksize, u_int32_t blockcount)
139 u_int32_t blocksize;
145 u_int32_t blocksize;
/freebsd/contrib/sendmail/libsm/
H A DREADME119 "optimal blocksize for I/O".
124 st_blksize that is the "optimal blocksize for I/O".
129 st_blksize that is the "optimal blocksize for I/O".
/freebsd/crypto/openssl/doc/man7/
H A DEVP_CIPHER-AES.pod72 to be a multiple of the blocksize. Only the final EVP_EncryptUpdate() or
74 of the blocksize but is larger than one block. In that case ciphertext
/freebsd/sys/crypto/ccp/
H A Dccp.c243 if (klen > axf->blocksize) { in ccp_init_hmac_digest()
252 memset(s->hmac.ipad + klen, 0, axf->blocksize - klen); in ccp_init_hmac_digest()
253 memcpy(s->hmac.opad, s->hmac.ipad, axf->blocksize); in ccp_init_hmac_digest()
255 for (i = 0; i < axf->blocksize; i++) { in ccp_init_hmac_digest()
/freebsd/usr.bin/hexdump/
H A Dhexdump.h75 extern int blocksize; /* data block size */
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddnode.c707 ASSERT3U(blocksize, <=, in dnode_allocate()
709 if (blocksize == 0) in dnode_allocate()
710 blocksize = 1 << zfs_default_bs; in dnode_allocate()
712 blocksize = P2ROUNDUP(blocksize, SPA_MINBLOCKSIZE); in dnode_allocate()
758 dnode_setdblksz(dn, blocksize); in dnode_allocate()
797 ASSERT3U(blocksize, >=, SPA_MINBLOCKSIZE); in dnode_reallocate()
798 ASSERT3U(blocksize, <=, in dnode_reallocate()
800 ASSERT0(blocksize % SPA_MINBLOCKSIZE); in dnode_reallocate()
821 if (dn->dn_datablksz != blocksize) { in dnode_reallocate()
827 dnode_setdblksz(dn, blocksize); in dnode_reallocate()
[all …]
/freebsd/crypto/openssh/
H A Dsshkey-xmss.c897 size_t i, keylen, ivlen, blocksize, authlen, encrypted_len, aadlen; in sshkey_xmss_encrypt_state() local
910 blocksize = cipher_blocksize(cipher); in sshkey_xmss_encrypt_state()
939 while (sshbuf_len(padded) % blocksize) { in sshkey_xmss_encrypt_state()
989 u_int blocksize, encrypted_len, index; in sshkey_xmss_decrypt_state() local
1002 blocksize = cipher_blocksize(cipher); in sshkey_xmss_decrypt_state()
1032 if (encrypted_len < blocksize || (encrypted_len % blocksize) != 0) { in sshkey_xmss_decrypt_state()
/freebsd/sys/crypto/chacha20/
H A Dchacha-sw.c53 .blocksize = 1,
/freebsd/crypto/openssl/crypto/evp/
H A De_aes.c398 nid##_##keylen##_##nmode,blocksize,keylen/8,ivlen, \
407 nid##_##keylen##_##nmode,blocksize, \
419 # define BLOCK_CIPHER_custom(nid,keylen,blocksize,ivlen,mode,MODE,flags) \ argument
421 nid##_##keylen##_##mode,blocksize, \
432 nid##_##keylen##_##mode,blocksize, \
756 nid##_##keylen##_##nmode,blocksize,keylen/8,ivlen, \
765 nid##_##keylen##_##nmode,blocksize, \
779 nid##_##keylen##_##mode,blocksize, \
790 nid##_##keylen##_##mode,blocksize, \
2270 nid##_##keylen##_##nmode,blocksize,keylen/8,ivlen, \
[all …]

123456789