/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/ |
H A D | MsgPackReader.cpp | 28 Expected<bool> Reader::read(Object &Obj) { in read() argument 36 Obj.Kind = Type::Nil; in read() 39 Obj.Kind = Type::Boolean; in read() 40 Obj.Bool = true; in read() 43 Obj.Kind = Type::Boolean; in read() 44 Obj.Bool = false; in read() 47 Obj.Kind = Type::Int; in read() 48 return readInt<int8_t>(Obj); in read() 50 Obj.Kind = Type::Int; in read() 51 return readInt<int16_t>(Obj); in read() 181 readRaw(Object &Obj) readRaw() argument 191 readInt(Object &Obj) readInt() argument 201 readUInt(Object &Obj) readUInt() argument 211 readLength(Object &Obj) readLength() argument 221 readExt(Object &Obj) readExt() argument 231 createRaw(Object &Obj, uint32_t Size) createRaw() argument 241 createExt(Object &Obj, uint32_t Size) createExt() argument [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | declarationEmitInlinedDistributiveConditional.js | 12 export const dropPrivateProps1 = <Obj>(obj: Obj) => excludePrivateKeys1(obj); 13 export const dropPrivateProps2 = <Obj>(obj: Obj) => excludePrivateKeys2(obj); 16 export declare function excludePrivateKeys1<Obj>(obj: Obj): {[K in PublicKeys1<keyof Obj>]: Obj[K]}; 17 export declare function excludePrivateKeys2<Obj>(obj: Obj) [all...] |
H A D | normalizedIntersectionTooComplex.js | 4 interface Obj<T> { 14 "0": { common?: string; "0"?: number, ref?: Obj<Big["0"]> | Func<Big["0"]>; } 15 "1": { common?: string; "1"?: number, ref?: Obj<Big["1"]> | Func<Big["1"]>; } 16 "2": { common?: string; "2"?: number, ref?: Obj<Big["2"]> | Func<Big["2"]>; } 17 "3": { common?: string; "3"?: number, ref?: Obj<Big["3"]> | Func<Big["3"]>; } 18 "4": { common?: string; "4"?: number, ref?: Obj<Big["4"]> | Func<Big["4"]>; } 19 "5": { common?: string; "5"?: number, ref?: Obj<Big["5"]> | Func<Big["5"]>; } 20 "6": { common?: string; "6"?: number, ref?: Obj<Big["6"]> | Func<Big["6"]>; } 21 "7": { common?: string; "7"?: number, ref?: Obj<Big["7"]> | Func<Big["7"]>; } 22 "8": { common?: string; "8"?: number, ref?: Obj<Bi [all...] |
H A D | asyncFunctionReturnType.js | 13 interface Obj { 18 async function fIndexedTypeForStringProp(obj: Obj): Promise<Obj["stringProp"]> { 22 async function fIndexedTypeForPromiseOfStringProp(obj: Obj): Promise<Obj["stringProp"]> { 26 async function fIndexedTypeForExplicitPromiseOfStringProp(obj: Obj): Promise<Obj["stringProp"]> { 27 return Promise.resolve<Obj["stringProp"]>(obj.stringProp); 30 async function fIndexedTypeForAnyProp(obj: Obj): Promise<Obj["anyPro [all...] |
H A D | jsDeclarationsExportAssignedVisibility.js | 4 module.exports = class Obj { 10 const Obj = require("./obj"); 14 this.usage = new Obj(); 22 function Obj() {
25 return Obj;
28 var Obj = require("./obj");
variable 31 this.usage = new Obj();
39 export = Obj;
40 declare class Obj {
46 usage: Obj;
[all...] |
H A D | exportAssignmentImportMergeNoCrash.js | 9 import Obj from "./assignment"; 11 export const Obj = void Obj; 23 exports.Obj = void 0;
25 exports.Obj = void exports.Obj;
|
H A D | exportDefaultMarksIdentifierAsUsed.js | 4 const Obj = {}; 5 export default Obj;
7 import Obj from './a'; 9 Obj.fn = function() {};
14 const Obj = {};
15 exports.default = Obj;
|
/third_party/vixl/test/ |
H A D | test-invalset.cc | 40 class Obj { class 42 Obj() {} in Obj() function in vixl::Obj 43 Obj(KeyType key, ValType val) : key_(key), val_(val) {} in Obj() function in vixl::Obj 47 bool operator==(const Obj& other) const { in operator ==() 50 bool operator<(const Obj& other) const { in operator <() 53 bool operator<=(const Obj& other) const { in operator <=() 57 bool operator>(const Obj& other) const { in operator >() 67 typedef InvalSet<Obj, 76 inline KeyType InvalSet<Obj, 81 kReclaimFactor>::GetKey(const Obj [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | SafeStackLayout.cpp | 53 void StackLayout::layoutObject(StackObject &Obj) { in layoutObject() argument 58 unsigned Start = AdjustStackOffset(LastRegionEnd, Obj.Size, Obj.Alignment); in layoutObject() 59 unsigned End = Start + Obj.Size; in layoutObject() 60 Regions.emplace_back(Start, End, Obj.Range); in layoutObject() 61 ObjectOffsets[Obj.Handle] = End; in layoutObject() 65 LLVM_DEBUG(dbgs() << "Layout: size " << Obj.Size << ", align " in layoutObject() 66 << Obj.Alignment << ", range " << Obj.Range << "\n"); in layoutObject() 67 assert(Obj in layoutObject() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | IntrusiveRefCntPtr.h | 127 /// Obj->Retain()/Obj->Release(). Release() is required to destroy 134 T* Obj = nullptr; member in llvm::IntrusiveRefCntPtr 141 IntrusiveRefCntPtr(T* obj) : Obj(obj) { in IntrusiveRefCntPtr() 145 IntrusiveRefCntPtr(const IntrusiveRefCntPtr& S) : Obj(S.Obj) { in IntrusiveRefCntPtr() 149 IntrusiveRefCntPtr(IntrusiveRefCntPtr&& S) : Obj(S.Obj) { in IntrusiveRefCntPtr() 150 S.Obj = nullptr; in IntrusiveRefCntPtr() 154 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X>&& S) : Obj( [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | IntrusiveRefCntPtr.h | 136 T *Obj = nullptr; member in llvm::IntrusiveRefCntPtr 142 IntrusiveRefCntPtr(T *obj) : Obj(obj) { retain(); } in IntrusiveRefCntPtr() 143 IntrusiveRefCntPtr(const IntrusiveRefCntPtr &S) : Obj(S.Obj) { retain(); } in IntrusiveRefCntPtr() 144 IntrusiveRefCntPtr(IntrusiveRefCntPtr &&S) : Obj(S.Obj) { S.Obj = nullptr; } in IntrusiveRefCntPtr() 147 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X> &&S) : Obj(S.get()) { in IntrusiveRefCntPtr() 148 S.Obj = nullptr; in IntrusiveRefCntPtr() 152 IntrusiveRefCntPtr(const IntrusiveRefCntPtr<X> &S) : Obj( [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
H A D | RuntimeDyldMachOI386.h | 38 const MachOObjectFile &Obj = variable 41 Obj.getRelocation(RelI->getRawDataRefImpl()); 42 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); 44 if (Obj.isRelocationScattered(RelInfo)) { 47 return processSECTDIFFRelocation(SectionID, RelI, Obj, 50 return processScatteredVANILLA(SectionID, RelI, Obj, ObjSectionToID); 67 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI)); 70 if (auto ValueOrErr = getRelocationValueRef(Obj, RelI, RE, ObjSectionToID)) 79 // bool IsExtern = Obj.getPlainRelocationExternal(RelInfo); 128 Error finalizeSection(const ObjectFile &Obj, unsigne argument 149 const MachOObjectFile &Obj = processSECTDIFFRelocation() local 212 populateJumpTable(const MachOObjectFile &Obj, const SectionRef &JTSection, unsigned JTSectionID) populateJumpTable() argument [all...] |
H A D | RuntimeDyldMachOX86_64.h | 38 const MachOObjectFile &Obj = variable 41 Obj.getRelocation(RelI->getRawDataRefImpl()); 42 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); 45 return processSubtractRelocation(SectionID, RelI, Obj, ObjSectionToID); 47 assert(!Obj.isRelocationScattered(RelInfo) && 50 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI)); 53 if (auto ValueOrErr = getRelocationValueRef(Obj, RelI, RE, ObjSectionToID)) 58 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo); 123 Error finalizeSection(const ObjectFile &Obj, unsigned SectionID, in finalizeSection() argument 161 const MachOObjectFile &Obj in processSubtractRelocation() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
H A D | COFFEmitter.cpp | 37 COFFParser(COFFYAML::Object &Obj, yaml::ErrorHandler EH) in COFFParser() 38 : Obj(Obj), SectionTableStart(0), SectionTableSize(0), ErrHandler(EH) { in COFFParser() 45 return static_cast<int32_t>(Obj.Sections.size()) > in useBigObj() 49 bool isPE() const { return Obj.OptionalHeader.hasValue(); } in isPE() 51 return Obj.Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64 || in is64Bit() 52 Obj.Header.Machine == COFF::IMAGE_FILE_MACHINE_ARM64; in is64Bit() 56 return Obj.OptionalHeader->Header.FileAlignment; in getFileAlignment() 68 for (std::vector<COFFYAML::Section>::iterator i = Obj.Sections.begin(), in parseSections() 69 e = Obj in parseSections() 150 COFFYAML::Object &Obj; global() member [all...] |
H A D | MachOEmitter.cpp | 30 MachOWriter(MachOYAML::Object &Obj) : Obj(Obj), is64Bit(true), fileStart(0) { in MachOWriter() argument 31 is64Bit = Obj.Header.magic == MachO::MH_MAGIC_64 || in MachOWriter() 32 Obj.Header.magic == MachO::MH_CIGAM_64; in MachOWriter() 58 MachOYAML::Object &Obj; member in __anon24284::MachOWriter 73 Header.magic = Obj.Header.magic; in writeHeader() 74 Header.cputype = Obj.Header.cputype; in writeHeader() 75 Header.cpusubtype = Obj.Header.cpusubtype; in writeHeader() 76 Header.filetype = Obj in writeHeader() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | User.cpp | 127 User *Obj = reinterpret_cast<User*>(End); in allocateFixedOperandUser() 128 Obj->NumUserOperands = Us; in allocateFixedOperandUser() 129 Obj->HasHungOffUses = false; in allocateFixedOperandUser() 130 Obj->HasDescriptor = DescBytes != 0; in allocateFixedOperandUser() 138 return Obj; in allocateFixedOperandUser() 153 User *Obj = reinterpret_cast<User *>(HungOffOperandList + 1); 154 Obj->NumUserOperands = 0; 155 Obj->HasHungOffUses = true; 156 Obj->HasDescriptor = false; 158 return Obj; [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldMachO.cpp | 37 getObjectForDebug(const ObjectFile &Obj) const override { 59 const MachOObjectFile &Obj = in processScatteredVANILLA() local 62 Obj.getRelocation(RelI->getRawDataRefImpl()); in processScatteredVANILLA() 65 uint32_t RelocType = Obj.getAnyRelocationType(RE); in processScatteredVANILLA() 66 bool IsPCRel = Obj.getAnyRelocationPCRel(RE); in processScatteredVANILLA() 67 unsigned Size = Obj.getAnyRelocationLength(RE); in processScatteredVANILLA() 73 unsigned SymbolBaseAddr = Obj.getScatteredRelocationValue(RE); in processScatteredVANILLA() 74 section_iterator TargetSI = getSectionByAddress(Obj, SymbolBaseAddr); in processScatteredVANILLA() 75 assert(TargetSI != Obj.section_end() && "Can't find section for symbol"); in processScatteredVANILLA() 81 findOrEmitSection(Obj, TargetSectio in processScatteredVANILLA() 101 const MachOObjectFile &Obj = getRelocationValueRef() local 163 getSectionByAddress(const MachOObjectFile &Obj, uint64_t Addr) getSectionByAddress() argument 180 populateIndirectSymbolPointersSection( const MachOObjectFile &Obj, const SectionRef &PTSection, unsigned PTSectionID) populateIndirectSymbolPointersSection() argument 228 finalizeLoad(const ObjectFile &Obj, ObjSectionToIDMap &SectionMap) finalizeLoad() argument [all...] |
H A D | RuntimeDyld.cpp | 180 RuntimeDyldImpl::loadObjectImpl(const object::ObjectFile &Obj) { in loadObjectImpl() argument 184 Arch = (Triple::ArchType)Obj.getArch(); in loadObjectImpl() 185 IsTargetLittleEndian = Obj.isLittleEndian(); in loadObjectImpl() 186 setMipsABI(Obj); in loadObjectImpl() 193 if (auto Err = computeTotalAllocSize(Obj, in loadObjectImpl() 216 for (auto &Sym : Obj.symbols()) { in loadObjectImpl() 235 for (symbol_iterator I = Obj.symbol_begin(), E = Obj.symbol_end(); I != E; in loadObjectImpl() 310 section_iterator SI = Obj.section_end(); in loadObjectImpl() 316 if (SI == Obj in loadObjectImpl() 459 const ObjectFile *Obj = Section.getObject(); isRequiredForExecution() local 482 const ObjectFile *Obj = Section.getObject(); isReadOnlyData() local 500 const ObjectFile *Obj = Section.getObject(); isZeroInit() local 515 computeTotalAllocSize(const ObjectFile &Obj, uint64_t &CodeSize, uint32_t &CodeAlign, uint64_t &RODataSize, uint32_t &RODataAlign, uint64_t &RWDataSize, uint32_t &RWDataAlign) computeTotalAllocSize() argument 625 computeGOTSize(const ObjectFile &Obj) computeGOTSize() argument 643 computeSectionStubBufSize(const ObjectFile &Obj, const SectionRef &Section) computeSectionStubBufSize() argument 717 emitCommonSymbols(const ObjectFile &Obj, CommonSymbolList &SymbolsToAllocate, uint64_t CommonSize, uint32_t CommonAlign) emitCommonSymbols() argument 772 emitSection(const ObjectFile &Obj, const SectionRef &Section, bool IsCode) emitSection() argument 890 findOrEmitSection(const ObjectFile &Obj, const SectionRef &Section, bool IsCode, ObjSectionToIDMap &LocalSections) findOrEmitSection() argument 1308 loadObject(const ObjectFile &Obj) loadObject() argument 1406 jitLinkForORC(object::ObjectFile &Obj, std::unique_ptr<MemoryBuffer> UnderlyingBuffer, RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver, bool ProcessAllSections, unique_function<Error( std::unique_ptr<RuntimeDyld::LoadedObjectInfo> LoadedObj, std::map<StringRef, JITEvaluatedSymbol>)> OnLoaded, unique_function<void(Error)> OnEmitted) jitLinkForORC() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
H A D | TapiUniversal.h | 62 ObjectForArch Obj; member in llvm::object::TapiUniversal::object_iterator 65 object_iterator(const ObjectForArch &Obj) : Obj(Obj) {} in object_iterator() argument 66 const ObjectForArch *operator->() const { return &Obj; } in operator ->() 67 const ObjectForArch &operator*() const { return Obj; } in operator *() 70 return Obj == Other.Obj; in operator ==() 77 Obj = Obj in operator ++() [all...] |
H A D | MachOUniversal.h | 120 ObjectForArch Obj; member in llvm::object::MachOUniversalBinary::object_iterator 122 object_iterator(const ObjectForArch &Obj) : Obj(Obj) {} in object_iterator() argument 123 const ObjectForArch *operator->() const { return &Obj; } in operator ->() 124 const ObjectForArch &operator*() const { return Obj; } in operator *() 127 return Obj == Other.Obj; in operator ==() 134 Obj = Obj in operator ++() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/ |
H A D | Symbolize.cpp | 62 LLVMSymbolizer::symbolizeCode(const ObjectFile &Obj, in symbolizeCode() argument 64 StringRef ModuleName = Obj.getFileName(); in symbolizeCode() 70 DWARFContext::create(Obj, nullptr, DWARFContext::defaultErrorHandler); in symbolizeCode() 72 createModuleInfo(&Obj, std::move(Context), ModuleName); in symbolizeCode() 243 bool getGNUDebuglinkContents(const ObjectFile *Obj, std::string &DebugName, in getGNUDebuglinkContents() argument 245 if (!Obj) in getGNUDebuglinkContents() 247 for (const SectionRef &Section : Obj->sections()) { in getGNUDebuglinkContents() 261 DataExtractor DE(*ContentsOrErr, Obj->isLittleEndian(), 0); in getGNUDebuglinkContents() 279 const MachOObjectFile *Obj) { in darwinDsymMatchesBinary() 281 ArrayRef<uint8_t> bin_uuid = Obj in darwinDsymMatchesBinary() 278 darwinDsymMatchesBinary(const MachOObjectFile *DbgObj, const MachOObjectFile *Obj) darwinDsymMatchesBinary() argument 288 getBuildID(const ELFFile<ELFT> *Obj) getBuildID() argument 307 getBuildID(const ELFObjectFileBase *Obj) getBuildID() argument 391 lookUpDebuglinkObject(const std::string &Path, const ObjectFile *Obj, const std::string &ArchName) lookUpDebuglinkObject() argument 411 lookUpBuildIDObject(const std::string &Path, const ELFObjectFileBase *Obj, const std::string &ArchName) lookUpBuildIDObject() argument 444 ObjectFile *Obj = ObjOrErr.get(); getOrCreateObjectPair() local 503 createModuleInfo(const ObjectFile *Obj, std::unique_ptr<DIContext> Context, StringRef ModuleName) createModuleInfo() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | RTDyldObjectLinkingLayer.h | 42 std::function<void(VModuleKey, const object::ObjectFile &Obj, 120 object::ObjectFile &Obj, 197 std::function<void(VModuleKey, const object::ObjectFile &Obj, 202 std::function<void(VModuleKey, const object::ObjectFile &Obj, 206 using NotifyFreedFtor = std::function<void(VModuleKey, const object::ObjectFile &Obj)>; 215 OwnedObject Obj, MemoryManagerPtrT MemMgr, in ConcreteLinkedObject() 222 std::move(Obj), std::move(Resolver), in ConcreteLinkedObject() 224 buildInitialSymbolTable(PFC->Obj); in ConcreteLinkedObject() 245 PFC->RTDyld->loadObject(*PFC->Obj.getBinary()); 255 Parent.NotifyLoaded(K, *PFC->Obj 214 ConcreteLinkedObject(LegacyRTDyldObjectLinkingLayer &Parent, VModuleKey K, OwnedObject Obj, MemoryManagerPtrT MemMgr, std::shared_ptr<SymbolResolver> Resolver, bool ProcessAllSections) ConcreteLinkedObject() argument 292 buildInitialSymbolTable(const OwnedObject &Obj) buildInitialSymbolTable() argument 323 OwnedObject Obj; global() member 338 createLinkedObject(LegacyRTDyldObjectLinkingLayer &Parent, VModuleKey K, OwnedObject Obj, MemoryManagerPtrT MemMgr, std::shared_ptr<SymbolResolver> Resolver, bool ProcessAllSections) createLinkedObject() argument 393 auto Obj = addObject() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | XCOFFObjectFile.cpp | 623 XCOFFObjectFile::parseStringTable(const XCOFFObjectFile *Obj, uint64_t Offset) { in parseStringTable() argument 627 Obj->Data, reinterpret_cast<uintptr_t>(Obj->base() + Offset), 4)) in parseStringTable() 631 uint32_t Size = support::endian::read32be(Obj->base() + Offset); in parseStringTable() 639 getObject<char>(Obj->Data, Obj->base() + Offset, Size); in parseStringTable() 653 std::unique_ptr<XCOFFObjectFile> Obj; in create() local 654 Obj.reset(new XCOFFObjectFile(Type, MBR)); in create() 657 const auto *Base = Obj->base(); in create() 658 MemoryBufferRef Data = Obj in create() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
H A D | MsgPackReader.h | 19 /// msgpack::Object Obj; 21 /// while (MPReader.read(Obj)) { 22 /// switch (Obj.Kind) { 24 // // Use Obj.Int 110 /// The \p Obj is updated with the kind of the object read, and the 118 /// \param [out] Obj filled with next object on success. 121 /// input (and so \p Obj was not updated), otherwise an error. 122 Expected<bool> read(Object &Obj); 135 template <class T> Expected<bool> readRaw(Object &Obj); 136 template <class T> Expected<bool> readInt(Object &Obj); [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
H A D | DebugUtils.cpp | 31 DumpObjects::operator()(std::unique_ptr<MemoryBuffer> Obj) { in operator ()() argument 36 << DumpDir << (DumpDir.empty() ? "" : "/") << getBufferIdentifier(*Obj); in operator ()() 45 dbgs() << "Dumping object buffer [ " << (const void *)Obj->getBufferStart() in operator ()() 46 << " -- " << (const void *)(Obj->getBufferEnd() - 1) << " ] to " in operator ()() 54 DumpStream.write(Obj->getBufferStart(), Obj->getBufferSize()); in operator ()() 56 return std::move(Obj); in operator ()()
|