/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
expr.h | 54 typedef struct yasm_expr__item { struct 67 } yasm_expr__item; typedef in typeref:struct:yasm_expr__item 79 yasm_expr__item terms[2]; 91 (yasm_expr_op op, /*@only@*/ yasm_expr__item *a, 92 /*@only@*/ /*@null@*/ yasm_expr__item *b, unsigned long line); 99 /*@only@*/ yasm_expr__item *yasm_expr_precbc(/*@keep@*/ yasm_bytecode *precbc); 106 /*@only@*/ yasm_expr__item *yasm_expr_sym(/*@keep@*/ yasm_symrec *sym); 113 /*@only@*/ yasm_expr__item *yasm_expr_expr(/*@keep@*/ yasm_expr *e); 120 /*@only@*/ yasm_expr__item *yasm_expr_int(/*@keep@*/ yasm_intnum *intn); 127 /*@only@*/ yasm_expr__item *yasm_expr_float(/*@keep@*/ yasm_floatnum *flt) [all...] |
expr.c | 52 static void expr_delete_term(yasm_expr__item *term, int recurse); 58 static yasm_expr__item itempool[31]; 64 yasm_expr_create(yasm_expr_op op, yasm_expr__item *left, 65 yasm_expr__item *right, unsigned long line) 126 static yasm_expr__item * 142 yasm_expr__item * 145 yasm_expr__item *e = expr_get_item(); 151 yasm_expr__item * 154 yasm_expr__item *e = expr_get_item(); 160 yasm_expr__item * [all...] |
value.c | 498 sizeof(yasm_expr__item));
|
section.c | 852 yasm_expr__item *items; 960 span->items = yasm_xmalloc(span->num_terms*sizeof(yasm_expr__item)); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/ |
x86expr.c | 45 x86_expr_checkea_get_reg3264(yasm_expr__item *ei, int *regnum, 100 x86_expr_checkea_get_reg16(yasm_expr__item *ei, int *regnum, void *d) 264 int *(*get_reg)(yasm_expr__item *ei, int *regnum, void *d)) 559 x86_expr_checkea_getregsize_callback(yasm_expr__item *ei, void *d) [all...] |
x86id.c | 357 x86_expr_contains_simd_cb(const yasm_expr__item *ei, void *d) [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/ |
expr.pxi | 88 cdef yasm_expr__item* __new_item(self, value) except NULL: 89 cdef yasm_expr__item *retval
|