Home
last modified time | relevance | path

Searched refs:sym (Results 1 – 25 of 487) sorted by path

12345678910>>...20

/illumos-gate/usr/src/boot/common/
H A Dload_elf.c330 Elf_Sym sym; in __elfN() local
759 &sym) != 0) in __elfN()
761 p_start = sym.st_value + ef->off; in __elfN()
763 &sym) != 0) in __elfN()
765 p_end = sym.st_value + ef->off; in __elfN()
1061 Elf_Sym sym; in __elfN() local
1074 COPYOUT(ef->symtab + symnum, &sym, sizeof (sym)); in __elfN()
1075 if (sym.st_name == 0) { in __elfN()
1083 if (sym.st_shndx != SHN_UNDEF || in __elfN()
1084 (sym.st_value != 0 && in __elfN()
[all …]
H A Dload_elf_obj.c522 Elf_Sym sym; in __elfN() local
528 &sym, sizeof(sym)); in __elfN()
529 if (sym.st_shndx == SHN_UNDEF || sym.st_shndx >= ef->hdr.e_shnum) in __elfN()
531 base = ef->e_shdr[sym.st_shndx].sh_addr; in __elfN()
534 return (base + sym.st_value); in __elfN()
/illumos-gate/usr/src/boot/efi/include/IndustryStandard/
H A DTpm20.h1249 TPM_KEY_BITS sym; member
1257 TPMI_ALG_SYM_MODE sym; member
1282 TPMT_SYM_DEF_OBJECT sym; member
1565 TPM2B_DIGEST sym; member
1639 TPM2B_SYM_KEY sym; member
/illumos-gate/usr/src/boot/efi/loader/
H A DMakefile.com19 PROG= loader.sym
135 CLEANFILES= $(EFIPROG) loader.sym loader.bin
148 loader.bin: loader.sym
149 if [ `$(OBJDUMP) -t loader.sym | fgrep '*UND*' | wc -l` != 0 ]; then \
150 $(OBJDUMP) -t loader.sym | fgrep '*UND*'; \
157 --output-target=$(EFI_TARGET) --subsystem efi-app loader.sym $@
165 loader.sym: $(OBJS) $(DPADD)
/illumos-gate/usr/src/boot/i386/loader/
H A DMakefile41 PROG= $(LOADER).sym
84 CLEANFILES= vers.c $(LOADER) $(LOADER).sym $(LOADER).bin loader.help
119 $(LOADER).bin: $(LOADER).sym
/illumos-gate/usr/src/boot/sys/amd64/include/
H A Dasm.h86 #define WEAK_REFERENCE(sym, alias) \ argument
88 .equ CNAME(alias),CNAME(sym)
/illumos-gate/usr/src/boot/sys/i386/include/
H A Dasm.h100 #define WEAK_REFERENCE(sym, alias) \ argument
102 .equ CNAME(alias),CNAME(sym)
107 #define STRONG_ALIAS(alias,sym) \ argument
109 alias = sym
/illumos-gate/usr/src/boot/sys/sys/
H A Dcdefs.h561 extern __typeof (sym) aliassym __attribute__ ((__alias__ (#sym)))
564 #define __weak_reference(sym,alias) \ argument
566 __asm__(".equ " #alias ", " #sym)
567 #define __warn_references(sym,msg) \ argument
571 #define __sym_compat(sym,impl,verid) \ argument
573 #define __sym_default(sym,impl,verid) \ argument
576 #define __weak_reference(sym,alias) \ argument
579 #define __warn_references(sym,msg) \ argument
583 #define __sym_compat(sym,impl,verid) \ argument
590 #define __GLOBL(sym) __asm__(".globl " __XSTRING(sym)) argument
[all …]
H A Delf32.h151 #define ELF32_R_INFO(sym, type) (((sym) << 8) + (unsigned char)(type)) argument
178 #define ELF32_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size)) argument
H A Delf64.h160 #define ELF64_R_INFO(sym, type) (((sym) << 32) + ((type) & 0xffffffffL)) argument
185 #define ELF64_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size)) argument
H A Dlinker_set.h57 #define __MAKE_SET(set, sym) \ argument
61 __set_##set##_sym_##sym __section("set_" #set) \
62 __used = &(sym)
67 #define __MAKE_SET(set, sym) extern void const * const (__set_##set##_sym_##sym) argument
73 #define TEXT_SET(set, sym) __MAKE_SET(set, sym) argument
74 #define DATA_SET(set, sym) __MAKE_SET(set, sym) argument
75 #define BSS_SET(set, sym) __MAKE_SET(set, sym) argument
76 #define ABS_SET(set, sym) __MAKE_SET(set, sym) argument
77 #define SET_ENTRY(set, sym) __MAKE_SET(set, sym) argument
/illumos-gate/usr/src/cmd/abi/appcert/etc/
H A Detc.alt.in29 #ALT_USAGE:<tag>:<1-line-desc>:<lib>:<sym>[|<sym>...]:<text>
H A Detc.warn.in25 #WARNING:<label>:<1-line-desc>:<lib>|<sym>|<caller>,...:<text>
30 # the warning matches if any of the <lib>|<sym>|<caller> in the
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A DAppcertUtil.pm504 my ($app, $caller, $lib, $sym);
511 $direct_syms .= "$sym\n";
1751 $scoped_symbol{"$lib|$sym"} .=
1752 "$rel|$lib|$sym,";
1753 $scoped_symbol_all{"$sym"} .=
1754 "$rel|$lib|$sym,";
1761 $skip_symbols{$sym} = 1;
1837 "$sym|$abis|$class,";
1901 my ($lib, $sym, $rest);
1909 ($lib, $sym, $rest) =
[all …]
H A Dsymcheck.pl314 $symbols{$sym} = 1;
381 my ($to, $sym, $from, $binary, $line);
442 next if (exists($skip_symbols{$sym}));
446 push(@unbound_list, "$from|$sym");
722 $model{"$lib|$abi|$sym"} = $class;
1016 my ($app, $caller, $lib, $base, $sym);
1033 push(@profile, "$lib|$sym|$caller");
1094 $direct_syms{$sym} = 1;
1111 $scoped_msg .= "$base:$sym ";
1210 } elsif ($sym ne '*' && ! $direct_syms{$sym}) {
[all …]
H A Dsymprof.pl230 my ($prof, $sym);
238 $sym = $1;
244 "FUNC|$sym\n";
247 "FUNC|$sym\n";
962 "$object|$sym\n";
1150 my ($from, $to, $sym);
1170 $sym = $3;
1175 $sym =~ s/'\s+.*$//;
1179 $sym =~ s/[\s:;`']*$//;
1180 $sym =~ s/^[\s:;`']*//;
[all …]
H A Dsymreport.pl568 my ($bin, $arch, $direct, $lib, $class, $sym);
588 ($bin, $arch, $direct, $lib, $class, $sym) =
594 $app_sym_public{"$lib|$sym"}++;
610 ($bin, $arch, $direct, $lib, $class, $sym) =
614 $libsym_private{"$lib|$sym"}++;
619 $app_sym_private{"$lib|$sym"}++;
/illumos-gate/usr/src/cmd/abi/appcert/static_prof/
H A Dstatic_prof.c114 bkts[bktno].sym = bind->sym; in store_binding()
144 if (bkts[bktno].sym && (strcmp(bkts[bktno].sym, bind->sym)) == 0) { in check_store_binding()
153 if (!bkts[i].sym) in check_store_binding()
156 (strcmp(bkts[i].sym, bind->sym)) == 0) { in check_store_binding()
181 if (a->sym) in stringcompare()
182 x = a->sym; in stringcompare()
184 if (b->sym) in stringcompare()
185 y = b->sym; in stringcompare()
213 bind->sym, in profile_binding()
223 bind->sym, in profile_binding()
[all …]
H A Dstatic_prof.h61 char *sym; member
/illumos-gate/usr/src/cmd/awk_xpg4/
H A Dawk1.c381 wint_t c, sym; in yylex() member
716 c = ctosym[i].sym; in yylex()
/illumos-gate/usr/src/cmd/boot/symdef/
H A Dsymdef.c65 GElf_Sym sym; in main() local
101 &sym, &shndx) != NULL) && in main()
103 sym.st_name)) == 0)) { in main()
/illumos-gate/usr/src/cmd/dc/
H A Ddc.c101 struct sym *sp; in commnds()
1133 struct sym *sp; in init()
2299 struct sym *tmps; in garbage()
H A Ddc.h145 struct sym { struct
146 struct sym *next; argument
149 struct sym *stable[TBLSZ]; argument
150 struct sym *sptr, *sfree;
/illumos-gate/usr/src/cmd/demangle/
H A Ddemangle.c182 do_demangle(const char *sym, sysdem_lang_t lang, FILE *out) in do_demangle() argument
184 char *demangled = sysdemangle(sym, lang, NULL); in do_demangle()
187 warn(_("error while demangling '%s'"), sym); in do_demangle()
191 if (fprintf(out, "%s", (demangled != NULL) ? demangled : sym) < 0) in do_demangle()
/illumos-gate/usr/src/cmd/dis/
H A Ddis_target.c260 sym_entry_t *sym; in construct_symtab() local
324 sym->se_shndx = sym->se_sym.st_shndx; in construct_symtab()
353 sym++; in construct_symtab()
384 sym++; in construct_symtab()
693 addr < sym->se_sym.st_value + sym->se_sym.st_size && in dis_tgt_lookup()
695 osym = sym; in dis_tgt_lookup()
703 match = sym; in dis_tgt_lookup()
723 sym = osym; in dis_tgt_lookup()
751 sym_entry_t *sym; in dis_tgt_next_symbol() local
758 sym++; in dis_tgt_next_symbol()
[all …]

12345678910>>...20