Lines Matching refs:asmscn
41 asm_addsleb128 (AsmScn_t *asmscn, int32_t num)
43 if (asmscn == NULL)
46 if (asmscn->type == SHT_NOBITS && unlikely (num != 0))
52 if (unlikely (asmscn->ctx->textp))
53 fprintf (asmscn->ctx->out.file, "\t.sleb128\t%" PRId32 "\n", num);
82 if (__libasm_ensure_section_space (asmscn, nbytes) != 0)
86 if (likely (asmscn->type != SHT_NOBITS))
87 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
90 asmscn->content->len += nbytes;
93 asmscn->offset += nbytes;