Searched refs:object (Results 276 - 300 of 882) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dbpobj.h41 * This is the bonus buffer for the dead lists. The object's
75 int bpobj_open(bpobj_t *bpo, objset_t *mos, uint64_t object);
H A Dvdev_indirect_mapping.h60 * This is stored in the bonus buffer of the mapping object, see comment of
69 * For each entry in the mapping object, this object contains an
98 uint64_t object);
/freebsd-11-stable/sys/sys/
H A Dshm.h131 struct vm_object *object; member in struct:shmid_kernel
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRObjectFile.h1 //===- IRObjectFile.h - LLVM IR object file implementation ------*- C++ -*-===//
28 namespace object { namespace in namespace:llvm
62 /// Finds and returns bitcode embedded in the given object file, or an
67 /// be either a bitcode file or a native object file with embedded bitcode),
H A DTapiUniversal.h24 namespace object { namespace in namespace:llvm
106 } // end namespace object.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp29 using namespace llvm::object;
180 RuntimeDyldImpl::loadObjectImpl(const object::ObjectFile &Obj) {
202 // Used sections from the object file
244 object::SymbolRef::Type SymType;
291 SymType != object::SymbolRef::ST_File) {
305 } else if (SymType == object::SymbolRef::ST_Function ||
306 SymType == object::SymbolRef::ST_Data ||
307 SymType == object::SymbolRef::ST_Unknown ||
308 SymType == object::SymbolRef::ST_Other) {
460 if (isa<object
[all...]
H A DRuntimeDyldELF.h22 namespace object { namespace in namespace:llvm
173 loadObject(const object::ObjectFile &O) override;
181 bool isCompatibleFile(const object::ObjectFile &Obj) const override;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCompileUtils.cpp58 auto Obj = object::ObjectFile::createObjectFile(ObjBuffer->getMemBufferRef());
H A DLayer.cpp173 return "<null object>";
183 // FIXME: Support object file level discard. This could be done by building a
184 // filter to pass to the object layer along with the object itself.
189 auto Obj = object::ObjectFile::createObjectFile(ObjBuffer);
196 // Skip symbols not defined in this object file.
197 if (Sym.getFlags() & object::BasicSymbolRef::SF_Undefined)
201 if (!(Sym.getFlags() & object::BasicSymbolRef::SF_Global))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDataExtractor.cpp19 *SecNdx = object::SectionedAddress::UndefSection;
H A DDWARFDebugRangeList.cpp71 llvm::Optional<object::SectionedAddress> BaseAddr) const {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DSymbolicFile.cpp30 using namespace object;
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DInputFiles.h44 using llvm::object::Archive;
87 // Returns object file symbols. It is a runtime error to call this
159 template <typename ELFT> llvm::object::ELFFile<ELFT> getObj() const {
160 return check(llvm::object::ELFFile<ELFT>::create(mb.getBuffer()));
195 llvm::object::ELFFile<ELFT> getObj() const {
228 // used to create the relocatable object and required to support
235 // or empty string if there is no such symbol in object file
269 // If an object file contains more than 65280 sections, the file must
283 // single object file, so we cache debugging information in order to
284 // parse it only once for each object fil
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/
H A DAMDGPU.cpp17 using namespace llvm::object;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWindowsResourceDumper.cpp20 namespace object { namespace in namespace:llvm
84 } // namespace object
/freebsd-11-stable/sys/security/mac_partition/
H A Dmac_partition.c80 partition_check(struct label *subject, struct label *object) argument
93 * If the object label hasn't been allocated, then it's effectively
97 if (object == NULL)
100 if (SLOT(subject) == SLOT(object))
107 * Object-specific entry points are sorted alphabetically by object type name
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dtsb.c125 va, VM_PAGE_TO_PHYS(m), m->object,
126 m->object ? m->object->type : -1,
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddmu_traverse.c78 uint64_t objset, uint64_t object);
80 uint64_t objset, uint64_t object);
244 * which has always been a hole in an object.
248 * holes since this object was allocated. However, we (and
249 * our callers) can not necessarily tell when an object was
250 * allocated. Therefore, if it's possible that this object
251 * was freed and then its object number reused, we need to
254 * If it isn't possible that the object number was reused,
364 * dataset, which means we can't have reused any object ids.
433 uint64_t objset, uint64_t object)
432 prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *dnp, uint64_t objset, uint64_t object) argument
450 traverse_dnode(traverse_data_t *td, const dnode_phys_t *dnp, uint64_t objset, uint64_t object) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFI386.h36 Expected<object::relocation_iterator>
38 object::relocation_iterator RelI,
39 const object::ObjectFile &Obj,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DStructuredData.cpp21 static StructuredData::ObjectSP ParseJSONObject(json::Object *object);
73 static StructuredData::ObjectSP ParseJSONObject(json::Object *object) { argument
75 for (auto &KV : *object) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h82 object::SectionedAddress SA) const;
116 Optional<object::SectionedAddress> getAsSectionedAddress() const;
267 inline Optional<object::SectionedAddress>
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTimeProfiler.cpp119 J.object([&]{
149 J.object([&]{
166 J.object([&] {
206 "Profiler object can't be null");
/freebsd-11-stable/sys/kern/
H A Dkern_exec.c144 "Permit processes to map an object at virtual address 0.");
470 imgp->object = imgp->vp->v_object;
471 if (imgp->object != NULL)
472 vm_object_reference(imgp->object);
642 vm_object_deallocate(imgp->object);
643 imgp->object = NULL;
911 if (imgp->object != NULL)
912 vm_object_deallocate(imgp->object);
996 vm_object_t object; local
1001 object
[all...]
H A Dimgact_elf.c429 __elfN(map_partial)(vm_map_t map, vm_object_t object, vm_ooffset_t offset, argument
443 * Find the page from the underlying object.
445 if (object != NULL) {
446 sf = vm_imgact_map_page(object, offset);
461 __elfN(map_insert)(struct image_params *imgp, vm_map_t map, vm_object_t object, argument
471 rv = __elfN(map_partial)(map, object, offset, start,
479 rv = __elfN(map_partial)(map, object, offset +
496 if (object == NULL)
499 sf = vm_imgact_map_page(object, offset);
514 vm_object_reference(object);
536 vm_object_t object; local
1548 vm_object_t backing_object, object; local
[all...]
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A DMakefile.in970 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
977 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
984 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
991 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ca.c' object='libhx509_la-ca.lo' libtool=yes @AMDEPBACKSLASH@
998 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cert.c' object='libhx509_la-cert.lo' libtool=yes @AMDEPBACKSLASH@
1005 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cms.c' object='libhx509_la-cms.lo' libtool=yes @AMDEPBACKSLASH@
1012 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='collector.c' object='libhx509_la-collector.lo' libtool=yes @AMDEPBACKSLASH@
1019 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='crypto.c' object='libhx509_la-crypto.lo' libtool=yes @AMDEPBACKSLASH@
1026 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='doxygen.c' object='libhx509_la-doxygen.lo' libtool=yes @AMDEPBACKSLASH@
1033 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='error.c' object
[all...]

Completed in 298 milliseconds

<<11121314151617181920>>