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

1234567891011>>

/freebsd-9.3-release/include/
H A Dstdatomic.h185 #define atomic_compare_exchange_strong_explicit(object, expected, \
187 __c11_atomic_compare_exchange_strong(object, expected, desired, \
189 #define atomic_compare_exchange_weak_explicit(object, expected, \
191 __c11_atomic_compare_exchange_weak(object, expected, desired, \
193 #define atomic_exchange_explicit(object, desired, order) \
194 __c11_atomic_exchange(object, desired, order)
195 #define atomic_fetch_add_explicit(object, operand, order) \
196 __c11_atomic_fetch_add(object, operand, order)
197 #define atomic_fetch_and_explicit(object, operand, order) \
198 __c11_atomic_fetch_and(object, operan
[all...]
/freebsd-9.3-release/contrib/gcc/config/rs6000/
H A Deabi-ci.asm47 .type __GOT_START__,@object
52 .type __GOT1_START__,@object
57 .type __GOT2_START__,@object
62 .type __FIXUP_START__,@object
67 .type __CTOR_LIST__,@object
72 .type __DTOR_LIST__,@object
77 .type __SDATA_START__,@object
79 .type _SDA_BASE_,@object
85 .type __SBSS_START__,@object
90 .type _SDA2_BASE_,@object
[all...]
H A Deabi-cn.asm45 .type __GOT_END__,@object
50 .type __GOT1_END__,@object
55 .type __GOT2_END__,@object
60 .type __FIXUP_END__,@object
65 .type __CTOR_END__,@object
70 .type __DTOR_END__,@object
75 .type __SDATA_END__,@object
80 .type __SBSS_END__,@object
85 .type __SDATA2_END__,@object
90 .type __SBSS2_END__,@object
[all...]
/freebsd-9.3-release/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h20 namespace object { namespace in namespace:llvm
32 bool RelocAddressLess(object::RelocationRef a, object::RelocationRef b);
35 void printCOFFUnwindInfo(const object::COFFObjectFile* o);
36 void printELFFileHeader(const object::ObjectFile *o);
37 void printCOFFFileHeader(const object::ObjectFile *o);
/freebsd-9.3-release/sys/vm/
H A Dvm_object.c62 * Virtual memory object module.
103 static int vm_object_page_collect_flush(vm_object_t object, vm_page_t p,
108 static void vm_object_qcollapse(vm_object_t object);
109 static void vm_object_vndeallocate(vm_object_t object);
114 * page of memory exists within exactly one object.
116 * An object is only deallocated when all "references"
118 * region of an object should be writeable.
120 * Associated with each object is a list of all resident
121 * memory pages belonging to that object; this list is
122 * maintained by the "vm_page" module, and locked by the object'
164 vm_object_t object; local
193 vm_object_t object; local
207 _vm_object_allocate(objtype_t type, vm_pindex_t size, vm_object_t object) argument
280 vm_object_clear_flag(vm_object_t object, u_short bits) argument
297 vm_object_set_memattr(vm_object_t object, vm_memattr_t memattr) argument
319 vm_object_pip_add(vm_object_t object, short i) argument
327 vm_object_pip_subtract(vm_object_t object, short i) argument
335 vm_object_pip_wakeup(vm_object_t object) argument
347 vm_object_pip_wakeupn(vm_object_t object, short i) argument
360 vm_object_pip_wait(vm_object_t object, char *waitid) argument
378 vm_object_t object; local
393 vm_object_reference(vm_object_t object) argument
410 vm_object_reference_locked(vm_object_t object) argument
426 vm_object_vndeallocate(vm_object_t object) argument
478 vm_object_deallocate(vm_object_t object) argument
640 vm_object_destroy(vm_object_t object) argument
678 vm_object_terminate(vm_object_t object) argument
815 vm_object_page_clean(vm_object_t object, vm_ooffset_t start, vm_ooffset_t end, int flags) argument
903 vm_object_page_collect_flush(vm_object_t object, vm_page_t p, int pagerflags, int flags, boolean_t *clearobjflags, boolean_t *eio) argument
956 vm_object_sync(vm_object_t object, vm_ooffset_t offset, vm_size_t size, boolean_t syncio, boolean_t invalidate) argument
1068 vm_object_madvise(vm_object_t object, vm_pindex_t pindex, vm_pindex_t end, int advise) argument
1202 vm_object_shadow( vm_object_t *object, vm_ooffset_t *offset, vm_size_t length) argument
1389 vm_object_backing_scan(vm_object_t object, int op) argument
1613 vm_object_qcollapse(vm_object_t object) argument
1634 vm_object_collapse(vm_object_t object) argument
1835 vm_object_page_remove(vm_object_t object, vm_pindex_t start, vm_pindex_t end, int options) argument
1932 vm_object_page_cache(vm_object_t object, vm_pindex_t start, vm_pindex_t end) argument
1980 vm_object_populate(vm_object_t object, vm_pindex_t start, vm_pindex_t end) argument
2134 vm_object_set_writeable_dirty(vm_object_t object) argument
2155 _vm_object_in_map(vm_map_t map, vm_object_t object, vm_map_entry_t entry) argument
2194 vm_object_in_map(vm_object_t object) argument
2221 vm_object_t object; local
2252 vm_object_t object = (vm_object_t)addr; local
2315 vm_object_t object; local
[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_LOCK(object);
95 object->cred = cred;
96 object->charge = size;
97 VM_OBJECT_UNLOCK(object);
99 return (object);
105 * in this object migh
[all...]
H A Dvm_object.h64 * Virtual memory object module definitions.
77 * vm_object_t Virtual memory object.
101 struct vm_object *backing_object; /* object that I'm a shadow of */
102 vm_ooffset_t backing_object_offset;/* Offset in backing object */
158 #define OBJ_NOSPLIT 0x0010 /* dont split this object */
160 #define OBJ_MIGHTBEDIRTY 0x0100 /* object might be dirty, only for vnode */
184 extern struct mtx vm_object_list_mtx; /* lock for object list and count */
192 #define VM_OBJECT_LOCK(object) mtx_lock(&(object)->mtx)
193 #define VM_OBJECT_LOCK_ASSERT(object, typ
207 vm_object_set_flag(vm_object_t object, u_short bits) argument
[all...]
H A Dvnode_pager.c81 static int vnode_pager_input_smlfs(vm_object_t object, vm_page_t m);
82 static int vnode_pager_input_old(vm_object_t object, vm_page_t m);
100 /* Create the VM system backing object for this vnode */
104 vm_object_t object; local
111 while ((object = vp->v_object) != NULL) {
112 VM_OBJECT_LOCK(object);
113 if (!(object->flags & OBJ_DEAD)) {
114 VM_OBJECT_UNLOCK(object);
118 vm_object_set_flag(object, OBJ_DISCONNECTWNT);
119 msleep(object, VM_OBJECT_MT
192 vm_object_t object; local
375 vm_object_t object; local
700 vm_object_t object; local
1087 vm_object_t object; local
1232 vnode_pager_update_writecount(vm_object_t object, vm_offset_t start, vm_offset_t end) argument
1257 vnode_pager_release_writecount(vm_object_t object, vm_offset_t start, vm_offset_t end) argument
[all...]
H A Dphys_pager.c64 vm_object_t object, object1; local
81 object = vm_pager_object_lookup(&phys_pager_object_list, handle);
82 if (object == NULL) {
84 * Allocate object and associate it with the pager.
89 object = vm_pager_object_lookup(&phys_pager_object_list,
91 if (object != NULL) {
94 * allocating object.
96 if (pindex > object->size)
97 object->size = pindex;
99 object
122 phys_pager_dealloc(vm_object_t object) argument
138 phys_pager_getpages(vm_object_t object, vm_page_t *m, int count, int reqpage) argument
163 phys_pager_putpages(vm_object_t object, vm_page_t *m, int count, boolean_t sync, int *rtvals) argument
181 phys_pager_haspage(vm_object_t object, vm_pindex_t pindex, int *before, int *after) argument
[all...]
H A Ddevice_pager.c65 static void dev_pager_free_page(vm_object_t object, vm_page_t m);
92 static int old_dev_pager_fault(vm_object_t object, vm_ooffset_t offset,
111 vm_object_t object; local
114 object = vm_pager_object_lookup(&dev_pager_object_list, handle);
116 return (object);
123 vm_object_t object, object1; local
147 object = vm_pager_object_lookup(&dev_pager_object_list, handle);
148 if (object == NULL) {
150 * Allocate object and associate it with the pager. Initialize
151 * the object'
204 cdev_pager_free_page(vm_object_t object, vm_page_t m) argument
219 dev_pager_free_page(vm_object_t object, vm_page_t m) argument
255 dev_pager_getpages(vm_object_t object, vm_page_t *ma, int count, int reqpage) argument
289 old_dev_pager_fault(vm_object_t object, vm_ooffset_t offset, int prot, vm_page_t *mres) argument
[all...]
H A Dsg_pager.c69 vm_object_t object; local
102 * Allocate a new object and associate it with the
106 * simpler than ensuring a unique object per scatter/gather
109 object = vm_object_allocate(OBJT_SG, npages);
110 object->handle = sglist_hold(sg);
111 TAILQ_INIT(&object->un_pager.sgp.sgp_pglist);
112 return (object);
116 sg_pager_dealloc(vm_object_t object) argument
124 while ((m = TAILQ_FIRST(&object->un_pager.sgp.sgp_pglist)) != 0) {
125 TAILQ_REMOVE(&object
134 sg_pager_getpages(vm_object_t object, vm_page_t *m, int count, int reqpage) argument
199 sg_pager_putpages(vm_object_t object, vm_page_t *m, int count, boolean_t sync, int *rtvals) argument
207 sg_pager_haspage(vm_object_t object, vm_pindex_t pindex, int *before, int *after) argument
[all...]
/freebsd-9.3-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,
81 ref->object = item->object;
88 ref->object = item->object;
89 object
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/ExecutionEngine/
H A DObjectImage.h1 //===---- ObjectImage.h - Format independent executuable object image -----===//
37 virtual object::symbol_iterator begin_symbols() const = 0;
38 virtual object::symbol_iterator end_symbols() const = 0;
40 virtual object::section_iterator begin_sections() const = 0;
41 virtual object::section_iterator end_sections() const = 0;
47 virtual void updateSectionAddress(const object::SectionRef &Sec,
49 virtual void updateSymbolAddress(const object::SymbolRef &Sym,
54 virtual object::ObjectFile* getObjectFile() const = 0;
/freebsd-9.3-release/contrib/ncurses/menu/
H A Dmf_common.h86 /* Call object hook */
87 #define Call_Hook( object, handler ) \
88 if ( (object) != 0 && ((object)->handler) != (void *) 0 )\
90 (object)->status |= _IN_DRIVER;\
91 (object)->handler(object);\
92 (object)->status &= ~_IN_DRIVER;\
/freebsd-9.3-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...]
H A Dscif_sas_controller_states.c77 * @param[in] object This parameter specifies the base object for which
79 * SCIF_SAS_CONTROLLER object in the method implementation.
85 SCI_BASE_OBJECT_T * object
88 SCIF_SAS_CONTROLLER_T * fw_controller = (SCIF_SAS_CONTROLLER_T *)object;
101 * @param[in] object This parameter specifies the base object for which
103 * SCIF_SAS_CONTROLLER object in the method implementation.
109 SCI_BASE_OBJECT_T * object
112 SCIF_SAS_CONTROLLER_T * fw_controller = (SCIF_SAS_CONTROLLER_T *)object;
[all...]
/freebsd-9.3-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-9.3-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DObjectImageCommon.h1 //===-- ObjectImageCommon.h - Format independent executuable object image -===//
29 object::ObjectFile *ObjFile;
33 ObjectImageCommon(ObjectBuffer *Input, object::ObjectFile *Obj)
43 ObjFile = object::ObjectFile::createObjectFile(Buffer->getMemBuffer());
47 virtual object::symbol_iterator begin_symbols() const
49 virtual object::symbol_iterator end_symbols() const
52 virtual object::section_iterator begin_sections() const
54 virtual object::section_iterator end_sections() const
62 virtual object::ObjectFile* getObjectFile() const { return ObjFile; }
66 virtual void updateSectionAddress(const object
[all...]
/freebsd-9.3-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...]
/freebsd-9.3-release/contrib/llvm/lib/DebugInfo/
H A DDIContext.cpp16 DIContext *DIContext::getDWARFContext(object::ObjectFile *Obj) {

Completed in 264 milliseconds

1234567891011>>