Searched refs:Object (Results 1 - 25 of 190) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOReader.h10 #include "Object.h"
12 #include "llvm/Object/MachO.h"
24 virtual std::unique_ptr<Object> create() const = 0;
30 void readHeader(Object &O) const;
31 void readLoadCommands(Object &O) const;
32 void readSymbolTable(Object &O) const;
33 void setSymbolInRelocationInfo(Object &O) const;
34 void readRebaseInfo(Object &O) const;
35 void readBindInfo(Object &O) const;
36 void readWeakBindInfo(Object
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutdelete.c166 ACPI_OPERAND_OBJECT *Object);
170 ACPI_OPERAND_OBJECT *Object,
178 * PARAMETERS: Object - Object to be deleted
189 ACPI_OPERAND_OBJECT *Object)
199 ACPI_FUNCTION_TRACE_PTR (UtDeleteInternalObj, Object);
202 if (!Object)
211 switch (Object->Common.Type)
216 Object, Object
188 AcpiUtDeleteInternalObj( ACPI_OPERAND_OBJECT *Object) argument
516 AcpiUtUpdateRefCount( ACPI_OPERAND_OBJECT *Object, UINT32 Action) argument
639 AcpiUtUpdateObjectReference( ACPI_OPERAND_OBJECT *Object, UINT16 Action) argument
846 AcpiUtAddReference( ACPI_OPERAND_OBJECT *Object) argument
884 AcpiUtRemoveReference( ACPI_OPERAND_OBJECT *Object) argument
[all...]
H A Dutobject.c208 ACPI_OPERAND_OBJECT *Object; local
218 Object = AcpiUtAllocateObjectDescDbg (
220 if (!Object)
237 AcpiUtDeleteObjectDesc (Object);
246 Object->Common.NextObject = SecondObject;
257 Object->Common.Type = (UINT8) Type;
261 Object->Common.ReferenceCount = 1;
265 return_PTR (Object);
475 * PARAMETERS: Object - Object t
484 AcpiUtValidInternalObject( void *Object) argument
542 ACPI_OPERAND_OBJECT *Object; local
581 AcpiUtDeleteObjectDesc( ACPI_OPERAND_OBJECT *Object) argument
[all...]
H A Dutcache.c308 * Object - The object to be released
320 void *Object)
328 if (!Cache || !Object)
337 ACPI_FREE (Object);
353 memset (Object, 0xCA, Cache->ObjectSize);
354 ACPI_SET_DESCRIPTOR_TYPE (Object, ACPI_DESC_TYPE_CACHED);
358 ACPI_SET_DESCRIPTOR_PTR (Object, Cache->ListHead);
359 Cache->ListHead = Object;
387 void *Object; local
412 Object
318 AcpiOsReleaseObject( ACPI_MEMORY_LIST *Cache, void *Object) argument
[all...]
H A Dutdecode.c162 * Properties of the ACPI Object Types, both internal and external.
183 ACPI_NS_NORMAL, /* 16 Debug Object */
379 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Null Object Descriptor\n"));
380 return_STR ("[NULL Object Descriptor]");
404 * PARAMETERS: Object - A namespace node
414 void *Object)
416 ACPI_NAMESPACE_NODE *Node = (ACPI_NAMESPACE_NODE *) Object;
421 if (!Object)
428 if ((Object == ACPI_ROOT_OBJECT) ||
429 (Object
413 AcpiUtGetNodeName( void *Object) argument
489 AcpiUtGetDescriptorName( void *Object) argument
533 AcpiUtGetReferenceName( ACPI_OPERAND_OBJECT *Object) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DReader.h14 #include "llvm/Object/COFF.h"
21 struct Object;
28 Error readExecutableHeaders(Object &Obj) const;
29 Error readSections(Object &Obj) const;
30 Error readSymbols(Object &Obj, bool IsBigObj) const;
31 Error setSymbolTargets(Object &Obj) const;
35 Expected<std::unique_ptr<Object>> create() const;
H A DWriter.h22 struct Object;
25 Object &Obj;
53 COFFWriter(Object &Obj, Buffer &Buf)
H A DObject.cpp1 //===- Object.cpp ---------------------------------------------------------===//
9 #include "Object.h"
19 void Object::addSymbols(ArrayRef<Symbol> NewSymbols) {
27 void Object::updateSymbols() {
33 const Symbol *Object::findSymbol(size_t UniqueId) const {
40 void Object::removeSymbols(function_ref<bool(const Symbol &)> ToRemove) {
48 Error Object::markSymbols() {
63 void Object::addSections(ArrayRef<Section> NewSections) {
71 void Object::updateSections() {
80 const Section *Object
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_type_hash.cpp28 __ubsan::DynamicTypeInfo __ubsan::getDynamicTypeInfoFromObject(void *Object) { argument
29 void *VtablePtr = *reinterpret_cast<void **>(Object);
H A Dubsan_type_hash.h43 DynamicTypeInfo getDynamicTypeInfoFromObject(void *Object);
48 /// \brief Check whether the dynamic type of \p Object has a \p Type subobject
51 bool checkDynamicType(void *Object, void *Type, HashValue Hash);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DObjectYAML.h26 std::unique_ptr<ELFYAML::Object> Elf;
27 std::unique_ptr<COFFYAML::Object> Coff;
28 std::unique_ptr<MachOYAML::Object> MachO;
30 std::unique_ptr<MinidumpYAML::Object> Minidump;
31 std::unique_ptr<WasmYAML::Object> Wasm;
H A Dyaml2obj.h28 struct Object;
32 struct Object;
36 struct Object;
40 struct Object;
49 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
50 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
52 bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out,
54 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
H A DXCOFFYAML.h41 struct Object { struct in namespace:llvm::XCOFFYAML
44 Object();
60 template <> struct MappingTraits<XCOFFYAML::Object> {
61 static void mapping(IO &IO, XCOFFYAML::Object &Obj);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackReader.h19 /// msgpack::Object Obj;
47 /// The types map onto corresponding union members of the \c Object struct.
75 struct Object { struct in namespace:llvm::msgpack
94 Object() : Kind(Type::Int), Int(0) {} function in struct:llvm::msgpack::Object
122 Expected<bool> read(Object &Obj);
135 template <class T> Expected<bool> readRaw(Object &Obj);
136 template <class T> Expected<bool> readInt(Object &Obj);
137 template <class T> Expected<bool> readUInt(Object &Obj);
138 template <class T> Expected<bool> readLength(Object &Obj);
139 template <class T> Expected<bool> readExt(Object
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DObjectYAML.cpp26 MappingTraits<ELFYAML::Object>::mapping(IO, *ObjectFile.Elf);
28 MappingTraits<COFFYAML::Object>::mapping(IO, *ObjectFile.Coff);
30 MappingTraits<MachOYAML::Object>::mapping(IO, *ObjectFile.MachO);
37 ObjectFile.Elf.reset(new ELFYAML::Object());
38 MappingTraits<ELFYAML::Object>::mapping(IO, *ObjectFile.Elf);
40 ObjectFile.Coff.reset(new COFFYAML::Object());
41 MappingTraits<COFFYAML::Object>::mapping(IO, *ObjectFile.Coff);
43 ObjectFile.MachO.reset(new MachOYAML::Object());
44 MappingTraits<MachOYAML::Object>::mapping(IO, *ObjectFile.MachO);
50 ObjectFile.Minidump.reset(new MinidumpYAML::Object());
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsobject.c167 * Object - Object to be attached
174 * name whose ACPI_HANDLE is passed. If Object is NULL
186 ACPI_OPERAND_OBJECT *Object,
208 if (!Object && (ACPI_TYPE_ANY != Type))
228 if (Node->Object == Object)
232 Object, Node));
239 if (!Object)
249 else if ((ACPI_GET_DESCRIPTOR_TYPE (Object)
184 AcpiNsAttachObject( ACPI_NAMESPACE_NODE *Node, ACPI_OPERAND_OBJECT *Object, ACPI_OBJECT_TYPE Type) argument
[all...]
/freebsd-11-stable/lib/libvgl/
H A Dtext.c74 VGLBitmapPutChar(VGLBitmap *Object, int x, int y, byte ch, argument
84 VGLSetXY(Object, (x+7-bit), (y+lin), fgcol);
87 VGLSetXY(Object, (x+lin), (y-7+bit), fgcol);
90 VGLSetXY(Object, (x-7+bit), (y-lin), fgcol);
93 VGLSetXY(Object, (x-lin), (y+7-bit), fgcol);
96 VGLSetXY(Object, (x+lin+7-bit), (y+lin+bit), fgcol);
102 VGLSetXY(Object, (x+7-bit), (y+lin), bgcol);
105 VGLSetXY(Object, (x+lin), (y-7+bit), bgcol);
108 VGLSetXY(Object, (x-7+bit), (y-lin), bgcol);
111 VGLSetXY(Object, (
122 VGLBitmapString(VGLBitmap *Object, int x, int y, char *str, byte fgcol, byte bgcol, int fill, int dir) argument
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsmthdat.c174 ACPI_OPERAND_OBJECT *Object,
274 if (WalkState->LocalVariables[Index].Object)
277 Index, WalkState->LocalVariables[Index].Object));
289 if (WalkState->Arguments[Index].Object)
292 Index, WalkState->Arguments[Index].Object));
444 * Object - Object to be inserted into the stack entry
458 ACPI_OPERAND_OBJECT *Object,
469 "NewObj %p Type %2.2X, Refs=%u [%s]\n", Object,
470 Type, Object
455 AcpiDsMethodDataSetValue( UINT8 Type, UINT32 Index, ACPI_OPERAND_OBJECT *Object, ACPI_WALK_STATE *WalkState) argument
522 ACPI_OPERAND_OBJECT *Object; local
634 ACPI_OPERAND_OBJECT *Object; local
858 ACPI_OPERAND_OBJECT *Object; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DSymbolicFile.cpp13 #include "llvm/Object/SymbolicFile.h"
16 #include "llvm/Object/COFFImportFile.h"
17 #include "llvm/Object/Error.h"
18 #include "llvm/Object/IRObjectFile.h"
19 #include "llvm/Object/ObjectFile.h"
38 SymbolicFile::createSymbolicFile(MemoryBufferRef Object, file_magic Type, argument
40 StringRef Data = Object.getBuffer();
47 return IRObjectFile::create(Object, *Context);
76 return ObjectFile::createObjectFile(Object, Type);
78 return std::unique_ptr<SymbolicFile>(new COFFImportFile(Object));
[all...]
H A DIRObjectFile.cpp13 #include "llvm/Object/IRObjectFile.h"
21 #include "llvm/Object/ObjectFile.h"
28 IRObjectFile::IRObjectFile(MemoryBufferRef Object, argument
30 : SymbolicFile(Binary::ID_IR, Object), Mods(std::move(Mods)) {
90 IRObjectFile::findBitcodeInMemBuffer(MemoryBufferRef Object) { argument
91 file_magic Type = identify_magic(Object.getBuffer());
94 return Object;
99 ObjectFile::createObjectFile(Object, Type);
110 IRObjectFile::create(MemoryBufferRef Object, LLVMContext &Context) { argument
111 Expected<MemoryBufferRef> BCOrErr = findBitcodeInMemBuffer(Object);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp112 static json::Object createArtifactLocation(const FileEntry &FE) {
113 return json::Object{{"uri", fileNameToURI(getFileName(FE))}};
116 static json::Object createArtifact(const FileEntry &FE) {
117 return json::Object{{"location", createArtifactLocation(FE)},
123 static json::Object createArtifactLocation(const FileEntry &FE,
130 if (const json::Object *Obj = File.getAsObject()) {
131 if (const json::Object *FileLoc = Obj->getObject("location")) {
145 return json::Object{{"uri", FileURI}, {"index", Index}};
174 static json::Object createTextRegion(const LangOptions &LO, SourceRange R,
176 json::Object Regio
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIAUtils.h16 std::string invokeBstrMethod(Obj &Object, argument
19 HRESULT Result = (Object.*Func)(&Str16);
/freebsd-11-stable/contrib/llvm-project/lldb/tools/argdumper/
H A Dargdumper.cpp18 llvm::outs() << json::Object({{"arguments", std::move(Arguments)}});
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageExporterJson.cpp24 // -- Expansion: dict => Object that descibes a single expansion
28 // -- Summary: dict => Object summarizing the coverage for this file
29 // -- LineCoverage: dict => Object summarizing line coverage
30 // -- FunctionCoverage: dict => Object summarizing function coverage
31 // -- RegionCoverage: dict => Object summarizing region coverage
35 // -- Summary: dict => Object summarizing the coverage for the entire binary
36 // -- LineCoverage: dict => Object summarizing line coverage
37 // -- FunctionCoverage: dict => Object summarizing function coverage
38 // -- InstantiationCoverage: dict => Object summarizing inst. coverage
39 // -- RegionCoverage: dict => Object summarizin
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbobject.c232 * PARAMETERS: ObjDesc - Object to be displayed
306 * PARAMETERS: Node - Object to be displayed
357 * PARAMETERS: ObjDesc - Object to be displayed
378 AcpiOsPrintf ("<Null Object>\n");
423 [ObjDesc->Reference.Value].Object;
435 [ObjDesc->Reference.Value].Object;
447 AcpiOsPrintf ("%p", ObjDesc->Reference.Object);
448 AcpiDbDecodeInternalObject (ObjDesc->Reference.Object);
474 if (!ObjDesc->Reference.Object)
483 switch (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc->Reference.Object))
[all...]

Completed in 317 milliseconds

12345678