Home
last modified time | relevance | path

Searched refs:NType (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp321 uint8_t NType; member
391 uint8_t NType = 0; in darwinPrintSymbol() local
400 NType |= MachO::N_EXT; in darwinPrintSymbol()
402 NType |= MachO::N_PEXT; in darwinPrintSymbol()
404 NType |= MachO::N_EXT | MachO::N_UNDF; in darwinPrintSymbol()
409 NType |= MachO::N_SECT; in darwinPrintSymbol()
427 NType = STE_64.n_type; in darwinPrintSymbol()
433 NType = S.NType; in darwinPrintSymbol()
445 NType = STE.n_type; in darwinPrintSymbol()
451 NType = S.NType; in darwinPrintSymbol()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp379 struct NType { struct
380 NType(IO &) : Type(RelocType(0)) {} in NType() argument
381 NType(IO &, uint16_t T) : Type(RelocType(T)) {} in NType() argument
417 MappingNormalization<NType<COFF::RelocationTypeI386>, uint16_t> NT( in mapping()
421 MappingNormalization<NType<COFF::RelocationTypeAMD64>, uint16_t> NT( in mapping()
425 MappingNormalization<NType<COFF::RelocationTypesARM>, uint16_t> NT( in mapping()
429 MappingNormalization<NType<COFF::RelocationTypesARM64>, uint16_t> NT( in mapping()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DMachODebugMapParser.cpp214 uint8_t NType; member
236 static const char *getDarwinStabString(uint8_t NType) { in getDarwinStabString() argument
238 if (DarwinStabNames[i].NType == NType) in getDarwinStabString()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOObjectFile.cpp1690 uint8_t NType = 0; in checkSymbolTable() local
1701 NType = STE_64.n_type; in checkSymbolTable()
1708 NType = STE.n_type; in checkSymbolTable()
1714 if ((NType & MachO::N_STAB) == 0) { in checkSymbolTable()
1715 if ((NType & MachO::N_TYPE) == MachO::N_SECT) { in checkSymbolTable()
1720 if ((NType & MachO::N_TYPE) == MachO::N_INDR) { in checkSymbolTable()
1727 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) || in checkSymbolTable()
1728 (NType & MachO::N_TYPE) == MachO::N_PBUD)) { in checkSymbolTable()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1089 uint8_t NType = (MachO->is64Bit() ? in disassembleObject() local
1092 if (NType & MachO::N_STAB) in disassembleObject()
1884 uint8_t NType = in printSymbol() local
1887 if (NType & MachO::N_STAB) in printSymbol()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/
H A DChangeLog-20104893 * testsuite/util/testsuite_tr1.h (NType, TType, SLType, PODType): Add.