/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/sym/ |
D | template.h | 13 } Sym, *SymPtr; typedef 18 void zzs_add(char *, Sym *); 19 Sym *zzs_get(char *); 20 void zzs_del(Sym *); 22 Sym **zzs_scope(Sym **); 23 Sym *zzs_rmscope(Sym **); 25 Sym *zzs_new(char *); 26 Sym *zzs_newadd(char *); 32 Sym *zzs_get(); 35 Sym **zzs_scope(); [all …]
|
D | sym.c | 121 static Sym **CurScope = NULL; 123 static Sym **table=NULL; 136 table = (Sym **) calloc(sz, sizeof(Sym *)); 164 void zzs_add(char *key,Sym rec) in zzs_add() 168 register Sym *rec; 187 Sym * zzs_get(char *key) in zzs_get() 189 Sym * zzs_get(key) in zzs_get() 195 register Sym *q; 217 void zzs_del(Sym *p) in zzs_del() 220 register Sym *p; in zzs_del() [all …]
|
/device/linaro/bootloader/edk2/ArmPkg/Include/ |
D | AsmMacroIoLib.h | 35 #define ADRL(Reg, Sym) \ argument 36 movw Reg, #:lower16:(Sym) - (. + 16) ; \ 37 movt Reg, #:upper16:(Sym) - (. + 12) ; \ 40 #define LDRL(Reg, Sym) \ argument 41 movw Reg, #:lower16:(Sym) - (. + 16) ; \ 42 movt Reg, #:upper16:(Sym) - (. + 12) ; \
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/ |
D | Elf64Convert.c | 296 Elf_Sym *Sym in GetSymName() argument 299 if (Sym->st_name == 0) { in GetSymName() 308 assert(Sym->st_name < StrtabShdr->sh_size); in GetSymName() 314 for (i= Sym->st_name; (i < StrtabShdr->sh_size) && !foundEnd; i++) { in GetSymName() 319 return StrtabContents + Sym->st_name; in GetSymName() 739 Elf_Sym *Sym = (Elf_Sym *)(Symtab + ELF_R_SYM(Rel->r_info) * SymtabShdr->sh_entsize); in WriteSections64() local 748 if (Sym->st_shndx == SHN_UNDEF in WriteSections64() 749 || Sym->st_shndx >= mEhdr->e_shnum) { in WriteSections64() 750 const UINT8 *SymName = GetSymName(Sym); in WriteSections64() 758 mInImageName, SymName, Sym->st_value); in WriteSections64() [all …]
|
D | Elf32Convert.c | 304 Elf_Sym *Sym in GetSymName() argument 307 if (Sym->st_name == 0) { in GetSymName() 316 assert(Sym->st_name < StrtabShdr->sh_size); in GetSymName() 322 for (i = Sym->st_name; (i < StrtabShdr->sh_size) && !foundEnd; i++) { in GetSymName() 327 return StrtabContents + Sym->st_name; in GetSymName() 728 Elf_Sym *Sym = (Elf_Sym *)(Symtab + ELF_R_SYM(Rel->r_info) * SymtabShdr->sh_entsize); in WriteSections32() local 738 if (Sym->st_shndx == SHN_UNDEF in WriteSections32() 739 || Sym->st_shndx >= mEhdr->e_shnum) { in WriteSections32() 740 const UINT8 *SymName = GetSymName(Sym); in WriteSections32() 748 mInImageName, SymName, Sym->st_value); in WriteSections32() [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/ |
D | DlgPPC.mak | 21 Sym�PPC = 24 PPCCOptions = {Includes} {Sym�PPC} -w off -d MPW -d __STDC__=1 -d USER_ZZSYN 40 -o {Targ} {Sym�PPC} �
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/ |
D | ProcessDsc.c | 3003 INT8 *Sym; in WriteCommonMakefile() local 3022 Sym = GetSymbolValue (EFI_SOURCE); in WriteCommonMakefile() 3023 fprintf (MakeFptr, "%s = %s\n", EFI_SOURCE, Sym); in WriteCommonMakefile() 3024 Sym = GetSymbolValue (BUILD_DIR); in WriteCommonMakefile() 3025 fprintf (MakeFptr, "%s = %s\n", BUILD_DIR, Sym); in WriteCommonMakefile() 3026 Sym = GetSymbolValue (BIN_DIR); in WriteCommonMakefile() 3027 fprintf (MakeFptr, "%s = %s\n", BIN_DIR, Sym); in WriteCommonMakefile() 3028 Sym = GetSymbolValue (OUT_DIR); in WriteCommonMakefile() 3029 fprintf (MakeFptr, "%s = %s\n", OUT_DIR, Sym); in WriteCommonMakefile() 3030 Sym = GetSymbolValue (LIB_DIR); in WriteCommonMakefile() [all …]
|
D | FWVolume.c | 317 char *Sym; in CFVAddFVFile() local 356 Sym = GetSymbolValue (FV_DIR); in CFVAddFVFile() 357 if (Sym == NULL) { in CFVAddFVFile() 358 Sym = DEFAULT_FV_DIR; in CFVAddFVFile() 365 sprintf (Str, "%s\\%s\\%s.%s", Sym, Processor, Name, FFSExt); in CFVAddFVFile() 367 sprintf (Str, "%s\\%s\\%s%s", Sym, Processor, Name, FFSExt); in CFVAddFVFile()
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/MakeDeps/ |
D | MakeDeps.c | 885 SYMBOL *Sym; in ReplaceSymbols() local 906 Sym = mGlobals.SymbolTable; in ReplaceSymbols() 907 while (Sym != NULL) { in ReplaceSymbols() 908 if (_strnicmp (From, Sym->Value, strlen (Sym->Value)) == 0) { in ReplaceSymbols() 913 strcpy (To, Sym->Name); in ReplaceSymbols() 914 To += strlen (Sym->Name); in ReplaceSymbols() 915 From += strlen (Sym->Value); in ReplaceSymbols() 922 Sym = Sym->Next; in ReplaceSymbols()
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | AntlrPPC.mak | 27 Sym�PPC = 29 PPCCOptions = {Includes} {Sym�PPC} -w off -d MPW -d __STDC__=1 -d USER_ZZSYN 51 -o {Targ} {Sym�PPC} �
|