Home | History | Annotate | Download | only in libasm

Lines Matching refs:asmscn

38 asm_addsleb128 (asmscn, num)
39 AsmScn_t *asmscn;
42 if (asmscn == NULL)
45 if (asmscn->type == SHT_NOBITS && unlikely (num != 0))
51 if (unlikely (asmscn->ctx->textp))
52 fprintf (asmscn->ctx->out.file, "\t.sleb128\t%" PRId32 "\n", num);
81 if (__libasm_ensure_section_space (asmscn, nbytes) != 0)
85 if (likely (asmscn->type != SHT_NOBITS))
86 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
89 asmscn->content->len += nbytes;
92 asmscn->offset += nbytes;