HomeSort by relevance Sort by last modified time
    Searched refs:symrecs (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bytecode.c 108 bc->symrecs = NULL;
123 if (!bc->symrecs) {
124 bc->symrecs = yasm_xmalloc(2*sizeof(yasm_symrec *));
125 bc->symrecs[0] = sym;
126 bc->symrecs[1] = NULL;
132 while (bc->symrecs[count])
134 bc->symrecs = yasm_xrealloc(bc->symrecs,
136 bc->symrecs[count] = sym;
137 bc->symrecs[count+1] = NULL
    [all...]
bytecode.h 224 /*@null@*/ yasm_symrec **symrecs; member in struct:yasm_bytecode
399 /** Add to the list of symrecs that reference a bytecode. For symrec use
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
bytecode.pxi 65 if self.bc.symrecs == NULL:
69 sym = self.bc.symrecs[i]
73 sym = self.bc.symrecs[i]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-dbgfmt.c 181 if (bc->symrecs && bc->symrecs[0])
182 sym = bc->symrecs[0];
dwarf2-line.c 340 if (bc->symrecs) {
342 while (bc->symrecs[i]) {
343 lastsym = bc->symrecs[i];
525 if (bc->symrecs) {
527 while (bc->symrecs[i]) {
528 info->loc.sym = bc->symrecs[i];
634 if (bc->symrecs) {
636 while (bc->symrecs[i]) {
637 bcinfo.loc.sym = bc->symrecs[i];
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/
stabs-dbgfmt.c 229 for (bcsym=0; bc->symrecs && bc->symrecs[bcsym]; bcsym++)
232 yasm_symrec *sym = bc->symrecs[bcsym];
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-symline.c 475 if (sectbc->symrecs && sectbc->symrecs[0])
476 info->cv8_cur_li->sectsym = sectbc->symrecs[0];
    [all...]

Completed in 41 milliseconds