Searched refs:Object (Results 126 - 150 of 190) sorted by relevance

12345678

/freebsd-11-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfeval.c4 * ACPI Object evaluation interfaces
175 * PARAMETERS: Handle - Object handle (optional)
176 * Pathname - Object pathname (optional)
308 * PARAMETERS: Handle - Object handle (optional)
309 * Pathname - Object pathname (optional)
689 Node = Info->ReturnObject->Reference.Object;
692 ObjDesc = Node->Object;
H A Dnsalloc.c245 ObjDesc = Node->Object;
H A Dnsxfname.c178 * PARAMETERS: Parent - Object to search under (search scope).
370 * PARAMETERS: Handle - Object Handle
442 ParamCount = Node->Object->Method.ParamCount;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
H A DRPCUtils.h1381 void addHandler(ClassT &Object, RetT (ClassT::*Method)(ArgTs...)) { argument
1383 detail::MemberFnWrapper<ClassT, RetT, ArgTs...>(Object, Method));
1393 void addAsyncHandler(ClassT &Object, RetT (ClassT::*Method)(ArgTs...)) { argument
1395 detail::MemberFnWrapper<ClassT, RetT, ArgTs...>(Object, Method));
1493 void addHandler(ClassT &Object, RetT (ClassT::*Method)(ArgTs...)) { argument
1495 detail::MemberFnWrapper<ClassT, RetT, ArgTs...>(Object, Method));
1505 void addAsyncHandler(ClassT &Object, RetT (ClassT::*Method)(ArgTs...)) { argument
1507 detail::MemberFnWrapper<ClassT, RetT, ArgTs...>(Object, Method));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLICM.cpp1853 bool isKnownNonEscaping(Value *Object, const TargetLibraryInfo *TLI) { argument
1854 if (isa<AllocaInst>(Object))
1863 // 1) Object can't be escaped by this function. This is what
1865 // 2) Object can't have been captured at definition site. For this, we
1869 return isAllocLikeFn(Object, TLI) &&
1870 !PointerMayBeCaptured(Object, true, true);
1955 Value *Object = GetUnderlyingObject(SomePtr, MDL); local
1956 if (!isKnownNonEscaping(Object, TLI))
1960 IsKnownThreadLocalObject = !isa<AllocaInst>(Object);
2094 Value *Object local
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutosi.c590 StringDesc = WalkState->Arguments[0].Object;
H A Dutcopy.c676 InternalObject->Reference.Object = ExternalObject->Reference.Handle;
913 * it does not have a Reference.Object, so does not need to
921 AcpiUtAddReference (SourceDesc->Reference.Object);
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacnamesp.h186 /* Object is not a package element */
536 * nsobject - Object management for namespace nodes
541 ACPI_OPERAND_OBJECT *Object,
H A Dacpiosxf.h381 * Memory/Object Cache
414 void *Object);
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Daslnamesp.c282 ObjDesc = ACPI_CAST_PTR (ACPI_OPERAND_OBJECT, Node->Object);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackDocument.cpp87 Object Obj;
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBStructuredData.cpp145 key_arr->ForEach([&keys] (StructuredData::Object *object) -> bool {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp27 Object::Object() { memset(&Header, 0, sizeof(COFF::header)); } function in class:llvm::COFFYAML::Object
590 void MappingTraits<COFFYAML::Object>::mapping(IO &IO, COFFYAML::Object &Obj) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DMainThreadCheckerRuntime.cpp253 trace->ForEach([&PCs](StructuredData::Object *PC) -> bool {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h486 struct Object { struct in namespace:llvm::ELFYAML
698 struct MappingTraits<ELFYAML::Object> {
699 static void mapping(IO &IO, ELFYAML::Object &Object);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DObject.h1 //===- Object.h -------------------------------------------------*- C++ -*-===//
18 #include "llvm/Object/COFF.h"
95 struct Object { struct in namespace:llvm::objcopy::coff
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h24 #include "llvm/Object/Binary.h"
25 #include "llvm/Object/ELF.h"
26 #include "llvm/Object/ELFTypes.h"
27 #include "llvm/Object/Error.h"
28 #include "llvm/Object/ObjectFile.h"
29 #include "llvm/Object/SymbolicFile.h"
247 ELFObjectFile(MemoryBufferRef Object, ELFFile<ELFT> EF,
397 static Expected<ELFObjectFile<ELFT>> create(MemoryBufferRef Object);
948 ELFObjectFile<ELFT>::create(MemoryBufferRef Object) { argument
949 auto EFOrErr = ELFFile<ELFT>::create(Object
987 ELFObjectFile(MemoryBufferRef Object, ELFFile<ELFT> EF, const Elf_Shdr *DotDynSymSec, const Elf_Shdr *DotSymtabSec, ArrayRef<Elf_Word> ShndxTable) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp431 Address Object = createReferenceTemporary(*this, M, E); local
432 if (auto *Var = dyn_cast<llvm::GlobalVariable>(Object.getPointer())) {
433 Object = Address(llvm::ConstantExpr::getBitCast(Var,
435 ->getPointerTo(Object.getAddressSpace())),
436 Object.getAlignment());
445 return MakeAddrLValue(Object, M->getType(), AlignmentSource::Decl);
449 LValue RefTempDst = MakeAddrLValue(Object, M->getType(),
458 EmitAggExpr(E, AggValueSlot::forAddr(Object,
468 pushTemporaryCleanup(*this, M, E, Object);
488 Address Object local
1791 llvm::Value *Object = EmitARCLoadWeakRetained(LV.getAddress(*this)); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp876 const Value *Object = GetUnderlyingObject(Loc.Ptr, DL); local
883 if (isa<AllocaInst>(Object))
891 if (auto *AI = dyn_cast<AllocaInst>(Object))
898 if (!isa<Constant>(Object) && Call != Object &&
899 isNonEscapingLocalObject(Object, &AAQI.IsCapturedCache)) {
901 // Optimistically assume that call doesn't touch Object and check this
919 // if it aliases with Object.
926 MemoryLocation(Object), AAQI);
929 // Operand doesn't alias 'Object', continu
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/common/
H A Ddmextern.c1188 (*Node)->Object = ObjDesc;
1197 (*Node)->Object = ObjDesc;
1581 * PARAMETERS: Op External Parse Object
H A Dadisasm.c636 AcpiGbl_RootNodeStruct.Object = NULL;
/freebsd-11-stable/sys/contrib/dev/acpica/components/executer/
H A Dexprep.c613 SecondDesc = Info->ConnectionNode->Object;
711 ACPI_ERROR ((AE_INFO, "Null Index Object during field prep"));
H A Dexoparg2.c579 ReturnDesc->Reference.Object = Operand[0];
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h26 #include "llvm/Object/IRSymtab.h"
128 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DUBSanRuntime.cpp318 trace->ForEach([&PCs](StructuredData::Object *PC) -> bool {

Completed in 503 milliseconds

12345678