Searched refs:noplen (Results 1 – 2 of 2) sorted by relevance
108 unsigned int noplen = len; in add_nops() local109 if (noplen > ASM_NOP_MAX) in add_nops()110 noplen = ASM_NOP_MAX; in add_nops()111 memcpy(insns, x86_nops[noplen], noplen); in add_nops()112 insns += noplen; in add_nops()113 len -= noplen; in add_nops()
889 int i, noplen; in emit_nops() local892 noplen = len; in emit_nops()894 if (noplen > ASM_NOP_MAX) in emit_nops()895 noplen = ASM_NOP_MAX; in emit_nops()897 for (i = 0; i < noplen; i++) in emit_nops()898 EMIT1(x86_nops[noplen][i]); in emit_nops()899 len -= noplen; in emit_nops()
Completed in 10 milliseconds