Home
last modified time | relevance | path

Searched refs:Stub (Results 1 – 25 of 45) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/ELF/
DELFStub.cpp14 ELFStub::ELFStub(ELFStub const &Stub) { in ELFStub() argument
15 TbeVersion = Stub.TbeVersion; in ELFStub()
16 Arch = Stub.Arch; in ELFStub()
17 SoName = Stub.SoName; in ELFStub()
18 NeededLibs = Stub.NeededLibs; in ELFStub()
19 Symbols = Stub.Symbols; in ELFStub()
22 ELFStub::ELFStub(ELFStub &&Stub) { in ELFStub() argument
23 TbeVersion = std::move(Stub.TbeVersion); in ELFStub()
24 Arch = std::move(Stub.Arch); in ELFStub()
25 SoName = std::move(Stub.SoName); in ELFStub()
[all …]
DTBEHandler.cpp131 static void mapping(IO &IO, ELFStub &Stub) { in mapping()
134 IO.mapRequired("TbeVersion", Stub.TbeVersion); in mapping()
135 IO.mapOptional("SoName", Stub.SoName); in mapping()
136 IO.mapRequired("Arch", (ELFArchMapper &)Stub.Arch); in mapping()
137 IO.mapOptional("NeededLibs", Stub.NeededLibs); in mapping()
138 IO.mapRequired("Symbols", Stub.Symbols); in mapping()
147 std::unique_ptr<ELFStub> Stub(new ELFStub()); in readTBEFromBuffer() local
148 YamlIn >> *Stub; in readTBEFromBuffer()
152 return std::move(Stub); in readTBEFromBuffer()
155 Error elfabi::writeTBEToOutputStream(raw_ostream &OS, const ELFStub &Stub) { in writeTBEToOutputStream() argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DOrcABISupport.cpp170 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlock.base()); in emitIndirectStubsBlock() local
175 Stub[I] = 0xd61f020058000010 | PtrOffsetField; in emitIndirectStubsBlock()
252 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlock.base()); in emitIndirectStubsBlock() local
256 Stub[I] = 0xF1C40000000025ff | PtrOffsetField; in emitIndirectStubsBlock()
520 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlock.base()); in emitIndirectStubsBlock() local
523 Stub[I] = 0xF1C40000000025ff | (PtrAddr << 16); in emitIndirectStubsBlock()
706 uint32_t *Stub = reinterpret_cast<uint32_t *>(StubsBlock.base()); in emitIndirectStubsBlock() local
707 uint64_t PtrAddr = reinterpret_cast<uint64_t>(Stub) + NumPages * PageSize; in emitIndirectStubsBlock()
711 Stub[4 * I + 0] = 0x3c190000 | (HiAddr & 0xFFFF); // lui $t9,ptr1 in emitIndirectStubsBlock()
712 Stub[4 * I + 1] = 0x8f390000 | (PtrAddr & 0xFFFF); // lw $t9,%lo(ptr1)($t9) in emitIndirectStubsBlock()
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_NVX_binary_import.txt33 === Stub API References
35 [open,refpage='VkCuFunctionNVX',desc='Stub description of VkCuFunctionNVX',type='handles']
44 [open,refpage='VkCuModuleNVX',desc='Stub description of VkCuModuleNVX',type='handles']
53 [open,refpage='vkCreateCuFunctionNVX',desc='Stub description of vkCreateCuFunctionNVX',type='protos…
64 [open,refpage='VkCuFunctionCreateInfoNVX',desc='Stub description of VkCuFunctionCreateInfoNVX',type…
75 [open,refpage='vkDestroyCuFunctionNVX',desc='Stub description of vkDestroyCuFunctionNVX',type='prot…
86 [open,refpage='vkCreateCuModuleNVX',desc='Stub description of vkCreateCuModuleNVX',type='protos']
97 [open,refpage='VkCuModuleCreateInfoNVX',desc='Stub description of VkCuModuleCreateInfoNVX',type='st…
108 [open,refpage='vkDestroyCuModuleNVX',desc='Stub description of vkDestroyCuModuleNVX',type='protos']
119 [open,refpage='vkCmdCuLaunchKernelNVX',desc='Stub description of vkCmdCuLaunchKernelNVX',type='prot…
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/ELF/
DELFStub.h62 ELFStub(const ELFStub &Stub);
63 ELFStub(ELFStub &&Stub);
DTBEHandler.h39 Error writeTBEToOutputStream(raw_ostream &OS, const ELFStub &Stub);
/third_party/python/Lib/unittest/test/
Dtest_case.py1244 def Stub(): function
1246 self.assertRaises(ExceptionMock, Stub)
1248 self.assertRaises((ValueError, ExceptionMock), Stub)
1259 self.assertRaises(ValueError, Stub)
1264 def Stub(): function
1267 Stub()
1270 Stub()
1291 self.assertRaises(ValueError, Stub)
1322 def Stub(): function
1325 self.assertRaisesRegex(ExceptionMock, re.compile('expect$'), Stub)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFX86_64.h156 auto Stub = Stubs.find(OriginalRelValueRef); in generateRelocationStub() local
157 if (Stub == Stubs.end()) { in generateRelocationStub()
168 StubOffset = Stub->second; in generateRelocationStub()
DRuntimeDyldCOFFAArch64.h111 auto Stub = Stubs.find(OriginalRelValueRef); in generateRelocationStub() local
112 if (Stub == Stubs.end()) { in generateRelocationStub()
123 StubOffset = Stub->second; in generateRelocationStub()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86AsmPrinter.cpp693 for (auto &Stub : Stubs) in emitNonLazyStubs() local
694 emitNonLazySymbolPointer(OutStreamer, Stub.first, Stub.second); in emitNonLazyStubs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsAsmPrinter.cpp1071 MCSymbolELF *Stub = in EmitFPCallStub() local
1073 TS.emitDirectiveEnt(*Stub); in EmitFPCallStub()
1077 OutStreamer->EmitLabel(Stub); in EmitFPCallStub()
1117 const MCSymbolRefExpr *E = MCSymbolRefExpr::create(Stub, OutContext); in EmitFPCallStub()
1120 OutStreamer->emitELFSize(Stub, T_min_E); in EmitFPCallStub()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1466 for (const auto &Stub : Stubs) { in doFinalization() local
1467 OutStreamer->EmitLabel(Stub.first); in doFinalization()
1468 OutStreamer->EmitSymbolValue(Stub.second.getPointer(), in doFinalization()
1483 for (const auto &Stub : Stubs) { in doFinalization() local
1485 SectionName += Stub.first->getName(); in doFinalization()
1490 SectionKind::getReadOnly(), Stub.first->getName(), in doFinalization()
1493 OutStreamer->EmitSymbolAttribute(Stub.first, MCSA_Global); in doFinalization()
1494 OutStreamer->EmitLabel(Stub.first); in doFinalization()
1495 OutStreamer->EmitSymbolValue(Stub.second.getPointer(), in doFinalization()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachO_x86_64.cpp388 void fixExternalBranchEdge(Edge &E, Symbol &Stub) { in fixExternalBranchEdge() argument
391 E.setTarget(Stub); in fixExternalBranchEdge()
DMachO_arm64.cpp425 void fixExternalBranchEdge(Edge &E, Symbol &Stub) { in fixExternalBranchEdge() argument
428 E.setTarget(Stub); in fixExternalBranchEdge()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_camera_profile.h829 void Stub ();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMAsmPrinter.cpp531 for (auto &Stub : Stubs) in EmitEndOfAsmFile() local
532 emitNonLazySymbolPointer(*OutStreamer, Stub.first, Stub.second); in EmitEndOfAsmFile()
544 for (auto &Stub : Stubs) in EmitEndOfAsmFile() local
545 emitNonLazySymbolPointer(*OutStreamer, Stub.first, Stub.second); in EmitEndOfAsmFile()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DICUResourceBundleTest.java892 class Stub extends UResourceBundle{ in TestCoverage() class
906 Stub stub = new Stub(); in TestCoverage()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DICUResourceBundleTest.java892 class Stub extends UResourceBundle{ in TestCoverage() class
906 Stub stub = new Stub(); in TestCoverage()
/third_party/skia/third_party/externals/icu/source/config/
Dmh-os40082 # Stub name overrides for iSeries
/third_party/node/deps/v8/src/logging/
Dcode-events.h53 V(STUB_TAG, Stub) \
/third_party/icu/icu4c/source/config/
Dmh-os40082 # Stub name overrides for iSeries
/third_party/mesa3d/docs/relnotes/
D20.3.4.rst92 - panfrost: Stub out set_shader_images().
/third_party/node/deps/v8/include/
Dv8-profiler.h1115 V(Stub) \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp1169 MCSymbol *Stub = Ctx.getOrCreateSymbol(Name); in getIndirectSymViaGOTPCRel() local
1171 MachineModuleInfoImpl::StubValueTy &StubSym = MachOMMI.getGVStubEntry(Stub); in getIndirectSymViaGOTPCRel()
1180 MCSymbolRefExpr::create(Stub, MCSymbolRefExpr::VK_None, Ctx); in getIndirectSymViaGOTPCRel()
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-heltec-wb32/
Dsdkconfig356 # GDB Stub
358 # end of GDB Stub

12