Home
last modified time | relevance | path

Searched refs:refnum (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dstabsread.c498 ref_add (int refnum, struct symbol *sym, char *stabs, CORE_ADDR value) in ref_add() argument
502 if (refnum >= ref_count) in ref_add()
503 ref_count = refnum + 1; in ref_add()
513 ref_map[refnum].stabs = stabs; in ref_add()
514 ref_map[refnum].sym = sym; in ref_add()
515 ref_map[refnum].value = value; in ref_add()
520 ref_search (int refnum) in ref_search() argument
522 if (refnum < 0 || refnum > ref_count) in ref_search()
524 return ref_map[refnum].sym; in ref_search()
534 int refnum = 0; in process_reference() local
[all …]
H A Ddbxread.c3185 int refnum; in process_one_symbol() local
3192 refnum = symbol_reference_defined (&s); in process_one_symbol()
3193 if (refnum >= 0) in process_one_symbol()
3194 if (!ref_search (refnum)) in process_one_symbol()
3195 ref_add (refnum, 0, name, valu); in process_one_symbol()