Searched refs:s_off (Results 1 – 7 of 7) sorted by relevance
/linux-6.14.4/lib/ |
D | memcpy_kunit.c | 395 static void inner_loop(struct kunit *test, int bytes, int d_off, int s_off) in inner_loop() argument 403 memcpy(&large_dst[s_off], large_src, bytes); in inner_loop() 406 memmove(&large_dst[d_off], &large_dst[s_off], bytes); in inner_loop() 411 bytes, s_off, d_off); in inner_loop() 414 if (s_off < d_off) { in inner_loop() 416 left_zero_size = s_off; in inner_loop() 421 src_pos = s_off; in inner_loop() 423 src_size = d_off - s_off; in inner_loop() 428 right_zero_pos = s_off + bytes; in inner_loop() 432 src_orig_pos = src_pos - s_off; in inner_loop() [all …]
|
/linux-6.14.4/mm/ |
D | percpu.c | 715 int s_off = pcpu_off_to_block_off(bit_off); in pcpu_block_update_scan() local 716 int e_off = s_off + bits; in pcpu_block_update_scan() 727 l_bit = find_last_bit(pcpu_index_alloc_map(chunk, s_index), s_off); in pcpu_block_update_scan() 728 s_off = (s_off == l_bit) ? 0 : l_bit + 1; in pcpu_block_update_scan() 730 pcpu_block_update(block, s_off, e_off); in pcpu_block_update_scan() 815 int s_off, e_off; /* block offsets of the freed allocation */ in pcpu_block_update_hint_alloc() local 825 s_off = pcpu_off_to_block_off(bit_off); in pcpu_block_update_hint_alloc() 842 if (s_off == s_block->first_free) in pcpu_block_update_hint_alloc() 846 s_off + bits); in pcpu_block_update_hint_alloc() 850 s_off, in pcpu_block_update_hint_alloc() [all …]
|
D | zsmalloc.c | 1481 unsigned long s_off, d_off; in zs_object_copy() local 1491 s_off = offset_in_page(class->size * s_objidx); in zs_object_copy() 1494 if (s_off + class->size > PAGE_SIZE) in zs_object_copy() 1495 s_size = PAGE_SIZE - s_off; in zs_object_copy() 1505 memcpy(d_addr + d_off, s_addr + s_off, size); in zs_object_copy() 1511 s_off += size; in zs_object_copy() 1523 if (s_off >= PAGE_SIZE) { in zs_object_copy() 1530 s_off = 0; in zs_object_copy()
|
/linux-6.14.4/crypto/async_tx/ |
D | async_pq.c | 300 unsigned int s_off, struct async_submit_ctl *submit) in async_syndrome_val() argument 403 tx = async_xor_offs(spare, s_off, in async_syndrome_val() 407 s = page_address(spare) + s_off; in async_syndrome_val() 414 Q(offsets, disks) = s_off; in async_syndrome_val() 420 s = page_address(spare) + s_off; in async_syndrome_val()
|
D | async_raid6_recov.c | 88 unsigned int s_off, u8 coef, size_t len, in async_mult() argument 109 unmap->addr[0] = dma_map_page(dev, src, s_off, in async_mult() 144 s = page_address(src) + s_off; in async_mult()
|
/linux-6.14.4/include/linux/ |
D | async_tx.h | 195 unsigned int s_off, struct async_submit_ctl *submit);
|
/linux-6.14.4/arch/x86/kvm/svm/ |
D | sev.c | 1246 int len, s_off, d_off; in sev_dbg_crypt() local 1271 s_off = vaddr & ~PAGE_MASK; in sev_dbg_crypt() 1273 len = min_t(size_t, (PAGE_SIZE - s_off), size); in sev_dbg_crypt() 1277 __sme_page_pa(src_p[0]) + s_off, in sev_dbg_crypt() 1283 __sme_page_pa(src_p[0]) + s_off, in sev_dbg_crypt()
|