HomeSort by: relevance | last modified time | path
    Searched defs:psym (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/bsd/pcc/dist/pcc/cc/cxxcom/
init.c 157 struct symtab *psym; member in struct:initctx
388 ict->psym = csym;
885 csym = ict->psym;
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-lookup.c 651 unsigned long psym; local
653 if ((psym = ctf_lookup_symbol_idx (fp->ctf_parent, symname, try_parent,
656 return psym;
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
init.c 163 struct symtab *psym; member in struct:initctx
409 ict->psym = csym;
908 csym = ict->psym;
  /src/external/gpl3/binutils/dist/libctf/
ctf-lookup.c 796 unsigned long psym; local
798 if ((psym = ctf_lookup_symbol_idx (fp->ctf_parent, symname, try_parent,
801 return psym;
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-lookup.c 796 unsigned long psym; local
798 if ((psym = ctf_lookup_symbol_idx (fp->ctf_parent, symname, try_parent,
801 return psym;
  /src/external/gpl3/gdb/dist/gdb/
psymtab.c 289 const struct partial_symbol *psym;
293 psym = lookup_partial_symbol (objfile, ps, lookup_name, 1, domain);
294 if (psym)
297 return psym->ginfo.language ();
304 /* Returns true if PSYM matches LOOKUP_NAME. */
307 psymbol_name_matches (const partial_symbol *psym,
310 const language_defn *lang = language_def (psym->ginfo.language ());
313 return name_match (psym->ginfo.search_name (), lookup_name, NULL);
326 const struct partial_symbol **start, **psym;
395 for (psym = start; psym < start + length; psym++
288 const struct partial_symbol *psym; local
325 const struct partial_symbol **start, **psym; local
837 const partial_symbol **psym = ps->global_psymbols.data (); local
1066 const partial_symbol *psym = partial_symtabs->psymbol_cache.insert (psymbol, local
    [all...]
  /src/external/gpl3/gdb/dist/libctf/
ctf-lookup.c 796 unsigned long psym; local
798 if ((psym = ctf_lookup_symbol_idx (fp->ctf_parent, symname, try_parent,
801 return psym;
  /src/external/gpl3/gdb.old/dist/gdb/
psymtab.c 293 struct partial_symbol *psym;
297 psym = lookup_partial_symbol (objfile, ps, lookup_name, 1, domain);
298 if (psym)
301 return psym->ginfo.language ();
308 /* Returns true if PSYM matches LOOKUP_NAME. */
311 psymbol_name_matches (partial_symbol *psym,
314 const language_defn *lang = language_def (psym->ginfo.language ());
317 return name_match (psym->ginfo.search_name (), lookup_name, NULL);
330 struct partial_symbol **start, **psym;
399 for (psym = start; psym < start + length; psym++
292 struct partial_symbol *psym; local
329 struct partial_symbol **start, **psym; local
841 partial_symbol **psym = ps->global_psymbols.data (); local
1068 partial_symbol *psym local
    [all...]
  /src/external/gpl3/binutils/dist/gas/config/
obj-elf.c 1964 symbolS *csym, *psym; local
2004 psym = section_symbol (absolute_section);
2010 psym = symbol_find_or_make (pname);
2022 0, psym, 0, 0, BFD_RELOC_VTABLE_INHERIT);
tc-z80.c 524 symbolS * psym = symbol_find_or_make (buf); local
525 S_SET_SEGMENT (psym, reg_section);
526 symbol_set_value_expression (psym, &reg);
tc-alpha.c 491 struct symbol *psym; /* Pdesc symbol. */
597 info->psym = 0;
1405 symbolS *psym;
1415 psym = symbol_find_or_make (psymname);
1417 symbol_mark_used (psym);
1419 insn.fixups[insn.nfixups].exp.X_add_symbol = psym;
1945 fixP->tc_fix_data.info->psym = fixup->procsym;
6290 udata->bsym = symbol_get_bfdsym (fixp->tc_fix_data.info->psym);
487 struct symbol *psym; \/* Pdesc symbol. *\/ member in struct:alpha_reloc_tag
1398 symbolS *psym; local
  /src/external/gpl3/binutils.old/dist/gas/config/
obj-elf.c 1941 symbolS *csym, *psym; local
1981 psym = section_symbol (absolute_section);
1987 psym = symbol_find_or_make (pname);
1999 0, psym, 0, 0, BFD_RELOC_VTABLE_INHERIT);
tc-z80.c 524 symbolS * psym = symbol_find_or_make (buf); local
525 S_SET_SEGMENT (psym, reg_section);
526 symbol_set_value_expression (psym, &reg);
tc-alpha.c 491 struct symbol *psym; /* Pdesc symbol. */
597 info->psym = 0;
1405 symbolS *psym;
1415 psym = symbol_find_or_make (psymname);
1417 symbol_mark_used (psym);
1419 insn.fixups[insn.nfixups].exp.X_add_symbol = psym;
1945 fixP->tc_fix_data.info->psym = fixup->procsym;
6290 udata->bsym = symbol_get_bfdsym (fixp->tc_fix_data.info->psym);
487 struct symbol *psym; \/* Pdesc symbol. *\/ member in struct:alpha_reloc_tag
1398 symbolS *psym; local
  /src/external/gpl3/binutils/dist/bfd/
coffcode.h 3827 asymbol **psym;
3833 for (i = 0, psym = abfd->outsymbols; i < count; i++, psym++)
3835 if ((*psym)->section != current)
3841 psymsec = psym;
3844 if (strcmp ((*psym)->name, current->name) == 0)
3846 csym = coff_symbol_from (*psym);
3855 /* Here *PSYM is the section symbol for CURRENT. */
3902 if (psym != psymsec)
3907 hold = *psym;
3826 asymbol **psym; local
    [all...]
dwarf2.c 5693 asymbol ** psym; local
5702 for (psym = symbols; * psym != NULL; psym++)
5704 asymbol * sym = * psym;
  /src/external/gpl3/binutils.old/dist/bfd/
coffcode.h 3820 asymbol **psym;
3826 for (i = 0, psym = abfd->outsymbols; i < count; i++, psym++)
3828 if ((*psym)->section != current)
3834 psymsec = psym;
3837 if (strcmp ((*psym)->name, current->name) == 0)
3839 csym = coff_symbol_from (*psym);
3848 /* Here *PSYM is the section symbol for CURRENT. */
3895 if (psym != psymsec)
3900 hold = *psym;
3819 asymbol **psym; local
    [all...]
dwarf2.c 5693 asymbol ** psym; local
5702 for (psym = symbols; * psym != NULL; psym++)
5704 asymbol * sym = * psym;
  /src/external/gpl3/gdb/dist/bfd/
coffcode.h 3829 asymbol **psym;
3835 for (i = 0, psym = abfd->outsymbols; i < count; i++, psym++)
3837 if ((*psym)->section != current)
3843 psymsec = psym;
3846 if (strcmp ((*psym)->name, current->name) == 0)
3848 csym = coff_symbol_from (*psym);
3857 /* Here *PSYM is the section symbol for CURRENT. */
3904 if (psym != psymsec)
3909 hold = *psym;
3828 asymbol **psym; local
    [all...]
dwarf2.c 5694 asymbol ** psym; local
5703 for (psym = symbols; * psym != NULL; psym++)
5705 asymbol * sym = * psym;
  /src/external/gpl3/gdb.old/dist/bfd/
coffcode.h 3829 asymbol **psym;
3835 for (i = 0, psym = abfd->outsymbols; i < count; i++, psym++)
3837 if ((*psym)->section != current)
3843 psymsec = psym;
3846 if (strcmp ((*psym)->name, current->name) == 0)
3848 csym = coff_symbol_from (*psym);
3857 /* Here *PSYM is the section symbol for CURRENT. */
3904 if (psym != psymsec)
3909 hold = *psym;
3828 asymbol **psym; local
    [all...]
dwarf2.c 5687 asymbol ** psym; local
5696 for (psym = symbols; * psym != NULL; psym++)
5698 asymbol * sym = * psym;
  /src/external/gpl3/binutils/dist/gas/
ecoff.c 1611 localsym_t *psym;
1628 psym = &vp->last->datum->sym[vp->objects_last_page++];
1631 psym->name = S_GET_NAME (sym_value);
1633 psym->name = str;
1634 psym->as_sym = sym_value;
1636 symbol_get_obj (sym_value)->ecoff_symbol = psym;
1637 psym->addend = addend;
1638 psym->file_ptr = cur_file_ptr;
1639 psym->proc_ptr = cur_proc_ptr;
1640 psym->begin_ptr = NULL
1603 localsym_t *psym; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/
ecoff.c 1611 localsym_t *psym;
1628 psym = &vp->last->datum->sym[vp->objects_last_page++];
1631 psym->name = S_GET_NAME (sym_value);
1633 psym->name = str;
1634 psym->as_sym = sym_value;
1636 symbol_get_obj (sym_value)->ecoff_symbol = psym;
1637 psym->addend = addend;
1638 psym->file_ptr = cur_file_ptr;
1639 psym->proc_ptr = cur_proc_ptr;
1640 psym->begin_ptr = NULL
1603 localsym_t *psym; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
trans-expr.cc 10705 gfc_symbol *psym = expr1->symtree->n.sym; local
10707 if (psym->ts.type == BT_CHARACTER
10708 && psym->ts.u.cl->backend_decl)
10709 tmp = psym->ts.u.cl->backend_decl;

Completed in 194 milliseconds

1 2