Home
last modified time | relevance | path

Searched refs:Objects (Results 1 – 25 of 215) sorted by relevance

123456789

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h213 std::vector<StackObject> Objects; variable
454 return Objects[ObjectIdx+NumFixedObjects].Size; in getObjectSize()
461 Objects[ObjectIdx+NumFixedObjects].Size = Size; in setObjectSize()
487 return Objects[ObjectIdx+NumFixedObjects].Alloca; in getObjectAllocation()
497 return Objects[ObjectIdx+NumFixedObjects].SPOffset; in getObjectOffset()
503 return Objects[ObjectIdx+NumFixedObjects].isZExt; in isObjectZExt()
509 Objects[ObjectIdx+NumFixedObjects].isZExt = IsZExt; in setObjectZExt()
515 return Objects[ObjectIdx+NumFixedObjects].isSExt; in isObjectSExt()
698 return Objects[ObjectIdx+NumFixedObjects].StackID; in getStackID()
705 Objects[ObjectIdx+NumFixedObjects].StackID = ID; in setStackID()
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dtemplate.h41 Objects objects;
53 Objects *dedargs;
156 …ual MATCH matchArg(Loc instLoc, Scope *sc, Objects *tiargs, size_t i, TemplateParameters *paramete…
277 …MATCH matchArg(Loc loc, Scope *sc, Objects *tiargs, size_t i, TemplateParameters *parameters, Obje…
295 Objects *tiargs;
300 Objects tdtypes;
326 TemplateInstance(Loc loc, TemplateDeclaration *tempdecl, Objects *tiargs);
327 static Objects *arraySyntaxCopy(Objects *objs);
352 bool hasNestedArgs(Objects *tiargs, bool isstatic);
355 Identifier *genIdent(Objects *args);
[all …]
H A Dparse.h85 Objects *parseTemplateArguments();
86 Objects *parseTemplateArgumentList();
87 Objects *parseTemplateSingleArgument();
/netbsd/external/gpl3/gdb/dist/gold/
H A Dcref.cc73 typedef std::vector<Object*> Objects; typedef in gold::Cref_inputs
81 Objects* objects;
113 gather_cref(const Objects*, Cref_table*) const;
116 Objects objects_;
121 Objects* current_;
142 pai->objects = new Objects(); in add_archive_start()
174 const Objects* objects) const in print_objects_symbol_counts()
268 Objects* const onull = NULL; in gather_cref()
273 pc->second = new Objects(); in gather_cref()
306 const Objects* objects = pc->second; in print_cref()
[all …]
/netbsd/external/gpl3/binutils/dist/gold/
H A Dcref.cc73 typedef std::vector<Object*> Objects; typedef in gold::Cref_inputs
81 Objects* objects;
113 gather_cref(const Objects*, Cref_table*) const;
116 Objects objects_;
121 Objects* current_;
142 pai->objects = new Objects(); in add_archive_start()
174 const Objects* objects) const in print_objects_symbol_counts()
268 Objects* const onull = NULL; in gather_cref()
273 pc->second = new Objects(); in gather_cref()
306 const Objects* objects = pc->second; in print_cref()
[all …]
/netbsd/external/gpl3/binutils.old/dist/gold/
H A Dcref.cc73 typedef std::vector<Object*> Objects; typedef in gold::Cref_inputs
81 Objects* objects;
113 gather_cref(const Objects*, Cref_table*) const;
116 Objects objects_;
121 Objects* current_;
142 pai->objects = new Objects(); in add_archive_start()
174 const Objects* objects) const in print_objects_symbol_counts()
268 Objects* const onull = NULL; in gather_cref()
273 pc->second = new Objects(); in gather_cref()
306 const Objects* objects = pc->second; in print_cref()
[all …]
/netbsd/external/gpl3/gdb.old/dist/gold/
H A Dcref.cc73 typedef std::vector<Object*> Objects; typedef in gold::Cref_inputs
81 Objects* objects;
113 gather_cref(const Objects*, Cref_table*) const;
116 Objects objects_;
121 Objects* current_;
142 pai->objects = new Objects(); in add_archive_start()
174 const Objects* objects) const in print_objects_symbol_counts()
268 Objects* const onull = NULL; in gather_cref()
273 pc->second = new Objects(); in gather_cref()
306 const Objects* objects = pc->second; in print_cref()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineFrameInfo.cpp57 Objects.push_back(StackObject(Size, Alignment, 0, false, IsSpillSlot, Alloca, in CreateStackObject()
59 int Index = (int)Objects.size() - NumFixedObjects - 1; in CreateStackObject()
69 int Index = (int)Objects.size() - NumFixedObjects - 1; in CreateSpillStackObject()
78 Objects.push_back(StackObject(0, Alignment, 0, false, false, Alloca, true)); in CreateVariableSizedObject()
80 return (int)Objects.size()-NumFixedObjects-1; in CreateVariableSizedObject()
95 Objects.insert(Objects.begin(), in CreateFixedObject()
108 Objects.insert(Objects.begin(), in CreateFixedSpillStackObject()
213 if (Objects.empty()) return; in print()
220 for (unsigned i = 0, e = Objects.size(); i != e; ++i) { in print()
221 const StackObject &SO = Objects[i]; in print()
/netbsd/external/gpl3/gdb/dist/gdb/testsuite/gdb.ada/byte_packed_arr/
H A Dreprod.ads20 package Objects is packspec
26 end Objects;
29 Data : Objects.List.T (1 .. Len);
/netbsd/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.ada/byte_packed_arr/
H A Dreprod.ads20 package Objects is packspec
26 end Objects;
29 Data : Objects.List.T (1 .. Len);
/netbsd/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DBinaryHolder.cpp132 Objects.reserve(ObjectBuffers.size()); in load()
137 Objects.push_back(std::move(*ErrOrObjectFile)); in load()
146 Result.reserve(Objects.size()); in getObjects()
147 for (auto &Object : Objects) { in getObjects()
154 for (const auto &Obj : Objects) { in getObject()
219 OE.Objects.push_back(std::move(*ErrOrObjectFile)); in getObjectEntry()
227 if (OE.Objects.empty()) in getObjectEntry()
H A DMachODebugMapParser.cpp361 auto Objects = ObjectEntry->getObjectsAs<MachOObjectFile>(); in dumpStab() local
362 if (!Objects) { in dumpStab()
363 auto Err = Objects.takeError(); in dumpStab()
370 for (const auto *Object : *Objects) in dumpStab()
386 auto Objects = ObjectEntry->getObjectsAs<MachOObjectFile>(); in parse() local
387 if (!Objects) { in parse()
388 return errorToErrorCode(Objects.takeError()); in parse()
392 for (const auto *Object : *Objects) in parse()
H A DDebugMap.h80 ObjectContainer Objects; variable
102 const_iterator begin() const { return Objects.begin(); } in begin()
104 const_iterator end() const { return Objects.end(); } in end()
106 unsigned getNumberOfObjects() const { return Objects.size(); } in getNumberOfObjects()
H A DBinaryHolder.h71 Result.reserve(Objects.size()); in getObjectsAs()
72 for (auto &Object : Objects) { in getObjectsAs()
95 std::vector<std::unique_ptr<object::ObjectFile>> Objects;
H A DDebugMap.cpp88 Objects.emplace_back(new DebugMapObject(ObjectFilePath, Timestamp, Type)); in addDebugMapObject()
89 return *Objects.back(); in addDebugMapObject()
211 io.mapOptional("objects", DM.Objects); in mapping()
222 io.mapOptional("objects", DM->Objects); in mapping()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DComparisonCategories.cpp75 Objects, [&](ValueInfo const &Info) { return Info.Kind == ValueKind; }); in lookupValueInfo()
76 if (It != Objects.end()) in lookupValueInfo()
85 Objects.emplace_back(ValueKind, cast<VarDecl>(Lookup.front())); in lookupValueInfo()
86 return &Objects.back(); in lookupValueInfo()
/netbsd/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenHwModes.cpp33 std::vector<Record*> Objects = R->getValueAsListOfDefs("Objects"); in HwModeSelect() local
34 if (Modes.size() != Objects.size()) { in HwModeSelect()
42 Items.push_back(std::make_pair(ModeId, Objects[i])); in HwModeSelect()
/netbsd/sys/external/bsd/acpica/dist/events/
H A Devregion.c917 ACPI_OBJECT Objects[2]; in AcpiEvExecuteOrphanRegMethod() local
963 Args.Pointer = Objects; in AcpiEvExecuteOrphanRegMethod()
964 Objects[0].Type = ACPI_TYPE_INTEGER; in AcpiEvExecuteOrphanRegMethod()
965 Objects[0].Integer.Value = SpaceId; in AcpiEvExecuteOrphanRegMethod()
966 Objects[1].Type = ACPI_TYPE_INTEGER; in AcpiEvExecuteOrphanRegMethod()
967 Objects[1].Integer.Value = ACPI_REG_CONNECT; in AcpiEvExecuteOrphanRegMethod()
/netbsd/sys/external/bsd/acpica/dist/debugger/
H A Ddbexec.c104 ACPI_OBJECT *Objects) in AcpiDbDeleteObjects() argument
111 switch (Objects[i].Type) in AcpiDbDeleteObjects()
115 ACPI_FREE (Objects[i].Buffer.Pointer); in AcpiDbDeleteObjects()
122 AcpiDbDeleteObjects (Objects[i].Package.Count, in AcpiDbDeleteObjects()
123 Objects[i].Package.Elements); in AcpiDbDeleteObjects()
127 ACPI_FREE (Objects[i].Package.Elements); in AcpiDbDeleteObjects()
/netbsd/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dtemplate.h34 Objects objects;
46 Objects *dedargs;
245 Objects *tiargs;
250 Objects tdtypes;
H A Darrayop.d131 auto tiargs = new Objects(); in arrayOp()
187 private void buildArrayOp(Scope* sc, Expression e, Objects* tiargs, Expressions* args) in buildArrayOp()
193 Objects* tiargs; in buildArrayOp()
197 extern (D) this(Scope* sc, Objects* tiargs, Expressions* args) in buildArrayOp()
H A Dparse.h85 Objects *parseTemplateArguments();
86 Objects *parseTemplateArgumentList();
87 Objects *parseTemplateSingleArgument();
/netbsd/external/bsd/openldap/dist/doc/rfc/
H A Drfc2713.txt14 Schema for Representing Java(tm) Objects in an LDAP Directory
60 RFC 2713 Schema for Java Objects October 1999
74 2 Representation of Java Objects
116 RFC 2713 Schema for Java Objects October 1999
146 2.2 Serialized Objects
172 RFC 2713 Schema for Java Objects October 1999
206 2.3 Marshalled Objects
228 RFC 2713 Schema for Java Objects October 1999
284 RFC 2713 Schema for Java Objects October 1999
353 2.5 Remote Objects
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DAutoInitRemark.cpp187 SmallVector<const Value *, 2> Objects; in inspectDst() local
188 getUnderlyingObjects(Dst, Objects); in inspectDst()
190 for (const Value *V : Objects) in inspectDst()
/netbsd/external/bsd/openldap/dist/doc/drafts/
H A Ddraft-stroeder-namedobject-xx.txt11 Structural Object Classes for Named Objects
57 Internet-Draft LDAP Named Objects January 2013
113 Internet-Draft LDAP Named Objects January 2013
169 Internet-Draft LDAP Named Objects January 2013
225 Internet-Draft LDAP Named Objects January 2013

123456789