Searched refs:block_count (Results 1 – 10 of 10) sorted by relevance
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_send/ |
H A D | zfs_send_006_pos.ksh | 69 total_size=$(echo "$total_size * $block_count" | bc) 97 typeset -l block_count=0 101 ((block_count=1024*1024))
|
/illumos-gate/usr/src/common/crypto/md5/ |
H A D | md5.c | 255 uint32_t block_count; in MD5Update() local 313 block_count = (input_len - i) >> 6; in MD5Update() 314 if (block_count > 0) { in MD5Update() 315 md5_block_asm_host_order(ctx, &input[i], block_count); in MD5Update() 316 i += block_count << 6; in MD5Update()
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | fsys_reiserfs.c | 476 unsigned int block_count = INFO->journal_block_count; in journal_init() local 485 journal_read (block_count, sizeof (header), (char *) &header); in journal_init() 487 if (desc_block >= block_count) in journal_init() 507 commit_block = (desc_block + desc.j_len + 1) & (block_count - 1); in journal_init() 556 desc_block = (commit_block + 1) & (block_count - 1); in journal_init()
|
/illumos-gate/usr/src/common/crypto/sha2/ |
H A D | sha2.c | 796 size_t block_count; in SHA2Update() local 879 block_count = (input_len - i) >> 6; in SHA2Update() 880 if (block_count > 0) { in SHA2Update() 882 block_count); in SHA2Update() 883 i += block_count << 6; in SHA2Update() 886 block_count = (input_len - i) >> 7; in SHA2Update() 887 if (block_count > 0) { in SHA2Update() 889 block_count); in SHA2Update() 890 i += block_count << 7; in SHA2Update()
|
/illumos-gate/usr/src/uts/intel/io/dnet/ |
H A D | dnet.c | 3198 for (block = leaf->block + leaf->block_count - 1; in find_active_media() 3777 for (block = leaf->block + leaf->block_count -1; in do_phy() 4107 leaf->block_count = *vi++; in parse_controller_leaf() 4109 if (leaf->block_count > MAX_MEDIA) { in parse_controller_leaf() 4111 leaf->block_count = 1; in parse_controller_leaf() 4113 for (i = 0; i <= leaf->block_count; i++) { in parse_controller_leaf() 4120 leaf->default_block = leaf->block + leaf->block_count -1; in parse_controller_leaf() 4338 leaf->block_count = 4; /* 100 cards are highly unlikely to have BNC */ in setup_legacy_blocks() 4360 leaf->block_count = 5; /* 100TX, 100TX-FD, 10T 10T-FD, BNC */ in setup_legacy_blocks() 4408 leaf->block_count = 1; in setup_legacy_blocks() [all …]
|
H A D | dnet.h | 332 int block_count; member
|
/illumos-gate/usr/src/common/crypto/sha1/ |
H A D | sha1.c | 346 size_t block_count; in SHA1Update() local 397 block_count = (input_len - i) >> 6; in SHA1Update() 398 if (block_count > 0) { in SHA1Update() 399 SHA1_TRANSFORM_BLOCKS(ctx, &input[i], block_count); in SHA1Update() 400 i += block_count << 6; in SHA1Update()
|
/illumos-gate/usr/src/uts/common/fs/ufs/ |
H A D | ufs_bmap.c | 97 static void ufs_undo_allocation(inode_t *ip, int block_count, 1045 int block_count, in ufs_undo_allocation() argument 1067 for (i = 0; i < block_count; i++) { in ufs_undo_allocation() 1165 for (i = 0; i < block_count; i++) { in ufs_undo_allocation()
|
/illumos-gate/usr/src/uts/common/fs/udfs/ |
H A D | udf_bmap.c | 1249 ud_zero_it(struct ud_inode *ip, uint32_t start_block, uint32_t block_count) in ud_zero_it() argument 1265 ip->i_icb_prn, start_block, block_count, &dummy); in ud_zero_it() 1267 dummy = block_count << udf_vfsp->udf_l2b_shift; in ud_zero_it()
|
/illumos-gate/usr/src/uts/common/io/scsi/targets/ |
H A D | sd.c | 21227 uint32_t block_count; local 21247 block_count = SD_BYTES2TGTBLOCKS(un, buflen); 21254 bufaddr, buflen, start_block, block_count); 21273 FORMG0COUNT(&cdb, block_count); 21278 FORMG1COUNT(&cdb, block_count); 21283 FORMG4COUNT(&cdb, block_count);
|