Lines Matching refs:patched
1695 size_t patched = 0; in text_poke_copy_locked() local
1700 while (patched < len) { in text_poke_copy_locked()
1701 unsigned long ptr = start + patched; in text_poke_copy_locked()
1704 s = min_t(size_t, PAGE_SIZE * 2 - offset_in_page(ptr), len - patched); in text_poke_copy_locked()
1706 __text_poke(text_poke_memcpy, (void *)ptr, opcode + patched, s); in text_poke_copy_locked()
1707 patched += s; in text_poke_copy_locked()
1744 size_t patched = 0; in text_poke_set() local
1750 while (patched < len) { in text_poke_set()
1751 unsigned long ptr = start + patched; in text_poke_set()
1754 s = min_t(size_t, PAGE_SIZE * 2 - offset_in_page(ptr), len - patched); in text_poke_set()
1757 patched += s; in text_poke_set()