Searched refs:object (Results 1 - 25 of 676) sorted by relevance

1234567891011>>

/freebsd-11.0-release/lib/libc/arm/aeabi/
H A Daeabi_atexit.c34 __aeabi_atexit(void *object, void (*func)(void*), void *dso) argument
36 return __cxa_atexit(func, object, dso);
/freebsd-11.0-release/sys/vm/
H A Dvm_object.c62 * Virtual memory object module.
106 static int vm_object_page_collect_flush(vm_object_t object, vm_page_t p,
111 static void vm_object_qcollapse(vm_object_t object);
112 static void vm_object_vndeallocate(vm_object_t object);
117 * page of memory exists within exactly one object.
119 * An object is only deallocated when all "references"
121 * region of an object should be writeable.
123 * Associated with each object is a list of all resident
124 * memory pages belonging to that object; this list is
125 * maintained by the "vm_page" module, and locked by the object'
167 vm_object_t object; local
183 object)); local
202 vm_object_t object; local
225 _vm_object_allocate(objtype_t type, vm_pindex_t size, vm_object_t object) argument
314 vm_object_clear_flag(vm_object_t object, u_short bits) argument
331 vm_object_set_memattr(vm_object_t object, vm_memattr_t memattr) argument
357 vm_object_pip_add(vm_object_t object, short i) argument
365 vm_object_pip_subtract(vm_object_t object, short i) argument
373 vm_object_pip_wakeup(vm_object_t object) argument
385 vm_object_pip_wakeupn(vm_object_t object, short i) argument
398 vm_object_pip_wait(vm_object_t object, char *waitid) argument
416 vm_object_t object; local
431 vm_object_reference(vm_object_t object) argument
448 vm_object_reference_locked(vm_object_t object) argument
464 vm_object_vndeallocate(vm_object_t object) argument
523 vm_object_deallocate(vm_object_t object) argument
683 vm_object_destroy(vm_object_t object) argument
710 vm_object_terminate(vm_object_t object) argument
854 vm_object_page_clean(vm_object_t object, vm_ooffset_t start, vm_ooffset_t end, int flags) argument
946 vm_object_page_collect_flush(vm_object_t object, vm_page_t p, int pagerflags, int flags, boolean_t *clearobjflags, boolean_t *eio) argument
998 vm_object_sync(vm_object_t object, vm_ooffset_t offset, vm_size_t size, boolean_t syncio, boolean_t invalidate) argument
1107 vm_object_madvise(vm_object_t object, vm_pindex_t pindex, vm_pindex_t end, int advise) argument
1219 vm_object_shadow( vm_object_t *object, vm_ooffset_t *offset, vm_size_t length) argument
1435 vm_object_collapse_scan_wait(vm_object_t object, vm_page_t p, vm_page_t next, int op) argument
1463 vm_object_scan_all_shadowed(vm_object_t object) argument
1515 vm_object_collapse_scan(vm_object_t object, int op) argument
1653 vm_object_qcollapse(vm_object_t object) argument
1674 vm_object_collapse(vm_object_t object) argument
1882 vm_object_page_remove(vm_object_t object, vm_pindex_t start, vm_pindex_t end, int options) argument
1971 vm_object_page_noreuse(vm_object_t object, vm_pindex_t start, vm_pindex_t end) argument
2018 vm_object_populate(vm_object_t object, vm_pindex_t start, vm_pindex_t end) argument
2169 vm_object_set_writeable_dirty(vm_object_t object) argument
2195 vm_object_unwire(vm_object_t object, vm_ooffset_t offset, vm_size_t length, uint8_t queue) argument
2259 vm_object_vnode(vm_object_t object) argument
2415 _vm_object_in_map(vm_map_t map, vm_object_t object, vm_map_entry_t entry) argument
2454 vm_object_in_map(vm_object_t object) argument
2475 vm_object_t object; local
2506 vm_object_t object = (vm_object_t)addr; local
2569 vm_object_t object; local
[all...]
H A Dvm_object.h64 * Virtual memory object module definitions.
80 * vm_object_t Virtual memory object.
82 * The root of cached pages pool is protected by both the per-object lock
84 * On insert in the cache radix trie, the per-object lock is expected
90 * pages with only the per-object lock held, thereby reducing contention
95 * (o) per-object lock
117 struct vm_object *backing_object; /* object that I'm a shadow of */
118 vm_ooffset_t backing_object_offset;/* Offset in backing object */
158 * if any, which uses the vm object
186 #define OBJ_NOSPLIT 0x0010 /* dont split this object */
256 vm_object_set_flag(vm_object_t object, u_short bits) argument
277 vm_object_color(vm_object_t object, u_short color) argument
294 vm_object_cache_is_empty(vm_object_t object) argument
[all...]
H A Ddefault_pager.c35 * vm_page->swapblk field. The object is only converted when the page is
76 * no_pager_alloc just returns an initialized object.
82 vm_object_t object; local
91 object = vm_object_allocate(OBJT_DEFAULT,
94 VM_OBJECT_WLOCK(object);
95 object->cred = cred;
96 object->charge = size;
97 VM_OBJECT_WUNLOCK(object);
99 return (object);
105 * in this object migh
125 default_pager_getpages(vm_object_t object, vm_page_t *m, int count, int *rbehind, int *rahead) argument
139 default_pager_putpages(vm_object_t object, vm_page_t *m, int count, int flags, int *rtvals) argument
[all...]
H A Dphys_pager.c66 vm_object_t object, object1; local
83 object = vm_pager_object_lookup(&phys_pager_object_list, handle);
84 if (object == NULL) {
86 * Allocate object and associate it with the pager.
91 object = vm_pager_object_lookup(&phys_pager_object_list,
93 if (object != NULL) {
96 * allocating object.
98 if (pindex > object->size)
99 object->size = pindex;
101 object
124 phys_pager_dealloc(vm_object_t object) argument
142 phys_pager_getpages(vm_object_t object, vm_page_t *m, int count, int *rbehind, int *rahead) argument
167 phys_pager_putpages(vm_object_t object, vm_page_t *m, int count, boolean_t sync, int *rtvals) argument
185 phys_pager_haspage(vm_object_t object, vm_pindex_t pindex, int *before, int *after) argument
[all...]
/freebsd-11.0-release/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_vm.c47 zfs_vmobject_assert_wlocked(vm_object_t object) argument
55 VM_OBJECT_ASSERT_WLOCKED(object);
59 zfs_vmobject_wlock(vm_object_t object) argument
62 VM_OBJECT_WLOCK(object);
66 zfs_vmobject_wunlock(vm_object_t object) argument
69 VM_OBJECT_WUNLOCK(object);
/freebsd-11.0-release/sys/dev/drm2/
H A Ddrm_global.c41 void *object; member in struct:drm_global_item
54 item->object = NULL;
64 MPASS(item->object == NULL);
74 void *object; local
78 item->object = malloc(ref->size, M_DRM_GLOBAL,
80 if (unlikely(item->object == NULL)) {
85 ref->object = item->object;
92 ref->object = item->object;
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/builtins/
H A Datomic_flag_clear.c23 void atomic_flag_clear(volatile atomic_flag *object) { argument
24 __c11_atomic_store(&(object)->_Value, 0, __ATOMIC_SEQ_CST);
H A Datomic_flag_clear_explicit.c23 void atomic_flag_clear_explicit(volatile atomic_flag *object, argument
25 __c11_atomic_store(&(object)->_Value, 0, order);
H A Datomic_flag_test_and_set.c23 _Bool atomic_flag_test_and_set(volatile atomic_flag *object) { argument
24 return __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_CST);
H A Datomic_flag_test_and_set_explicit.c23 _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *object, argument
25 return __c11_atomic_exchange(&(object)->_Value, 1, order);
/freebsd-11.0-release/sys/sys/
H A Dstdatomic.h234 #define atomic_compare_exchange_strong_explicit(object, expected, \
236 __c11_atomic_compare_exchange_strong(object, expected, desired, \
238 #define atomic_compare_exchange_weak_explicit(object, expected, \
240 __c11_atomic_compare_exchange_weak(object, expected, desired, \
242 #define atomic_exchange_explicit(object, desired, order) \
243 __c11_atomic_exchange(object, desired, order)
244 #define atomic_fetch_add_explicit(object, operand, order) \
245 __c11_atomic_fetch_add(object, operand, order)
246 #define atomic_fetch_and_explicit(object, operand, order) \
247 __c11_atomic_fetch_and(object, operan
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Headers/
H A Dstdatomic.h131 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST)
134 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST)
137 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST)
140 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expecte
[all...]
/freebsd-11.0-release/sys/dev/isci/scil/
H A Dscif_sas_io_request_states.c59 * @brief This file contains all of the SCIF_SAS_IO_REQUEST object
78 * @param[in] object This parameter specifies the base object for which
80 * SCIF_SAS_IO_REQUEST object in the method implementation.
86 SCI_BASE_OBJECT_T *object
89 SCIF_SAS_IO_REQUEST_T * fw_io = (SCIF_SAS_IO_REQUEST_T *)object;
107 * @param[in] object This parameter specifies the base object for which
109 * SCIF_SAS_IO_REQUEST object in the method implementation.
115 SCI_BASE_OBJECT_T *object
[all...]
H A Dscif_sas_task_request_states.c59 * @brief This file contains all of the SCIF_SAS_TASK_REQUEST object
73 * @param[in] object This parameter specifies the base object for which
75 * SCIF_SAS_TASK_REQUEST object in the method implementation.
81 SCI_BASE_OBJECT_T *object
84 SCIF_SAS_TASK_REQUEST_T * fw_task = (SCIF_SAS_TASK_REQUEST_T *)object;
102 * @param[in] object This parameter specifies the base object for which
104 * SCIF_SAS_TASK_REQUEST object in the method implementation.
110 SCI_BASE_OBJECT_T *object
[all...]
H A Dscif_sas_remote_device_states.c71 * to start/stop it's remote device object.
84 * @param[in] object This parameter specifies the base object for which
86 * SCIF_SAS_REMOTE_DEVICE object in the method implementation.
92 SCI_BASE_OBJECT_T *object
95 SCIF_SAS_REMOTE_DEVICE_T * fw_device = (SCIF_SAS_REMOTE_DEVICE_T *)object;
117 * @param[in] object This parameter specifies the base object for which
119 * SCIF_SAS_REMOTE_DEVICE object in the method implementation.
125 SCI_BASE_OBJECT_T *object
[all...]
H A Dsci_base_object.c60 * SCI_BASE_OBJECT object.
73 SCI_OBJECT_HANDLE_T object
76 return ((SCI_BASE_OBJECT_T *) object)->associated_object;
84 SCI_OBJECT_HANDLE_T object,
88 ((SCI_BASE_OBJECT_T *)object)->associated_object = associated_object;
109 SCI_OBJECT_HANDLE_T object
113 return sci_base_object_get_logger(object);
83 sci_object_set_association( SCI_OBJECT_HANDLE_T object, void * associated_object ) argument
H A Dsci_object.h61 * the SCI base object. The SCI base object is the class from which
73 * @brief This method returns the object to which a previous association was
74 * created. This association represents a link between an SCI object
75 * and another SCI object or potentially a user object. The
76 * association essentially acts as a cookie for the user of an object.
77 * The user of an SCI object is now able to retrieve a handle to their
78 * own object that is managing, or related in someway, to said SCI
79 * object
[all...]
H A Dscif_sas_remote_device_starting_substates.c79 * @param[in] object This parameter specifies the base object for which
81 * SCIF_SAS_REMOTE_DEVICE object in the method implementation.
87 SCI_BASE_OBJECT_T *object
90 SCIF_SAS_REMOTE_DEVICE_T * fw_device = (SCIF_SAS_REMOTE_DEVICE_T *)object;
107 * @param[in] object This parameter specifies the base object for which
109 * SCIF_SAS_REMOTE_DEVICE object in the method implementation.
115 SCI_BASE_OBJECT_T *object
118 SCIF_SAS_REMOTE_DEVICE_T * fw_device = (SCIF_SAS_REMOTE_DEVICE_T *)object;
[all...]
/freebsd-11.0-release/etc/
H A Drc.bsdextended63 #${CMD} add subject uid 80 object not uid 80 mode rxws;
64 #${CMD} add subject gid 80 object not gid 80 mode rxws;
68 #${CMD} add subject uid 54 object not uid 54 mode rxws;
69 #${CMD} add subject gid 26 object gid 54 mode rxws;
73 ${CMD} add subject uid 0 object not uid 0 mode arxws;
74 ${CMD} add subject gid 0 object not gid 0 mode arxws;
78 #${CMD} add subject uid 54 object not uid 54 mode rxws;
79 #${CMD} add subject gid 54 object not gid 54 mode rxws;
83 ${CMD} add subject uid 3 object not uid 3 mode rxws;
84 ${CMD} add subject gid 7 object no
[all...]
/freebsd-11.0-release/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h18 namespace object { namespace in namespace:llvm
61 bool RelocAddressLess(object::RelocationRef a, object::RelocationRef b);
63 void printCOFFUnwindInfo(const object::COFFObjectFile* o);
64 void printMachOUnwindInfo(const object::MachOObjectFile* o);
65 void printMachOExportsTrie(const object::MachOObjectFile* o);
66 void printMachORebaseTable(const object::MachOObjectFile* o);
67 void printMachOBindTable(const object::MachOObjectFile* o);
68 void printMachOLazyBindTable(const object::MachOObjectFile* o);
69 void printMachOWeakBindTable(const object
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileUtils.h10 // Contains utilities for compiling IR to object files.
34 object::OwningBinary<object::ObjectFile> operator()(Module &M) const {
45 ErrorOr<std::unique_ptr<object::ObjectFile>> Obj =
46 object::ObjectFile::createObjectFile(ObjBuffer->getMemBufferRef());
48 typedef object::OwningBinary<object::ObjectFile> OwningObj;
/freebsd-11.0-release/contrib/llvm/tools/lldb/tools/argdumper/
H A Dargdumper.cpp28 JSONObject::SP object(new JSONObject());
29 object->SetObject("arguments", arguments);
33 object->Write(ss);
/freebsd-11.0-release/sys/cddl/compat/opensolaris/sys/
H A Dvm.h42 void zfs_vmobject_assert_wlocked(vm_object_t object);
43 void zfs_vmobject_wlock(vm_object_t object);
44 void zfs_vmobject_wunlock(vm_object_t object);
/freebsd-11.0-release/lib/libvgl/
H A Dsimple.c92 VGLSetXY(VGLBitmap *object, int x, int y, u_long color) argument
98 if (x>=0 && x<object->VXsize && y>=0 && y<object->VYsize) {
100 switch (object->Type) {
103 object->Bitmap[y*object->VXsize+x]=((byte)color);
106 object->Bitmap[VGLSetSegment(y*object->VXsize+x)]=((byte)color);
111 color2mem(color, b, object->PixelBytes);
112 bcopy(b, &object
145 VGLGetXY(VGLBitmap *object, int x, int y) argument
210 plot(VGLBitmap * object, int x, int y, int flag, byte color) argument
221 VGLLine(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) argument
405 VGLBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) argument
414 VGLFilledBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) argument
422 set4pixels(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) argument
440 VGLEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color) argument
463 set2lines(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) argument
476 VGLFilledEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color) argument
499 VGLClear(VGLBitmap *object, u_long color) argument
[all...]

Completed in 181 milliseconds

1234567891011>>