Home
last modified time | relevance | path

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

/openbmc/linux/arch/x86/kernel/
H A Dalternative.c1430 unsigned int noplen = len; in add_nops() local
1431 if (noplen > ASM_NOP_MAX) in add_nops()
1432 noplen = ASM_NOP_MAX; in add_nops()
1433 memcpy(insns, x86_nops[noplen], noplen); in add_nops()
1434 insns += noplen; in add_nops()
1435 len -= noplen; in add_nops()
/openbmc/linux/arch/x86/net/
H A Dbpf_jit_comp.c994 int i, noplen; in emit_nops() local
997 noplen = len; in emit_nops()
999 if (noplen > ASM_NOP_MAX) in emit_nops()
1000 noplen = ASM_NOP_MAX; in emit_nops()
1002 for (i = 0; i < noplen; i++) in emit_nops()
1003 EMIT1(x86_nops[noplen][i]); in emit_nops()
1004 len -= noplen; in emit_nops()