Home
last modified time | relevance | path

Searched refs:noplen (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.10/arch/x86/kernel/
Dalternative.c262 unsigned int noplen = len; in add_nops() local
263 if (noplen > ASM_NOP_MAX) in add_nops()
264 noplen = ASM_NOP_MAX; in add_nops()
265 memcpy(insns, ideal_nops[noplen], noplen); in add_nops()
266 insns += noplen; in add_nops()
267 len -= noplen; in add_nops()
/Linux-v5.10/arch/x86/net/
Dbpf_jit_comp.c1583 unsigned int i, noplen; in emit_nops() local
1588 noplen = len; in emit_nops()
1590 if (noplen > ASM_NOP_MAX) in emit_nops()
1591 noplen = ASM_NOP_MAX; in emit_nops()
1593 for (i = 0; i < noplen; i++) in emit_nops()
1594 EMIT1(ideal_nops[noplen][i]); in emit_nops()
1595 len -= noplen; in emit_nops()