| /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| XCOFFYAML.cpp | 20 Object::Object() { memset(&Header, 0, sizeof(Header)); } 102 void MappingTraits<XCOFFYAML::Object>::mapping(IO &IO, XCOFFYAML::Object &Obj) {
|
| MinidumpEmitter.cpp | 25 /// allocator-managed buffer, which is available until the allocator object is 67 T *Object = new (Temporaries.Allocate<T>()) T(std::forward<Types>(Args)...); 68 return {allocateObject(*Object), Object}; 229 bool yaml2minidump(MinidumpYAML::Object &Obj, raw_ostream &Out,
|
| COFFYAML.cpp | 27 Object::Object() { memset(&Header, 0, sizeof(COFF::header)); } 590 void MappingTraits<COFFYAML::Object>::mapping(IO &IO, COFFYAML::Object &Obj) {
|
| /src/sys/external/bsd/acpica/dist/utilities/ |
| utcache.c | 57 * ObjectSize - Size of each cached object 59 * ReturnCache - Where the new cache object is returned 63 * DESCRIPTION: Create a cache object 85 /* Create the cache object */ 93 /* Populate the cache object and return it */ 109 * PARAMETERS: Cache - Handle to cache object 143 /* Delete and unlink one cached state object */ 161 * PARAMETERS: Cache - Handle to cache object 166 * cache object. 188 /* Now we can delete the cache object */ [all...] |
| utobject.c | 3 * Module Name: utobject - ACPI object create/delete/size/cache routines 79 * Type - ACPI Type of the new object 81 * RETURN: A new internal object, null on failure 83 * DESCRIPTION: Create and initialize a new internal object. 85 * NOTE: We always allocate the worst-case object descriptor because 88 * the most memory efficient, but the efficiency of the object 100 ACPI_OPERAND_OBJECT *Object; 108 /* Allocate the raw object descriptor */ 110 Object = AcpiUtAllocateObjectDescDbg ( 112 if (!Object) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| InterpStack.cpp | 30 assert(Size < ChunkSize - sizeof(StackChunk) && "Object too large"); 43 auto *Object = reinterpret_cast<void *>(Chunk->End); 46 return Object;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/ |
| Object.h | 1 //===- Object.h -------------------------------------------------*- C++ -*-===// 14 #include "llvm/Object/Wasm.h" 30 struct Object {
|
| /src/sys/external/bsd/acpica/dist/dispatcher/ |
| dsmthdat.c | 66 ACPI_OPERAND_OBJECT *Object, 82 * PARAMETERS: WalkState - Current walk state object 143 * PARAMETERS: WalkState - Current walk state object 166 if (WalkState->LocalVariables[Index].Object) 169 Index, WalkState->LocalVariables[Index].Object)); 171 /* Detach object (if present) and remove a reference */ 181 if (WalkState->Arguments[Index].Object) 184 Index, WalkState->Arguments[Index].Object)); 186 /* Detach object (if present) and remove a reference */ 202 * WalkState - Current walk state object [all...] |
| /src/sys/external/bsd/acpica/dist/tools/examples/ |
| examples.c | 221 /* Complete the ACPI namespace object initialization */ 322 /* Complete the ACPI namespace object initialization */ 425 * 2) How to setup the return value object 441 ACPI_OBJECT *Object; 455 /* Ask ACPICA to allocate space for the return object */ 466 /* Ensure that the return object is large enough */ 477 Object = ReturnValue.Pointer; 478 if (Object->Type != ACPI_TYPE_INTEGER) 480 AcpiOsPrintf ("Invalid return type from _OSI, %.2X\n", Object->Type); 484 (UINT32) Object->Integer.Value)) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/ |
| MsgPackReader.h | 19 /// msgpack::Object Obj; 48 /// The types map onto corresponding union members of the \c Object struct. 68 /// Raw bytes of the extension object. 72 /// MessagePack object, represented as a tagged union of C++ types. 77 struct Object { 96 Object() : Kind(Type::Int), Int(0) {} 110 /// Read one object from the input buffer, advancing past it. 112 /// The \p Obj is updated with the kind of the object read, and the 120 /// \param [out] Obj filled with next object on success. 122 /// \returns true when object successfully read, false when at end o [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/InterfaceStub/ |
| ELFStub.h | 29 Object = ELF::STT_OBJECT, 49 // Both textual and binary stubs will read into and write from this object.
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/ |
| XCOFFYAML.h | 41 struct Object { 44 Object(); 60 template <> struct MappingTraits<XCOFFYAML::Object> { 61 static void mapping(IO &IO, XCOFFYAML::Object &Obj);
|
| COFFYAML.h | 103 struct Object { 109 Object(); 249 struct MappingTraits<COFFYAML::Object> { 250 static void mapping(IO &IO, COFFYAML::Object &Obj);
|
| MinidumpYAML.h | 13 #include "llvm/Object/Minidump.h" 54 const object::MinidumpFile &File); 136 iterator_range<object::MinidumpFile::MemoryInfoIterator> Range) 197 /// The top level structure representing a minidump object, consisting of a 198 /// minidump header, and zero or more streams. To construct an Object from a 201 struct Object { 202 Object() = default; 203 Object(const Object &) = delete; 204 Object &operator=(const Object &) = delete [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/ |
| llvm-objdump.h | 15 #include "llvm/Object/Archive.h" 23 namespace object { namespace in namespace:llvm 29 } // namespace object 67 typedef std::function<bool(llvm::object::SectionRef const &)> FilterPredicate; 74 llvm::object::section_iterator const &I, 75 llvm::object::section_iterator const &E) 79 const llvm::object::SectionRef &operator*() const { return *Iterator; } 96 llvm::object::section_iterator Iterator; 97 llvm::object::section_iterator End; 100 /// Creates an iterator range of SectionFilterIterators for a given Object an [all...] |
| /src/sys/external/bsd/acpica/dist/common/ |
| adwalk.c | 118 * PARAMETERS: Origin - Starting object 153 * PARAMETERS: Origin - Starting object 637 * DESCRIPTION: Descending handler for namespace control method object load 791 ACPI_OPERAND_OBJECT *Object; 918 Object = AcpiNsGetAttachedObject (Node); 919 if (Object) 921 ObjectType2 = Object->Common.Type; 924 ParamCount = Object->Method.ParamCount;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/ |
| DWARFStreamer.h | 25 Object, 190 OutputFileType OutFileType = OutputFileType::Object;
|
| /src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| BinaryHolder.cpp | 15 #include "llvm/Object/MachO.h" 25 StringRef Object = Filename.substr(Archive.size() + 1).drop_back(); 26 return {Archive, Object}; 33 object::MachOUniversalBinary &Fat) { 66 object::MachOUniversalBinary::create(MemBuffer->getMemBufferRef()); 80 auto ErrOrArchive = object::Archive::create(MemRef); 106 << ": timestamp mismatch between object file (" 114 WithColor::note() << "loaded object.\n"; 116 // Load one or more object buffers, depending on whether we're dealing with a 121 object::MachOUniversalBinary::create(MemBuffer->getMemBufferRef()) [all...] |
| BinaryHolder.h | 19 #include "llvm/Object/Archive.h" 20 #include "llvm/Object/Error.h" 21 #include "llvm/Object/MachOUniversal.h" 22 #include "llvm/Object/ObjectFile.h" 52 std::unique_ptr<object::MachOUniversalBinary> FatBinary; 56 /// Cached entry holding one or more (in case of a fat binary) object files. 59 /// Load the given object binary in memory. 64 std::vector<const object::ObjectFile *> getObjects() const; 72 for (auto &Object : Objects) { 73 const auto *Derived = dyn_cast<ObjectFileType>(Object.get()) [all...] |
| DebugMap.cpp | 18 #include "llvm/Object/ObjectFile.h" 39 using namespace llvm::object; 250 auto Object = ObjectEntry->getObject(Ctxt.BinaryTriple); 251 if (!Object) { 252 auto Err = Object.takeError(); 256 for (const auto &Sym : Object->symbols()) {
|
| /src/external/gpl3/gcc/lib/libobjc/ |
| Makefile | 48 .for f in Protocol.m Object.m NXConstStr.m linking.m 59 OBJCOPTS.Object.m = -Wno-stack-protector 120 OBJCOPTS.Object.m+= -Wno-error=objc-root-class
|
| /src/external/gpl3/gcc.old/lib/libobjc/ |
| Makefile | 48 .for f in Protocol.m Object.m NXConstStr.m linking.m 59 OBJCOPTS.Object.m = -Wno-stack-protector 120 OBJCOPTS.Object.m+= -Wno-error=objc-root-class
|
| /src/sys/external/bsd/acpica/dist/debugger/ |
| dbnames.c | 109 * These object types map directly to the ACPI_TYPES 297 * DESCRIPTION: Dump entire namespace with full object pathnames and object 407 /* Get the full pathname to this object */ 413 AcpiOsPrintf ("Could Not get pathname for object %p\n", 606 AcpiOsPrintf ("[%4.4s]: Unknown object type %X\n", 648 if (Node->Object->Field.RegionObj->Region.SpaceId != Info->AddressSpaceId) 655 /* Get and display the full pathname to this object */ 661 AcpiOsPrintf ("Could Not get pathname for object %p\n", ObjHandle); 672 AcpiOsPrintf ("Could Not evaluate object %p\n", ObjHandle) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| JSONCompilationDatabase.cpp | 188 // This anchor is used to force the linker to link in the generated object file 349 auto *Object = dyn_cast<llvm::yaml::MappingNode>(&NextObject); 350 if (!Object) { 351 ErrorMessage = "Expected object."; 358 for (auto& NextKeyValue : *Object) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| AliasAnalysis.cpp | 726 const Value *Object = getUnderlyingObject(MemLoc.Ptr); 727 if (!isIdentifiedFunctionLocal(Object)) 731 if (!Call || Call == Object) 734 if (PointerMayBeCapturedBefore(Object, /* ReturnCaptures */ true, 736 /* include Object */ true)) 755 MemoryLocation::getBeforeOrAfter(Object), AAQI); 808 // Provide a definition for the static object used to identify passes. 862 /// aggregation object. Because this is somewhat shoe-horned into the legacy 869 // AAResults object because in the legacy pass manager, each instance 872 // previous object first, in this case replacing it with an empty one, befor [all...] |