| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | TapiFile.cpp | 78 void TapiFile::moveSymbolNext(DataRefImpl &DRI) const { DRI.d.a++; } in moveSymbolNext() 80 Error TapiFile::printSymbolName(raw_ostream &OS, DataRefImpl DRI) const { in printSymbolName() 81 assert(DRI.d.a < Symbols.size() && "Attempt to access symbol out of bounds"); in printSymbolName() 82 const Symbol &Sym = Symbols[DRI.d.a]; in printSymbolName() 87 Expected<uint32_t> TapiFile::getSymbolFlags(DataRefImpl DRI) const { in getSymbolFlags() 88 assert(DRI.d.a < Symbols.size() && "Attempt to access symbol out of bounds"); in getSymbolFlags() 89 return Symbols[DRI.d.a].Flags; in getSymbolFlags() 93 DataRefImpl DRI; in symbol_begin() local 94 DRI.d.a = 0; in symbol_begin() 95 return BasicSymbolRef{DRI, this}; in symbol_begin() [all …]
|
| H A D | MachOObjectFile.cpp | 114 getSymbolTableEntryBase(const MachOObjectFile &O, DataRefImpl DRI) { in getSymbolTableEntryBase() argument 115 const char *P = reinterpret_cast<const char *>(DRI.p); in getSymbolTableEntryBase() 1771 DataRefImpl DRI = Sec.getRawDataRefImpl(); in getSectionType() local 1772 uint32_t Flags = getSectionFlags(*this, DRI); in getSectionType() 1809 uint32_t MachOObjectFile::getSymbolAlignment(DataRefImpl DRI) const { in getSymbolAlignment() 1810 uint32_t Flags = cantFail(getSymbolFlags(DRI)); in getSymbolAlignment() 1812 MachO::nlist_base Entry = getSymbolTableEntryBase(*this, DRI); in getSymbolAlignment() 1818 uint64_t MachOObjectFile::getCommonSymbolSizeImpl(DataRefImpl DRI) const { in getCommonSymbolSizeImpl() 1819 return getNValue(DRI); in getCommonSymbolSizeImpl() 1848 Expected<uint32_t> MachOObjectFile::getSymbolFlags(DataRefImpl DRI) const { in getSymbolFlags() [all …]
|
| H A D | XCOFFObjectFile.cpp | 422 DataRefImpl DRI; in section_begin() local 423 DRI.p = getSectionHeaderTableAddress(); in section_begin() 424 return section_iterator(SectionRef(DRI, this)); in section_begin() 428 DataRefImpl DRI; in section_end() local 429 DRI.p = getWithOffset(getSectionHeaderTableAddress(), in section_end() 431 return section_iterator(SectionRef(DRI, this)); in section_end() 497 DataRefImpl DRI; in getSectionByNum() local 498 DRI.p = getWithOffset(getSectionHeaderTableAddress(), in getSectionByNum() 500 return DRI; in getSectionByNum()
|
| H A D | ObjectFile.cpp | 77 uint32_t ObjectFile::getSymbolAlignment(DataRefImpl DRI) const { return 0; } in getSymbolAlignment()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| H A D | TapiFile.h | 32 void moveSymbolNext(DataRefImpl &DRI) const override; 34 Error printSymbolName(raw_ostream &OS, DataRefImpl DRI) const override; 36 Expected<uint32_t> getSymbolFlags(DataRefImpl DRI) const override;
|
| H A D | ELFObjectFile.h | 312 DataRefImpl DRI; in toDRI() local 314 DRI.d.a = 0; in toDRI() 315 DRI.d.b = 0; in toDRI() 316 return DRI; in toDRI() 323 DRI.d.a = 0; in toDRI() 324 DRI.d.b = 0; in toDRI() 325 return DRI; in toDRI() 331 DRI.d.a = SymTableIndex; in toDRI() 332 DRI.d.b = SymbolNum; in toDRI() 333 return DRI; in toDRI() [all …]
|
| H A D | MachO.h | 488 MachO::section getSection(DataRefImpl DRI) const; 489 MachO::section_64 getSection64(DataRefImpl DRI) const; 492 MachO::nlist getSymbolTableEntry(DataRefImpl DRI) const; 493 MachO::nlist_64 getSymbol64TableEntry(DataRefImpl DRI) const;
|
| /netbsd-src/external/mit/xorg/server/drivers/xf86-video-radeon/ |
| H A D | Makefile | 20 SRCS.DRI= radeon_dri.c 21 CPPFLAGS+= ${X11FLAGS.DRI} 53 $(SRCS.DRI) $(SRCS.EXA) atombios_output.c atombios_crtc.c \
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| H A D | MachODebugMapParser.cpp | 198 const DataRefImpl &DRI = Symbol.getRawDataRefImpl(); in parseOneBinary() local 200 handleStabDebugMapEntry(MainBinary.getSymbol64TableEntry(DRI)); in parseOneBinary() 202 handleStabDebugMapEntry(MainBinary.getSymbolTableEntry(DRI)); in parseOneBinary() 326 const DataRefImpl &DRI = Symbol.getRawDataRefImpl(); in dumpOneBinaryStab() local 328 dumpSymTabEntry(OS, Idx, MainBinary.getSymbol64TableEntry(DRI)); in dumpOneBinaryStab() 330 dumpSymTabEntry(OS, Idx, MainBinary.getSymbolTableEntry(DRI)); in dumpOneBinaryStab()
|
| H A D | MachOUtils.cpp | 209 object::DataRefImpl DRI = Symbol.getRawDataRefImpl(); in transferSymbols() local 210 if (transferSymbol(Obj.getSymbol64TableEntry(DRI), IsLittleEndian, in transferSymbols() 216 object::DataRefImpl DRI = Symbol.getRawDataRefImpl(); in transferSymbols() local 217 if (transferSymbol(Obj.getSymbolTableEntry(DRI), IsLittleEndian, Strings, in transferSymbols()
|
| /netbsd-src/external/mit/xorg/server/drivers/xf86-video-sunleo/ |
| H A D | Makefile | 8 CPPFLAGS+= ${X11FLAGS.DRI}
|
| /netbsd-src/external/mit/xorg/server/drivers/xf86-video-suntcx/ |
| H A D | Makefile | 8 CPPFLAGS+= ${X11FLAGS.DRI}
|
| /netbsd-src/external/mit/xorg/server/drivers/xf86-video-newport/ |
| H A D | Makefile | 9 CPPFLAGS+= ${X11FLAGS.DRI}
|
| /netbsd-src/external/mit/xorg/server/drivers/xf86-video-suncg6/ |
| H A D | Makefile | 8 CPPFLAGS+= ${X11FLAGS.DRI}
|
| /netbsd-src/external/mit/xorg/server/drivers/xf86-video-pnozz/ |
| H A D | Makefile | 8 CPPFLAGS+= ${X11FLAGS.DRI}
|
| /netbsd-src/external/mit/xorg/server/xorg-server.old/hw/xfree86/xf86config/ |
| H A D | Makefile | 9 SRCS= DRI.c Device.c Extensions.c Files.c Flags.c Input.c Layout.c \
|
| /netbsd-src/external/mit/xorg/server/xorg-server/hw/xfree86/xf86config/ |
| H A D | Makefile | 9 SRCS= DRI.c Device.c Extensions.c Files.c Flags.c Input.c Layout.c \
|
| /netbsd-src/external/mit/xorg/server/drivers/xf86-video-sunffb/ |
| H A D | Makefile | 21 CPPFLAGS+= ${X11FLAGS.DRI} -DUSE_VIS
|
| /netbsd-src/share/mk/ |
| H A D | bsd.x11.mk | 65 X11FLAGS.DRI= -DGLXEXT -DXF86DRI -DGLX_DIRECT_RENDERING \ 69 X11FLAGS.EXTENSION+= ${X11FLAGS.DRI}
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUMachineCFGStructurizer.cpp | 2077 for (auto DRI = PHIInfo.dests_begin(), DE = PHIInfo.dests_end(); DRI != DE; in prunePHIInfo() local 2078 ++DRI) { in prunePHIInfo() 2080 unsigned DestReg = *DRI; in prunePHIInfo() 2196 for (auto DRI = PHIInfo.dests_begin(), DE = PHIInfo.dests_end(); DRI != DE; in createEntryPHIs() local 2197 ++DRI) { in createEntryPHIs() 2199 unsigned DestReg = *DRI; in createEntryPHIs() 2241 for (auto DRI = PHIInfo.dests_begin(), DE = PHIInfo.dests_end(); DRI != DE; in resolvePHIInfos() local 2242 ++DRI) { in resolvePHIInfos() 2243 unsigned DestReg = *DRI; in resolvePHIInfos()
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/ |
| H A D | Kconfig | 6 # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. 9 tristate "Direct Rendering Manager (XFree86 4.1.0 and higher DRI support)" 19 Kernel-level support for the Direct Rendering Infrastructure (DRI)
|
| /netbsd-src/external/mit/xorg/server/xorg-server/hw/xfree86/xorgos/ |
| H A D | Makefile | 166 CPPFLAGS+= ${X11FLAGS.DRI}
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
| H A D | MachODumper.cpp | 390 DataRefImpl DRI, in getSymbol() argument 393 MachO::nlist Entry = Obj->getSymbolTableEntry(DRI); in getSymbol() 401 MachO::nlist_64 Entry = Obj->getSymbol64TableEntry(DRI); in getSymbol()
|
| /netbsd-src/external/mit/xorg/server/xorg-server.old/hw/xfree86/xorgos/ |
| H A D | Makefile | 169 CPPFLAGS+= ${X11FLAGS.DRI}
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | InstrRefBasedImpl.cpp | 1821 for (MCSubRegIndexIterator DRI(DstRegNum, TRI); DRI.isValid(); ++DRI) in performCopy() local 1822 MTracker->defReg(DRI.getSubReg(), CurBB, CurInst); in performCopy()
|