Home
last modified time | relevance | path

Searched refs:ObjectInfo (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbnames.c881 ACPI_OBJECT_INFO *ObjectInfo; in AcpiDbDisplayObjects() local
890 ObjectInfo = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_OBJECT_INFO)); in AcpiDbDisplayObjects()
892 if (!ObjectInfo) in AcpiDbDisplayObjects()
899 (void *) ObjectInfo, NULL); in AcpiDbDisplayObjects()
905 AcpiOsPrintf ("%8u %s\n", ObjectInfo->Types[i], in AcpiDbDisplayObjects()
908 TotalObjects += ObjectInfo->Types[i]; in AcpiDbDisplayObjects()
914 ACPI_FREE (ObjectInfo); in AcpiDbDisplayObjects()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRPrinter.cpp907 auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex); in printStackObjectReference() local
908 assert(ObjectInfo != StackObjectOperandMapping.end() && in printStackObjectReference()
910 const FrameIndexOperand &Operand = ObjectInfo->second; in printStackObjectReference()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp2131 auto ObjectInfo = PFS.StackObjectSlots.find(ID); in parseStackFrameIndex() local
2132 if (ObjectInfo == PFS.StackObjectSlots.end()) in parseStackFrameIndex()
2137 MF.getFrameInfo().getObjectAllocation(ObjectInfo->second)) in parseStackFrameIndex()
2143 FI = ObjectInfo->second; in parseStackFrameIndex()
2160 auto ObjectInfo = PFS.FixedStackObjectSlots.find(ID); in parseFixedStackFrameIndex() local
2161 if (ObjectInfo == PFS.FixedStackObjectSlots.end()) in parseFixedStackFrameIndex()
2165 FI = ObjectInfo->second; in parseFixedStackFrameIndex()