| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | MachineFrameInfo.h | 213 std::vector<StackObject> Objects; variable 452 return Objects[ObjectIdx+NumFixedObjects].Size; in getObjectSize() 459 Objects[ObjectIdx+NumFixedObjects].Size = Size; in setObjectSize() 482 return Objects[ObjectIdx+NumFixedObjects].Alloca; in getObjectAllocation() 492 return Objects[ObjectIdx+NumFixedObjects].SPOffset; in getObjectOffset() 498 return Objects[ObjectIdx+NumFixedObjects].isZExt; in isObjectZExt() 504 Objects[ObjectIdx+NumFixedObjects].isZExt = IsZExt; in setObjectZExt() 510 return Objects[ObjectIdx+NumFixedObjects].isSExt; in isObjectSExt() 693 return Objects[ObjectIdx+NumFixedObjects].StackID; in getStackID() 700 Objects[ObjectIdx+NumFixedObjects].StackID = ID; in setStackID() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | MachineFrameInfo.cpp | 56 Objects.push_back(StackObject(Size, Alignment, 0, false, IsSpillSlot, Alloca, in CreateStackObject() 58 int Index = (int)Objects.size() - NumFixedObjects - 1; in CreateStackObject() 68 int Index = (int)Objects.size() - NumFixedObjects - 1; in CreateSpillStackObject() 77 Objects.push_back(StackObject(0, Alignment, 0, false, false, Alloca, true)); in CreateVariableSizedObject() 79 return (int)Objects.size()-NumFixedObjects-1; in CreateVariableSizedObject() 93 Objects.insert(Objects.begin(), in CreateFixedObject() 105 Objects.insert(Objects.begin(), in CreateFixedSpillStackObject() 209 if (Objects.empty()) return; in print() 216 for (unsigned i = 0, e = Objects.size(); i != e; ++i) { in print() 217 const StackObject &SO = Objects[i]; in print()
|
| H A D | ScheduleDAGInstrs.cpp | 131 UnderlyingObjectsVector &Objects, in getUnderlyingObjectsForInstr() argument 154 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias)); in getUnderlyingObjectsForInstr() 162 Objects.push_back(UnderlyingObjectsVector::value_type(V, true)); in getUnderlyingObjectsForInstr() 171 Objects.clear(); in getUnderlyingObjectsForInstr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | ComparisonCategories.cpp | 55 Objects, [&](ValueInfo const &Info) { return Info.Kind == ValueKind; }); in lookupValueInfo() 56 if (It != Objects.end()) in lookupValueInfo() 65 Objects.emplace_back(ValueKind, cast<VarDecl>(Lookup.front())); in lookupValueInfo() 66 return &Objects.back(); in lookupValueInfo()
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | CodeGenHwModes.cpp | 34 std::vector<Record*> Objects = R->getValueAsListOfDefs("Objects"); in HwModeSelect() local 35 if (Modes.size() != Objects.size()) { in HwModeSelect() 43 Items.push_back(std::make_pair(ModeId, Objects[i])); in HwModeSelect()
|
| /freebsd-12.1/sys/contrib/dev/acpica/components/events/ |
| H A D | evregion.c | 988 ACPI_OBJECT Objects[2]; in AcpiEvOrphanEcRegMethod() local 1034 Args.Pointer = Objects; in AcpiEvOrphanEcRegMethod() 1035 Objects[0].Type = ACPI_TYPE_INTEGER; in AcpiEvOrphanEcRegMethod() 1036 Objects[0].Integer.Value = ACPI_ADR_SPACE_EC; in AcpiEvOrphanEcRegMethod() 1037 Objects[1].Type = ACPI_TYPE_INTEGER; in AcpiEvOrphanEcRegMethod() 1038 Objects[1].Integer.Value = ACPI_REG_CONNECT; in AcpiEvOrphanEcRegMethod()
|
| /freebsd-12.1/sys/contrib/dev/acpica/components/debugger/ |
| H A D | dbexec.c | 212 ACPI_OBJECT *Objects) in AcpiDbDeleteObjects() argument 219 switch (Objects[i].Type) in AcpiDbDeleteObjects() 223 ACPI_FREE (Objects[i].Buffer.Pointer); in AcpiDbDeleteObjects() 230 AcpiDbDeleteObjects (Objects[i].Package.Count, in AcpiDbDeleteObjects() 231 Objects[i].Package.Elements); in AcpiDbDeleteObjects() 235 ACPI_FREE (Objects[i].Package.Elements); in AcpiDbDeleteObjects()
|
| H A D | dbnames.c | 928 Info->Objects++; in AcpiDbIntegrityWalk() 964 Info.Nodes, Info.Objects); in AcpiDbCheckIntegrity()
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/Symbolize/ |
| H A D | Symbolize.cpp | 397 ObjectPair Objects = ObjectsOrErr.get(); in getOrCreateModuleInfo() local 402 if (auto CoffObject = dyn_cast<COFFObjectFile>(Objects.first)) { in getOrCreateModuleInfo() 411 Objects.first->getFileName(), Session)) { in getOrCreateModuleInfo() 426 Context = DWARFContext::create(*Objects.second, nullptr, in getOrCreateModuleInfo() 430 SymbolizableObjectFile::create(Objects.first, std::move(Context)); in getOrCreateModuleInfo()
|
| H A D | SymbolizableObjectFile.cpp | 171 auto &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects; in addSymbol() 194 const auto &SymbolMap = Type == SymbolRef::ST_Function ? Functions : Objects; in getNameFromSymbolTable()
|
| H A D | SymbolizableObjectFile.h | 80 std::map<SymbolDesc, StringRef> Objects; variable
|
| /freebsd-12.1/contrib/llvm/tools/llvm-dwarfdump/ |
| H A D | llvm-dwarfdump.cpp | 627 std::vector<std::string> Objects; in main() local 630 Objects.insert(Objects.end(), Objs.begin(), Objs.end()); in main() 635 if (!all_of(Objects, [&](std::string Object) { in main() 640 for (auto Object : Objects) in main() 643 for (auto Object : Objects) in main()
|
| /freebsd-12.1/contrib/gcclibs/libiberty/ |
| H A D | obstacks.texi | 235 @node Freeing Obstack Objects 236 @section Freeing Objects in an Obstack 323 @node Growing Objects 324 @section Growing Objects 438 @section Extra Fast Growing Objects 708 @xref{Growing Objects}. 712 @xref{Growing Objects}. 717 Objects}. 721 @xref{Growing Objects}. 725 @xref{Growing Objects}. [all …]
|
| /freebsd-12.1/contrib/binutils/libiberty/ |
| H A D | obstacks.texi | 235 @node Freeing Obstack Objects 236 @section Freeing Objects in an Obstack 323 @node Growing Objects 324 @section Growing Objects 438 @section Extra Fast Growing Objects 708 @xref{Growing Objects}. 712 @xref{Growing Objects}. 717 Objects}. 721 @xref{Growing Objects}. 725 @xref{Growing Objects}. [all …]
|
| /freebsd-12.1/contrib/file/magic/Magdir/ |
| H A D | xenix | 63 >0x1e leshort &0x120 Huge Objects Enabled 90 >0x1e leshort &0x102 Huge Objects Enabled
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | GlobalsModRef.cpp | 898 SmallVector<Value*, 4> Objects; in getModRefInfoForArgument() local 899 GetUnderlyingObjects(A, Objects, DL); in getModRefInfoForArgument() 902 if (!all_of(Objects, isIdentifiedObject) && in getModRefInfoForArgument() 904 !all_of(Objects, [&](Value *V) { in getModRefInfoForArgument() 909 if (is_contained(Objects, GV)) in getModRefInfoForArgument()
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | OBJ_nid2obj.pod | 99 Objects in OpenSSL can have a short name, a long name and a numerical 117 Objects which are not in the table have the NID value NID_undef. 119 Objects do not need to be in the internal tables to be processed,
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/ |
| H A D | MipsDelaySlotFiller.cpp | 201 SmallVectorImpl<ValueType> &Objects) const; 528 SmallVectorImpl<ValueType> &Objects) const { in getUnderlyingObjects() 538 Objects.push_back(PSV); in getUnderlyingObjects() 552 Objects.push_back(*I); in getUnderlyingObjects()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Analysis/ |
| H A D | ValueTracking.h | 355 void GetUnderlyingObjects(Value *V, SmallVectorImpl<Value *> &Objects, 362 SmallVectorImpl<Value *> &Objects,
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | ComparisonCategories.h | 99 Objects; variable
|
| /freebsd-12.1/sys/contrib/dev/acpica/include/ |
| H A D | acdebug.h | 469 ACPI_OBJECT *Objects);
|
| /freebsd-12.1/contrib/llvm/tools/lld/COFF/ |
| H A D | Driver.h | 184 void runMSVCLinker(std::string Rsp, ArrayRef<StringRef> Objects);
|
| /freebsd-12.1/contrib/ntp/ntpsnmpd/ |
| H A D | ntpsnmpd-opts.def | 132 .%T Definitions of Managed Objects for Network Time Protocol Version 4: (NTPv4)
|
| /freebsd-12.1/contrib/gdb/gdb/doc/ |
| H A D | annotate.texinfo | 179 The @sc{gdb/mi} Variable Objects provide just that mechanism. 188 The @sc{gdb/mi} Variable Objects include a mechanism for efficiently 233 Variable Objects.} 509 provides Variable Objects.}
|
| /freebsd-12.1/contrib/libxo/doc/ |
| H A D | formatting.rst | 128 string, it must be quoted, but numbers are not quoted. Objects are
|