Home
last modified time | relevance | path

Searched refs:blks (Results 1 – 10 of 10) sorted by relevance

/f-stack/freebsd/crypto/aesni/
H A Daesni_wrap.c80 struct blocks8 *blks; in aesni_decrypt_cbc() local
88 aesni_dec8(rounds - 1, key_schedule, blks->blk[0], blks->blk[1], in aesni_decrypt_cbc()
89 blks->blk[2], blks->blk[3], blks->blk[4], blks->blk[5], in aesni_decrypt_cbc()
90 blks->blk[6], blks->blk[7], &blocks[0]); in aesni_decrypt_cbc()
92 nextiv = blks->blk[j]; in aesni_decrypt_cbc()
123 aesni_enc8(rounds - 1, key_schedule, blks->blk[0], blks->blk[1], in aesni_encrypt_ecb()
124 blks->blk[2], blks->blk[3], blks->blk[4], blks->blk[5], in aesni_encrypt_ecb()
125 blks->blk[6], blks->blk[7], tout); in aesni_encrypt_ecb()
162 aesni_dec8(rounds - 1, key_schedule, blks->blk[0], blks->blk[1], in aesni_decrypt_ecb()
163 blks->blk[2], blks->blk[3], blks->blk[4], blks->blk[5], in aesni_decrypt_ecb()
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_swap/
H A Dzvol_swap_002_pos.ksh66 typeset -i count blks volsize=$(get_prop volsize $vol)
67 ((blks = (volsize / 512) * 80 / 100))
69 ((count = blks / 2048))
/f-stack/freebsd/netinet/tcp_stacks/
H A Dsack_filter.c625 struct sackblk blks[TCP_MAX_SACK]; in main() local
675 memset(blks, 0, sizeof(blks)); in main()
695 nn = sack_filter_blks(&sf, blks, numblks, th_ack); in main()
700 szof = blks[ii].end - blks[ii].start; in main()
703 blks[ii].start, in main()
704 blks[ii].end, szof); in main()
713 memset(blks, 0, sizeof(blks)); in main()
761 blks[numblks].start = start; in main()
762 blks[numblks].end = endv; in main()
/f-stack/freebsd/opencrypto/
H A Dcryptosoft.c126 blks = exf->blocksize; in swcr_encdec()
175 while (resid >= blks) { in swcr_encdec()
181 if (inlen < blks) { in swcr_encdec()
185 if (outlen < blks) in swcr_encdec()
227 if (inlen < blks) { in swcr_encdec()
232 inlen -= blks; in swcr_encdec()
233 inblk += blks; in swcr_encdec()
236 if (outlen < blks) { in swcr_encdec()
242 outlen -= blks; in swcr_encdec()
243 outblk += blks; in swcr_encdec()
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_copies/
H A Dzfs_copies_002_pos.ksh90 blks=`ls -ls /$TESTPOOL/fs_$val/$FILE | awk '{print $1}'`
91 (( used = blks * $blksize )) # bytes
/f-stack/freebsd/netipsec/
H A Dxform_esp.c687 int hlen, rlen, padding, blks, alen, i, roff; in esp_output() local
711 blks = MAX(4, espx->native_blocksize); /* Cipher blocksize */ in esp_output()
713 blks = MAX(4, espx->blocksize); in esp_output()
716 padding = ((blks - ((rlen + 2) % blks)) % blks) + 2; in esp_output()
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-dma-engine.c181 dpi_engx_buf.s.blks = 2; in cvmx_dma_engine_initialize()
187 dpi_engx_buf.s.blks = 6; in cvmx_dma_engine_initialize()
H A Dcvmx-dpi-defs.h1173 uint64_t blks : 4; /**< The size of the engine fifo member
1187 uint64_t blks : 4;
1199 uint64_t blks : 4; /**< The size in 512B blocks of the engine fifo member
1211 uint64_t blks : 4;
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Ddmu.c732 uint64_t blks; in get_next_chunk() local
756 for (blks = 0; *start > minimum && blks < maxblks; blks++) { in get_next_chunk()
775 *l1blks = blks; in get_next_chunk()
784 *l1blks = blks; in get_next_chunk()
/f-stack/freebsd/contrib/openzfs/cmd/zdb/
H A Dzdb.c6119 bplist_t blks; in livelist_entry_count_blocks_cb() local
6120 bplist_create(&blks); in livelist_entry_count_blocks_cb()
6122 VERIFY0(dsl_process_sub_livelist(&dle->dle_bpobj, &blks, NULL, NULL)); in livelist_entry_count_blocks_cb()
6124 (void) bplist_iterate(&blks, count_block_cb, zbc, NULL); in livelist_entry_count_blocks_cb()
6125 bplist_destroy(&blks); in livelist_entry_count_blocks_cb()