Searched refs:noplen (Results 1 – 2 of 2) sorted by relevance
1430 unsigned int noplen = len; in add_nops() local1431 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()
994 int i, noplen; in emit_nops() local997 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()