Searched refs:intn2 (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dintnum.h153 * \param intn2 second intnum
154 * \return -1 if intn1 < intn2, 0 if intn1 == intn2, 1 if intn1 > intn2.
157 int yasm_intnum_compare(const yasm_intnum *intn1, const yasm_intnum *intn2);
H A Dintnum.c613 yasm_intnum_compare(const yasm_intnum *intn1, const yasm_intnum *intn2) argument
617 if (intn1->type == INTNUM_L && intn2->type == INTNUM_L) {
618 if (intn1->val.l < intn2->val.l)
620 if (intn1->val.l > intn2->val.l)
626 op2 = intnum_tobv(op2static, intn2);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
H A Drdf-objfmt.c281 yasm_intnum *intn2 = yasm_expr_get_intnum(&value->abs, 0); local
282 if (!intn2) {
288 yasm_intnum_calc(intn, YASM_EXPR_ADD, intn2);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/
H A Dxdf-objfmt.c219 yasm_intnum *intn2 = yasm_expr_get_intnum(&value->abs, 0); local
220 if (!intn2) {
226 yasm_intnum_calc(intn, YASM_EXPR_ADD, intn2);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
H A Delf-objfmt.c565 yasm_intnum *intn2 = yasm_expr_get_intnum(&value->abs, 0); local
566 if (!intn2) {
572 yasm_intnum_calc(intn, YASM_EXPR_ADD, intn2);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/
H A Dmacho-objfmt.c560 yasm_intnum *intn2 = yasm_expr_get_intnum(&value->abs, 0); local
562 if (!intn2) {
568 yasm_intnum_calc(intn, YASM_EXPR_ADD, intn2);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
H A Dcoff-objfmt.c692 yasm_intnum *intn2 = yasm_expr_get_intnum(&value->abs, 0); local
693 if (!intn2) {
701 yasm_intnum_calc(intn, YASM_EXPR_ADD, intn2);

Completed in 631 milliseconds