/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineFrameInfo.h | 212 std::vector<StackObject> Objects; variable 352 bool hasStackObjects() const { return !Objects.empty(); } in hasStackObjects() 412 int getObjectIndexEnd() const { return (int)Objects.size()-NumFixedObjects; } in getObjectIndexEnd() 418 unsigned getNumObjects() const { return Objects.size(); } in getNumObjects() 423 Objects[ObjectIndex + NumFixedObjects].PreAllocated = true; in mapLocalFrameObject() 466 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && in isObjectPreAllocated() 468 return Objects[ObjectIdx+NumFixedObjects].PreAllocated; in isObjectPreAllocated() 473 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && in getObjectSize() 475 return Objects[ObjectIdx+NumFixedObjects].Size; in getObjectSize() 480 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && in setObjectSize() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineFrameInfo.cpp | 57 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() 210 if (Objects.empty()) return; in print() 217 for (unsigned i = 0, e = Objects.size(); i != e; ++i) { in print() 218 const StackObject &SO = Objects[i]; in print()
|
H A D | ScheduleDAGInstrs.cpp | 132 UnderlyingObjectsVector &Objects, in getUnderlyingObjectsForInstr() argument 156 Objects.emplace_back(PSV, MayAlias); in getUnderlyingObjectsForInstr() 164 Objects.emplace_back(V, true); in getUnderlyingObjectsForInstr() 173 Objects.clear(); in getUnderlyingObjectsForInstr()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/ |
H A D | LVReaderHandler.h | 42 ArgVector &Objects; variable 69 LVReaderHandler(ArgVector &Objects, ScopedPrinter &W, in LVReaderHandler() argument 71 : Objects(Objects), W(W), OS(W.getOStream()) { in LVReaderHandler()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
H A D | llvm-debuginfo-analyzer.cpp | 117 std::vector<std::string> Objects; in main() local 120 Objects.insert(Objects.end(), Objs.begin(), Objs.end()); in main() 125 LVReaderHandler ReaderHandler(Objects, W, ReaderOptions); in main()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ComparisonCategories.cpp | 76 Objects, [&](ValueInfo const &Info) { return Info.Kind == ValueKind; }); in lookupValueInfo() 77 if (It != Objects.end()) in lookupValueInfo() 86 Objects.emplace_back(ValueKind, cast<VarDecl>(Lookup.front())); in lookupValueInfo() 87 return &Objects.back(); in lookupValueInfo()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenHwModes.cpp | 44 std::vector<Record *> Objects = R->getValueAsListOfDefs("Objects"); in HwModeSelect() local 45 if (Modes.size() != Objects.size()) { in HwModeSelect() 55 Items.push_back(std::pair(ModeId, Objects[i])); in HwModeSelect()
|
/freebsd/sys/contrib/dev/acpica/components/events/ |
H A D | evregion.c | 1025 ACPI_OBJECT Objects[2]; in AcpiEvExecuteOrphanRegMethod() local 1071 Args.Pointer = Objects; in AcpiEvExecuteOrphanRegMethod() 1072 Objects[0].Type = ACPI_TYPE_INTEGER; in AcpiEvExecuteOrphanRegMethod() 1073 Objects[0].Integer.Value = SpaceId; in AcpiEvExecuteOrphanRegMethod() 1074 Objects[1].Type = ACPI_TYPE_INTEGER; in AcpiEvExecuteOrphanRegMethod() 1075 Objects[1].Integer.Value = ACPI_REG_CONNECT; in AcpiEvExecuteOrphanRegMethod()
|
/freebsd/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 | 1057 Info->Objects++; in AcpiDbIntegrityWalk() 1093 Info.Nodes, Info.Objects); in AcpiDbCheckIntegrity()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/ |
H A D | llvm-dwarfdump.cpp | 892 std::vector<std::string> Objects; in main() local 896 Objects.push_back(F); in main() 898 llvm::append_range(Objects, *DsymObjectsOrErr); in main() 906 for (StringRef Object : Objects) in main() 909 for (StringRef Object : Objects) in main() 912 for (StringRef Object : Objects) in main() 915 for (StringRef Object : Objects) in main() 918 for (StringRef Object : Objects) in main()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
H A D | Symbolize.cpp | 628 ObjectPair Objects = ObjectsOrErr.get(); in getOrCreateModuleInfo() local 633 if (auto CoffObject = dyn_cast<COFFObjectFile>(Objects.first)) { in getOrCreateModuleInfo() 639 llvm::any_of(Objects.first->sections(), [](SectionRef Section) -> bool { in getOrCreateModuleInfo() 651 if (auto Err = loadDataForEXE(ReaderType, Objects.first->getFileName(), in getOrCreateModuleInfo() 667 *Objects.second, DWARFContext::ProcessDebugRelocations::Process, in getOrCreateModuleInfo() 670 createModuleInfo(Objects.first, std::move(Context), ModuleName); in getOrCreateModuleInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | MemoryOpRemark.cpp | 357 SmallVector<Value *, 2> Objects; in visitPtr() local 358 getUnderlyingObjectsForCodeGen(Ptr, Objects); in visitPtr() 360 for (const Value *V : Objects) in visitPtr()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | GlobalsModRef.cpp | 914 SmallVector<const Value*, 4> Objects; in getModRefInfoForArgument() local 915 getUnderlyingObjects(A, Objects); in getModRefInfoForArgument() 918 if (!all_of(Objects, isIdentifiedObject) && in getModRefInfoForArgument() 920 !all_of(Objects, [&](const Value *V) { in getModRefInfoForArgument() 927 if (is_contained(Objects, GV)) in getModRefInfoForArgument()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsDelaySlotFiller.cpp | 199 SmallVectorImpl<ValueType> &Objects) const; 527 SmallVectorImpl<ValueType> &Objects) const { in getUnderlyingObjects() 536 Objects.push_back(PSV); in getUnderlyingObjects() 548 Objects.push_back(UValue); in getUnderlyingObjects()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OBJ_nid2obj.pod | 111 Objects in OpenSSL can have a short name, a long name and a numerical 129 Objects which are not in the table have the NID value NID_undef. 131 Objects do not need to be in the internal tables to be processed,
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ComparisonCategories.h | 107 Objects; variable
|
/freebsd/sys/contrib/dev/acpica/include/ |
H A D | acdebug.h | 480 ACPI_OBJECT *Objects);
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | provider-object.pod | 53 Objects I<by value> can be used by anything that handles DER encoded 56 Objects I<by reference> need a higher level of cooperation from the
|
H A D | openssl-threads.pod | 50 Objects are thread-safe
|
/freebsd/contrib/ntp/ntpsnmpd/ |
H A D | ntpsnmpd-opts.def | 132 .%T Definitions of Managed Objects for Network Time Protocol Version 4: (NTPv4)
|
/freebsd/contrib/llvm-project/llvm/lib/DWP/ |
H A D | DWP.cpp | 660 SmallVector<OwningBinary<object::ObjectFile>, 128> Objects; in write() local 661 Objects.reserve(Inputs.size()); in write() 675 Objects.push_back(std::move(*ErrOrObj)); in write()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | ValueTracking.h | 772 SmallVectorImpl<const Value *> &Objects, 778 SmallVectorImpl<Value *> &Objects);
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/ |
H A D | LVReaderHandler.cpp | 279 for (std::string &Object : Objects) { in createReaders()
|
/freebsd/contrib/libxo/doc/ |
H A D | formatting.rst | 128 string, it must be quoted, but numbers are not quoted. Objects are
|