Home | History | Annotate | Download | only in libasm

Lines Matching refs:asmscn

38 asm_adduleb128 (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.uleb128\t%" PRIu32 "\n", num);
77 if (__libasm_ensure_section_space (asmscn, nbytes) != 0)
81 if (likely (asmscn->type != SHT_NOBITS))
82 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
85 asmscn->content->len += nbytes;
88 asmscn->offset += nbytes;