Searched refs:noplen (Results 1 – 2 of 2) sorted by relevance
262 unsigned int noplen = len; in add_nops() local263 if (noplen > ASM_NOP_MAX) in add_nops()264 noplen = ASM_NOP_MAX; in add_nops()265 memcpy(insns, ideal_nops[noplen], noplen); in add_nops()266 insns += noplen; in add_nops()267 len -= noplen; in add_nops()
1583 unsigned int i, noplen; in emit_nops() local1588 noplen = len; in emit_nops()1590 if (noplen > ASM_NOP_MAX) in emit_nops()1591 noplen = ASM_NOP_MAX; in emit_nops()1593 for (i = 0; i < noplen; i++) in emit_nops()1594 EMIT1(ideal_nops[noplen][i]); in emit_nops()1595 len -= noplen; in emit_nops()