HomeSort by relevance Sort by last modified time
    Searched defs:intn (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
leb128_test.c 79 yasm_intnum *intn = yasm_intnum_create_hex(valstr); local
87 yasm_intnum_calc(intn, YASM_EXPR_NEG, NULL);
89 size = yasm_intnum_size_leb128(intn, test->sign);
91 yasm_intnum_destroy(intn);
100 size = yasm_intnum_get_leb128(intn, out, test->sign);
102 yasm_intnum_destroy(intn);
115 yasm_intnum_destroy(intn);
121 yasm_intnum_destroy(intn);
129 yasm_intnum *intn = yasm_intnum_create_hex(valstr); local
136 yasm_intnum_calc(intn, YASM_EXPR_NEG, NULL)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasmlib.c 24 yasm_intnum *intn; local
92 intn = yasm_intnum_create_bin(r);
95 intn = yasm_intnum_create_oct(r);
98 intn = yasm_intnum_create_dec(r);
101 intn = yasm_intnum_create_hex(r);
105 intn = yasm_intnum_create_uint(0);
111 yasm_intnum_calc(intn, YASM_EXPR_NEG, NULL);
112 return intn;
118 yasm_intnum *intn; local
124 intn = yasm_intnum_create_charconst_nasm(str)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bytecode.c 203 yasm_intnum *intn; local
211 intn = yasm_intnum_create_uint(dist1 - dist2);
212 yasm_intnum_calc(intn, YASM_EXPR_NEG, NULL);
213 return intn;
expr.h 62 yasm_intnum *intn; /**< Integer value (YASM_EXPR_INT) */ member in union:yasm_expr__item::__anon16344
116 * \param intn intnum
120 /*@only@*/ yasm_expr__item *yasm_expr_int(/*@keep@*/ yasm_intnum *intn);
valparam.c 328 yasm_intnum **intn = (yasm_intnum **)data; local
330 if (*intn)
331 yasm_intnum_destroy(*intn);
341 *intn = yasm_intnum_copy(local);
value.c 173 yasm_intnum *intn; local
193 intn = sube->terms[0].data.intn;
198 intn = sube->terms[1].data.intn;
206 if (!yasm_intnum_is_neg1(intn)) {
226 e->terms[i].data.intn = yasm_intnum_create_uint(0);
228 e->terms[j].data.intn = yasm_intnum_create_uint(0);
292 e->terms[i].data.intn =
295 e->terms[j].data.intn
561 \/*@dependent@*\/ \/*@null@*\/ yasm_intnum *intn = NULL; local
626 \/*@dependent@*\/ \/*@null@*\/ yasm_intnum *intn = NULL; local
    [all...]
bc-data.c 111 yasm_intnum *intn; local
125 intn = yasm_expr_get_intnum(&dv->data.val.abs, 0);
126 if (!intn) {
135 if (yasm_intnum_sign(intn) == -1 && dv->type == DV_ULEB128)
168 yasm_intnum *intn; local
186 intn = yasm_expr_get_intnum(&dv->data.val.abs, 0);
187 if (!intn)
189 len = yasm_intnum_size_leb128(intn, dv->type == DV_SLEB128);
213 yasm_intnum *intn; local
241 intn = yasm_expr_get_intnum(&dv->data.val.abs, 234)
269 yasm_intnum *intn; local
    [all...]
intnum.c 87 intnum_frombv(/*@out@*/ yasm_intnum *intn, wordptr bv)
90 intn->type = INTNUM_L;
91 intn->val.l = (long)BitVector_Chunk_Read(bv, 31, 0);
100 intn->type = INTNUM_BV;
101 intn->val.bv = BitVector_Clone(bv);
103 intn->type = INTNUM_L;
104 intn->val.l = -((long)ul);
107 intn->type = INTNUM_BV;
108 intn->val.bv = BitVector_Clone(bv);
116 intnum_tobv(/*@returned@*/ wordptr bv, const yasm_intnum *intn)
134 yasm_intnum *intn = yasm_xmalloc(sizeof(yasm_intnum)); local
155 yasm_intnum *intn = yasm_xmalloc(sizeof(yasm_intnum)); local
175 yasm_intnum *intn = yasm_xmalloc(sizeof(yasm_intnum)); local
195 yasm_intnum *intn = yasm_xmalloc(sizeof(yasm_intnum)); local
216 yasm_intnum *intn = yasm_xmalloc(sizeof(yasm_intnum)); local
261 yasm_intnum *intn = yasm_xmalloc(sizeof(yasm_intnum)); local
310 yasm_intnum *intn = yasm_xmalloc(sizeof(yasm_intnum)); local
328 yasm_intnum *intn = yasm_xmalloc(sizeof(yasm_intnum)); local
340 yasm_intnum *intn = yasm_xmalloc(sizeof(yasm_intnum)); local
369 yasm_intnum *intn = yasm_xmalloc(sizeof(yasm_intnum)); local
    [all...]
expr.c 174 e->data.intn = i;
223 yasm_intnum *intn; local
238 intn = sube->terms[0].data.intn;
250 intn = sube->terms[1].data.intn;
254 if (!yasm_intnum_is_neg1(intn))
304 ei->data.intn = dist;
372 sube->terms[0].data.intn = yasm_intnum_create_int(-1);
423 yasm_intnum_calc(e->terms[0].data.intn, YASM_EXPR_NEG, NULL)
    [all...]
section.c 929 yasm_intnum *intn; local
942 intn = yasm_calc_bc_dist(precbc, precbc2);
943 if (!intn)
946 span->terms[subst].new_val = yasm_intnum_get_int(intn);
947 yasm_intnum_destroy(intn);
964 span->items[i].data.intn = yasm_intnum_create_int(0);
1019 yasm_intnum_set_int(span->items[i].data.intn,
1410 yasm_intnum *intn; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/
nasm-listfmt.c 86 /*@dependent@*/ /*@null@*/ yasm_intnum *intn; local
121 intn = yasm_expr_get_intnum(&value->abs, 0);
122 if (intn)
123 return yasm_arch_intnum_tobytes(info->arch, intn, buf, destsize,
132 intn = yasm_intnum_create_uint(0);
133 retval = yasm_arch_intnum_tobytes(info->arch, intn, buf, destsize,
135 yasm_intnum_destroy(intn);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
win64-except.c 226 /*@only@*/ /*@null@*/ yasm_intnum *intn; local
235 intn = yasm_value_get_intnum(&info->frameoff, bc, 0);
236 if (intn) {
237 intv = yasm_intnum_get_int(intn);
245 yasm_intnum_destroy(intn);
357 /*@only@*/ /*@null@*/ yasm_intnum *intn; local
402 intn = yasm_value_get_intnum(&code->off, bc, 0);
403 if (intn) {
404 intv = yasm_intnum_get_int(intn);
416 yasm_intnum_destroy(intn);
473 yasm_intnum *intn; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
nasm-parser-struct.h 33 yasm_intnum *intn; member in union:__anon16405
nasm-parse.c 108 yasm_intnum_destroy(curval.intn);
1445 yasm_intnum *intn; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-dbgfmt.c 259 yasm_intnum *intn, *cval; local
270 intn = yasm_calc_bc_dist(head->start_prevbc, head->end_prevbc);
271 yasm_intnum_calc(intn, YASM_EXPR_SUB, cval);
272 yasm_arch_intnum_tobytes(object->arch, intn, buf,
276 yasm_intnum_destroy(intn);
dwarf2-line.c 903 /*@dependent@*/ /*@null@*/ const yasm_intnum *intn; local
914 intn = yasm_expr_get_intnum(&vp->param.e, 0);
915 if (!intn) {
921 if (yasm_intnum_sign(intn) != 1) {
926 loc->file = yasm_intnum_get_uint(intn);
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/obsolete/
protypes.h 47 typedef PRIntn intn; typedef
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86arch.c 178 const yasm_intnum *intn; local
183 (intn = yasm_expr_get_intnum(&e, 0)) != NULL &&
184 (lval = yasm_intnum_get_int(intn)) &&
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/
xdf-objfmt.c 153 /*@dependent@*/ /*@null@*/ yasm_intnum *intn; local
213 intn = yasm_intnum_create_uint(intn_minus);
214 yasm_intnum_calc(intn, YASM_EXPR_NEG, NULL);
216 intn = yasm_intnum_create_uint(0);
223 yasm_intnum_destroy(intn);
226 yasm_intnum_calc(intn, YASM_EXPR_ADD, intn2);
229 retval = yasm_arch_intnum_tobytes(info->object->arch, intn, buf, destsize,
231 yasm_intnum_destroy(intn);
456 const yasm_intnum *intn; local
489 intn = yasm_expr_get_intnum(&equ_val_copy, 1)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-parser.h 56 yasm_intnum *intn; member in union:__anon16402
138 #define INTNUM_val (curval.intn)
gas-parse.c 104 yasm_intnum_destroy(curval.intn);
1633 \/*@dependent@*\/ \/*@null@*\/ yasm_intnum *intn; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-symline.c 737 yasm_intnum *intn, *cval; local
753 intn = yasm_calc_bc_dist(head->start_prevbc, head->end_prevbc);
754 yasm_intnum_calc(intn, YASM_EXPR_SUB, cval);
755 yasm_arch_intnum_tobytes(object->arch, intn, buf, 4, 32, 0, bc, 0);
757 yasm_intnum_destroy(intn);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/
bin-objfmt.c 515 e->terms[i].data.intn = dist;
522 e->terms[i].data.intn = yasm_intnum_copy(ssymval);
535 yasm_intnum *intn; member in struct:map_output_info
565 map_print_intnum(const yasm_intnum *intn, map_output_info *info)
568 yasm_intnum_get_sized(intn, info->buf, info->bytes, info->bytes*8, 0, 0,
587 yasm_intnum_set(info->intn, bsd->ivstart);
588 yasm_intnum_calc(info->intn, YASM_EXPR_ADD, bsd->length);
589 map_print_intnum(info->intn, info);
595 yasm_intnum_set(info->intn, bsd->istart);
596 yasm_intnum_calc(info->intn, YASM_EXPR_ADD, bsd->length)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf-objfmt.c 479 /*@dependent@*/ /*@null@*/ yasm_intnum *intn; local
562 intn = yasm_intnum_create_uint(intn_val);
569 yasm_intnum_destroy(intn);
572 yasm_intnum_calc(intn, YASM_EXPR_ADD, intn2);
576 elf_handle_reloc_addend(intn, reloc, offset);
577 retval = yasm_arch_intnum_tobytes(info->object->arch, intn, buf, destsize,
579 yasm_intnum_destroy(intn);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
rdf-objfmt.c 187 /*@dependent@*/ /*@null@*/ yasm_intnum *intn; local
275 intn = yasm_intnum_create_uint(intn_minus);
276 yasm_intnum_calc(intn, YASM_EXPR_NEG, NULL);
278 intn = yasm_intnum_create_uint(intn_plus);
285 yasm_intnum_destroy(intn);
288 yasm_intnum_calc(intn, YASM_EXPR_ADD, intn2);
291 retval = yasm_arch_intnum_tobytes(info->object->arch, intn, buf, destsize,
293 yasm_intnum_destroy(intn);
584 const yasm_intnum *intn; local
596 intn = yasm_expr_get_intnum(csize_expr, 1)
    [all...]

Completed in 1305 milliseconds

1 2