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()
944 int i, noplen; in emit_nops() local947 noplen = len; in emit_nops()949 if (noplen > ASM_NOP_MAX) in emit_nops()950 noplen = ASM_NOP_MAX; in emit_nops()952 for (i = 0; i < noplen; i++) in emit_nops()953 EMIT1(x86_nops[noplen][i]); in emit_nops()954 len -= noplen; in emit_nops()