/Linux-v6.1/tools/testing/selftests/kvm/ |
D | dirty_log_perf_test.c | 67 static int iteration; variable 85 int current_iteration = READ_ONCE(iteration); in vcpu_worker() 118 while (current_iteration == READ_ONCE(iteration) && in vcpu_worker() 119 READ_ONCE(iteration) >= 0 && !READ_ONCE(host_quit)) {} in vcpu_worker() 244 iteration = 0; in run_test() 254 pr_debug("Starting iteration %d - Populating\n", iteration); in run_test() 257 iteration) in run_test() 272 while (iteration < p->iterations) { in run_test() 278 iteration++; in run_test() 280 pr_debug("Starting iteration %d\n", iteration); in run_test() [all …]
|
D | dirty_log_test.c | 77 static uint64_t iteration; variable 109 *(uint64_t *)addr = READ_ONCE(iteration); in guest_code() 118 *(uint64_t *)addr = READ_ONCE(iteration); in guest_code() 366 pr_info("Iteration %ld collected %u pages\n", iteration, count); in dirty_ring_collect_dirty_pages() 581 matched = (*value_ptr == iteration || in vm_dirty_log_verify() 582 *value_ptr == iteration - 1); in vm_dirty_log_verify() 585 if (*value_ptr == iteration - 2 && min_iter <= iteration - 2) { in vm_dirty_log_verify() 618 min_iter = iteration - 1; in vm_dirty_log_verify() 632 page, *value_ptr, iteration); in vm_dirty_log_verify() 654 TEST_ASSERT(*value_ptr <= iteration, in vm_dirty_log_verify() [all …]
|
D | access_tracking_perf_test.c | 51 static int iteration; variable 217 *current_iteration = READ_ONCE(iteration); in spin_wait_for_next_iteration() 266 next_iteration = ++iteration; in run_iteration()
|
/Linux-v6.1/tools/gpio/ |
D | gpio-hammer.c | 34 unsigned int iteration = 0; in hammer_device() local 100 iteration++; in hammer_device() 101 if (loops && iteration == loops) in hammer_device()
|
/Linux-v6.1/arch/sh/lib/ |
D | memcpy-sh4.S | 29 ! At the start of each iteration, r7 contains last long load 39 ! 6 cycles, 4 bytes per iteration 102 ! At the start of each iteration, r7 contains last long load 112 ! 6 cycles, 4 bytes per iteration 222 ! 4 cycles, 2 bytes per iteration 250 ! 3 cycles, 1 byte per iteration 332 ! 4 cycles, 2 long words per iteration 366 ! 4 cycles, 2 long words per iteration 386 ! 3 cycles, 1 byte per iteration 434 ! 4 cycles, 2 long words per iteration [all …]
|
D | copy_page.S | 310 1: ! Read longword, write two words per iteration 332 ! Read longword, write byte, word, byte per iteration
|
/Linux-v6.1/drivers/net/ethernet/sfc/siena/ |
D | selftest.c | 48 __be16 iteration; member 343 if (received->iteration != payload->iteration) { in efx_siena_loopback_rx_packet() 346 "%s loopback test\n", ntohs(received->iteration), in efx_siena_loopback_rx_packet() 347 ntohs(payload->iteration), LOOPBACK_MODE(efx)); in efx_siena_loopback_rx_packet() 399 payload->iteration = htons(ntohs(payload->iteration) + 1); in efx_iterate_state()
|
/Linux-v6.1/drivers/net/ethernet/sfc/ |
D | selftest.c | 48 __be16 iteration; member 343 if (received->iteration != payload->iteration) { in efx_loopback_rx_packet() 346 "%s loopback test\n", ntohs(received->iteration), in efx_loopback_rx_packet() 347 ntohs(payload->iteration), LOOPBACK_MODE(efx)); in efx_loopback_rx_packet() 399 payload->iteration = htons(ntohs(payload->iteration) + 1); in efx_iterate_state()
|
/Linux-v6.1/drivers/net/ethernet/sfc/falcon/ |
D | selftest.c | 45 __be16 iteration; member 345 if (received->iteration != payload->iteration) { in ef4_loopback_rx_packet() 348 "%s loopback test\n", ntohs(received->iteration), in ef4_loopback_rx_packet() 349 ntohs(payload->iteration), LOOPBACK_MODE(efx)); in ef4_loopback_rx_packet() 401 payload->iteration = htons(ntohs(payload->iteration) + 1); in ef4_iterate_state()
|
/Linux-v6.1/arch/xtensa/lib/ |
D | memcopy.S | 123 # per iteration 129 # copy 16 bytes per iteration for word-aligned dst and word-aligned src 195 # copy 16 bytes per iteration for word-aligned dst and unaligned src 397 # per iteration 403 # copy 16 bytes per iteration for word-aligned dst and word-aligned src 471 # copy 16 bytes per iteration for word-aligned dst and unaligned src
|
D | memset.S | 49 # per iteration 56 # set 16 bytes per iteration for word-aligned dst
|
D | usercopy.S | 77 # per iteration 140 # copy 16 bytes per iteration for word-aligned dst and word-aligned src 205 # copy 16 bytes per iteration for word-aligned dst and unaligned src
|
/Linux-v6.1/lib/ |
D | random32.c | 142 u32 iteration; member 283 for (j = 0; j < test2[i].iteration - 1; j++) in prandom_state_selftest()
|
/Linux-v6.1/Documentation/networking/ |
D | net_dim.rst | 24 iteration of the algorithm, it analyses a given sample of the data, compares it 39 Each iteration of the Net DIM algorithm follows these steps: 48 supplied to the previous iteration. The comparison step checks the difference 120 the proper state in order to move to the next iteration. 142 /* Signal net DIM work is done and it should move to next iteration */
|
/Linux-v6.1/drivers/pnp/isapnp/ |
D | core.c | 288 int iteration = 1; in isapnp_isolate() local 320 iteration++; in isapnp_isolate() 328 if (iteration == 1) { in isapnp_isolate() 332 } else if (iteration > 1) { in isapnp_isolate()
|
/Linux-v6.1/Documentation/core-api/ |
D | assoc_array.rst | 266 The internal tree will be packed down if possible as part of the iteration 297 it is possible for the iteration function to see some objects twice. If 299 iteration algorithm should not, however, miss any objects. 303 immediately if any call to the iteration function results in a non-zero 495 slot in that parent that points to it. None-recursive iteration uses these to 499 The backpointers, however, make simultaneous alteration and iteration tricky. 518 the iteration as we won't have reached the pointer to it yet and the 553 so as long as anyone doing walking or iteration holds the RCU read lock, the
|
D | idr.rst | 52 idr_for_each_entry_continue() to continue an iteration. You can
|
/Linux-v6.1/sound/soc/codecs/ |
D | da9055.c | 454 u8 iteration; in da9055_get_alc_data() local 456 for (iteration = 0; iteration < DA9055_ALC_AVG_ITERATIONS; in da9055_get_alc_data() 457 iteration++) { in da9055_get_alc_data()
|
D | da7213.c | 198 u8 iteration; in da7213_get_alc_data() local 200 for (iteration = 0; iteration < DA7213_ALC_AVG_ITERATIONS; in da7213_get_alc_data() 201 iteration++) { in da7213_get_alc_data()
|
/Linux-v6.1/arch/s390/kernel/ |
D | relocate_kernel.S | 40 j .base # ...next iteration
|
/Linux-v6.1/arch/x86/crypto/ |
D | sha512-avx-asm.S | 307 # (80 rounds) / (2 rounds/iteration) + (1 iteration) 308 # +1 iteration because the scheduler leads hashing by 1 iteration
|
D | sha512-ssse3-asm.S | 309 # (80 rounds) / (2 rounds/iteration) + (1 iteration) 310 # +1 iteration because the scheduler leads hashing by 1 iteration
|
D | sha1_ssse3_asm.S | 298 .set i, ((\r) % 80) # pre-compute for the next iteration 372 # vector iteration / 4 scalar rounds
|
/Linux-v6.1/drivers/staging/vc04_services/interface/ |
D | TESTING | 48 ======== iteration 1 ========
|
/Linux-v6.1/Documentation/block/ |
D | biovecs.rst | 140 bio_vec' will contain a single-page IO vector during the iteration:: 146 bio_vec' will contain a multi-page IO vector during the iteration::
|