Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/arch/x86/kernel/
H A Dalternative.c263 unsigned int noplen = len; in add_nops() local
264 if (noplen > ASM_NOP_MAX) in add_nops()
265 noplen = ASM_NOP_MAX; in add_nops()
266 memcpy(insns, ideal_nops[noplen], noplen); in add_nops()
267 insns += noplen; in add_nops()
268 len -= noplen; in add_nops()
/OK3568_Linux_fs/kernel/arch/x86/net/
H A Dbpf_jit_comp.c1597 unsigned int i, noplen; in emit_nops() local
1602 noplen = len; in emit_nops()
1604 if (noplen > ASM_NOP_MAX) in emit_nops()
1605 noplen = ASM_NOP_MAX; in emit_nops()
1607 for (i = 0; i < noplen; i++) in emit_nops()
1608 EMIT1(ideal_nops[noplen][i]); in emit_nops()
1609 len -= noplen; in emit_nops()