Home
last modified time | relevance | path

Searched refs:current_batch_size (Results 1 – 7 of 7) sorted by relevance

/dports/misc/thrill/thrill-12c5b59bca66df93b66628b3829027bd0f110dd9/extlib/foxxll/tools/
H A Dbenchmark_disks.cpp120 size_t current_batch_size; in benchmark_disks_alloc() local
124 for (external_size_type offset = 0; offset < endpos; offset += current_batch_size) in benchmark_disks_alloc()
128 current_batch_size = static_cast<size_t>( in benchmark_disks_alloc()
131 const size_t current_batch_size_int = current_batch_size / sizeof(uint32_t); in benchmark_disks_alloc()
134 foxxll::div_ceil(current_batch_size, raw_block_size); in benchmark_disks_alloc()
164 total_size_write += current_batch_size; in benchmark_disks_alloc()
172 << (double(current_batch_size) / MiB / elapsed) in benchmark_disks_alloc()
188 total_size_read += current_batch_size; in benchmark_disks_alloc()
196 << (double(current_batch_size) / MiB / elapsed) in benchmark_disks_alloc()
/dports/devel/stxxl/stxxl-1.4.1/tools/
H A Dbenchmark_disks.cpp104 … const stxxl::int64 current_batch_size = std::min<stxxl::int64>(batch_size, endpos - offset); in benchmark_disks_blocksize_alloc() local
106 const stxxl::int64 current_batch_size_int = current_batch_size / sizeof(int); in benchmark_disks_blocksize_alloc()
108 …type current_num_blocks_per_batch = (unsigned_type)stxxl::div_ceil(current_batch_size, raw_block_s… in benchmark_disks_blocksize_alloc()
127 totalsizewrite += current_batch_size; in benchmark_disks_blocksize_alloc()
133 …std::cout << std::setw(5) << std::setprecision(1) << (double(current_batch_size) / MiB / elapsed) … in benchmark_disks_blocksize_alloc()
146 totalsizeread += current_batch_size; in benchmark_disks_blocksize_alloc()
152 …std::cout << std::setw(5) << std::setprecision(1) << (double(current_batch_size) / MiB / elapsed) … in benchmark_disks_blocksize_alloc()
174 offset += current_batch_size; in benchmark_disks_blocksize_alloc()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/wireless/mediatek/mt76/
H A Dusb.c193 int current_batch_size; in mt76u_copy() local
205 current_batch_size = min_t(int, usb->data_len, len - i); in mt76u_copy()
206 memcpy(usb->data, val + i, current_batch_size); in mt76u_copy()
210 current_batch_size); in mt76u_copy()
214 i += current_batch_size; in mt76u_copy()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/wireless/mediatek/mt76/
H A Dusb.c193 int current_batch_size; in mt76u_copy() local
205 current_batch_size = min_t(int, usb->data_len, len - i); in mt76u_copy()
206 memcpy(usb->data, val + i, current_batch_size); in mt76u_copy()
210 current_batch_size); in mt76u_copy()
214 i += current_batch_size; in mt76u_copy()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/wireless/mediatek/mt76/
H A Dusb.c193 int current_batch_size; in mt76u_copy() local
205 current_batch_size = min_t(int, usb->data_len, len - i); in mt76u_copy()
206 memcpy(usb->data, val + i, current_batch_size); in mt76u_copy()
210 current_batch_size); in mt76u_copy()
214 i += current_batch_size; in mt76u_copy()
/dports/science/ALPSCore/ALPSCore-2.2.0/alea/include/alps/alea/
H A Dbatch.hpp137 size_t current_batch_size() const { return base_size_ * cursor_.factor(); } in current_batch_size() function in alps::alea::batch_acc
/dports/science/ALPSCore/ALPSCore-2.2.0/alea/src/
H A Dbatch.cpp125 if (store_->count()(cursor_.current()) >= current_batch_size()) in add()