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

1234567891011>>

/netbsd-current/sys/arch/hppa/spmath/
H A Dfloat.h58 #define Sall(object) (object)
59 #define Ssign(object) Bitfield_extract( 0, 1,object)
60 #define Ssignedsign(object) Bitfield_signed_extract( 0, 1,object)
61 #define Sexponent(object) Bitfield_extract( 1, 8,object)
62 #define Smantissa(object) Bitfield_mask( 9, 23,object)
[all...]
H A Dfpbits.h69 #define Bitfield_extract(start, length, object) \
70 ((object) >> (HOSTWDSZ - (start) - (length)) & \
73 #define Bitfield_signed_extract(start, length, object) \
74 ((int)((object) << start) >> (HOSTWDSZ - (length)))
76 #define Bitfield_mask(start, len, object) \
77 ((object) & (((unsigned)-1 >> (HOSTWDSZ-len)) << (HOSTWDSZ-start-len)))
79 #define Bitfield_deposit(value,start,len,object) object = \
80 ((object) & ~(((unsigned)-1 >> (HOSTWDSZ-(len))) << (HOSTWDSZ-(start)-(len)))) | \
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
H A Dnouveau_nvkm_core_object.c29 #include <core/object.h>
37 struct nvkm_object *object; local
41 object = rb_tree_find_node(&client->objtree, &handle);
42 if (object)
47 object = rb_entry(node, typeof(*object), node);
48 if (handle < object->object)
51 if (handle > object->object)
69 nvkm_object_remove(struct nvkm_object *object) argument
83 nvkm_object_insert(struct nvkm_object *object) argument
117 nvkm_object_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size) argument
125 nvkm_object_ntfy(struct nvkm_object *object, u32 mthd, struct nvkm_event **pevent) argument
135 nvkm_object_map(struct nvkm_object *object, void *argv, u32 argc, enum nvkm_object_map *type, bus_space_tag_t *tagp, u64 *addr, u64 *size) argument
145 nvkm_object_map(struct nvkm_object *object, void *argv, u32 argc, enum nvkm_object_map *type, u64 *addr, u64 *size) argument
155 nvkm_object_unmap(struct nvkm_object *object) argument
163 nvkm_object_rd08(struct nvkm_object *object, u64 addr, u8 *data) argument
171 nvkm_object_rd16(struct nvkm_object *object, u64 addr, u16 *data) argument
179 nvkm_object_rd32(struct nvkm_object *object, u64 addr, u32 *data) argument
187 nvkm_object_wr08(struct nvkm_object *object, u64 addr, u8 data) argument
195 nvkm_object_wr16(struct nvkm_object *object, u64 addr, u16 data) argument
203 nvkm_object_wr32(struct nvkm_object *object, u64 addr, u32 data) argument
211 nvkm_object_bind(struct nvkm_object *object, struct nvkm_gpuobj *gpuobj, int align, struct nvkm_gpuobj **pgpuobj) argument
220 nvkm_object_fini(struct nvkm_object *object, bool suspend) argument
263 nvkm_object_init(struct nvkm_object *object) argument
299 nvkm_object_dtor(struct nvkm_object *object) argument
324 struct nvkm_object *object = *pobject; local
335 nvkm_object_ctor(const struct nvkm_object_func *func, const struct nvkm_oclass *oclass, struct nvkm_object *object) argument
[all...]
H A Dnouveau_nvkm_core_oproxy.c32 nvkm_oproxy_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size) argument
34 return nvkm_object_mthd(nvkm_oproxy(object)->object, mthd, data, size);
38 nvkm_oproxy_ntfy(struct nvkm_object *object, u32 mthd, argument
41 return nvkm_object_ntfy(nvkm_oproxy(object)->object, mthd, pevent);
46 nvkm_oproxy_map(struct nvkm_object *object, void *argv, u32 argc, argument
49 return nvkm_object_map(nvkm_oproxy(object)->object, argv, argc, type,
54 nvkm_oproxy_map(struct nvkm_object *object, voi argument
63 nvkm_oproxy_unmap(struct nvkm_object *object) argument
69 nvkm_oproxy_rd08(struct nvkm_object *object, u64 addr, u8 *data) argument
75 nvkm_oproxy_rd16(struct nvkm_object *object, u64 addr, u16 *data) argument
81 nvkm_oproxy_rd32(struct nvkm_object *object, u64 addr, u32 *data) argument
87 nvkm_oproxy_wr08(struct nvkm_object *object, u64 addr, u8 data) argument
93 nvkm_oproxy_wr16(struct nvkm_object *object, u64 addr, u16 data) argument
99 nvkm_oproxy_wr32(struct nvkm_object *object, u64 addr, u32 data) argument
105 nvkm_oproxy_bind(struct nvkm_object *object, struct nvkm_gpuobj *parent, int align, struct nvkm_gpuobj **pgpuobj) argument
113 nvkm_oproxy_sclass(struct nvkm_object *object, int index, struct nvkm_oclass *oclass) argument
124 nvkm_oproxy_fini(struct nvkm_object *object, bool suspend) argument
151 nvkm_oproxy_init(struct nvkm_object *object) argument
178 nvkm_oproxy_dtor(struct nvkm_object *object) argument
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/device/
H A Dctrl.h6 #define nvkm_control(p) container_of((p), struct nvkm_control, object)
7 #include <core/object.h>
10 struct nvkm_object object; member in struct:nvkm_control
/netbsd-current/external/bsd/openldap/dist/servers/lloadd/
H A Depoch.h31 /** @brief A callback function used to free object and associated data */
32 typedef void (dispose_cb)( void *object );
74 /** @brief Return an unreachable object to be freed
76 * The object should already be unreachable at the point of call and
105 * object if decremented to zero. Returning previous reference count.
108 * @param[in] object The managed object
113 int try_release_ref( uintptr_t *refp, void *object, dispose_cb *cb );
117 * @param[in] object Pointer to the managed object
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libobjc/
H A Dobjects.c62 variables of the new object. */
69 object_copy (id object, size_t extraBytes) argument
71 if ((object != nil) && CLS_ISCLASS (object->class_pointer))
74 id copy = class_createInstance (object->class_pointer, extraBytes);
75 memcpy (copy, object, object->class_pointer->instance_size + extraBytes);
83 object_dispose (id object) argument
85 if ((object != nil) && CLS_ISCLASS (object
97 object_getClassName(id object) argument
106 object_setClass(id object, Class class_) argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/libobjc/
H A Dobjects.c62 variables of the new object. */
69 object_copy (id object, size_t extraBytes) argument
71 if ((object != nil) && CLS_ISCLASS (object->class_pointer))
74 id copy = class_createInstance (object->class_pointer, extraBytes);
75 memcpy (copy, object, object->class_pointer->instance_size + extraBytes);
83 object_dispose (id object) argument
85 if ((object != nil) && CLS_ISCLASS (object
97 object_getClassName(id object) argument
106 object_setClass(id object, Class class_) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DWasmDump.h18 namespace object { namespace in namespace:llvm
22 } // namespace object
26 Error getWasmRelocationValueString(const object::WasmObjectFile *Obj,
27 const object::RelocationRef &RelRef,
30 void printWasmFileHeader(const object::ObjectFile *O);
H A DCOFFDump.h18 namespace object { namespace in namespace:llvm
23 } // namespace object
26 Error getCOFFRelocationValueString(const object::COFFObjectFile *Obj,
27 const object::RelocationRef &Rel,
30 void printCOFFUnwindInfo(const object::COFFObjectFile *O);
31 void printCOFFFileHeader(const object::ObjectFile *O);
32 void printCOFFSymbolTable(const object::COFFImportFile *I);
33 void printCOFFSymbolTable(const object::COFFObjectFile *O);
H A DELFDump.h18 namespace object { namespace in namespace:llvm
23 } // namespace object
27 Error getELFRelocationValueString(const object::ELFObjectFileBase *Obj,
28 const object::RelocationRef &Rel,
30 uint64_t getELFSectionLMA(const object::ELFSectionRef &Sec);
32 void printELFFileHeader(const object::ObjectFile *O);
33 void printELFDynamicSection(const object::ObjectFile *Obj);
34 void printELFSymbolVersionInfo(const object::ObjectFile *Obj);
H A DXCOFFDump.h20 getXCOFFSymbolCsectSMC(const object::XCOFFObjectFile *Obj,
21 const object::SymbolRef &Sym);
23 bool isLabel(const object::XCOFFObjectFile *Obj, const object::SymbolRef &Sym);
28 Error getXCOFFRelocationValueString(const object::XCOFFObjectFile *Obj,
29 const object::RelocationRef &RelRef,
/netbsd-current/external/gpl3/gcc.old/dist/libobjc/objc-private/
H A Dprotocols.h36 __objc_protocols_add_protocol (const char *name, struct objc_protocol *object);
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-elf/
H A Dpr21389.s2 .type foo,%object
/netbsd-current/external/gpl3/gcc/dist/libobjc/objc-private/
H A Dprotocols.h36 __objc_protocols_add_protocol (const char *name, struct objc_protocol *object);
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/rs6000/
H A Deabi-ci.S34 .type __GOT_START__,@object
39 .type __GOT1_START__,@object
44 .type __GOT2_START__,@object
49 .type __FIXUP_START__,@object
54 .type __CTOR_LIST__,@object
59 .type __DTOR_LIST__,@object
64 .type __SDATA_START__,@object
66 .type _SDA_BASE_,@object
72 .type __SBSS_START__,@object
77 .type _SDA2_BASE_,@object
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/lib/
H A Ddotest16 object=`basename $i .s`.o
17 $x $i -o $xout/$object
18 $y $i -o $yout/$object
22 if (cmp $xout/$object $yout/$object)
26 if (doobjcmp $xout/$object $yout/$object)
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/rs6000/
H A Deabi-ci.S34 .type __GOT_START__,@object
39 .type __GOT1_START__,@object
44 .type __GOT2_START__,@object
49 .type __FIXUP_START__,@object
54 .type __CTOR_LIST__,@object
59 .type __DTOR_LIST__,@object
64 .type __SDATA_START__,@object
66 .type _SDA_BASE_,@object
72 .type __SBSS_START__,@object
77 .type _SDA2_BASE_,@object
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gold/testsuite/
H A Dobject_unittest.cc25 #include "object.h"
47 Object* object = make_elf_object("test.o", &input_file, 0, local
49 CHECK(object->name() == "test.o");
50 CHECK(!object->is_dynamic());
51 CHECK(object->is_locked());
52 object->unlock(task);
53 CHECK(!object->is_locked());
54 object->lock(task);
55 CHECK(object->shnum() == 5);
56 CHECK(object
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/nvif/
H A Dnouveau_nvif_object.c30 #include <nvif/object.h>
36 nvif_object_ioctl(struct nvif_object *object, void *data, u32 size, void **hack) argument
38 struct nvif_client *client = object->client;
44 if (object != &client->object)
45 args->v0.object = nvif_handle(object);
47 args->v0.object = 0;
52 return client->driver->ioctl(client->object.priv, client->super,
64 nvif_object_sclass_get(struct nvif_object *object, struc argument
108 nvif_object_rd(struct nvif_object *object, int size, u64 addr) argument
127 nvif_object_wr(struct nvif_object *object, int size, u64 addr, u32 data) argument
145 nvif_object_mthd(struct nvif_object *object, u32 mthd, void *data, u32 size) argument
174 nvif_object_unmap_handle(struct nvif_object *object) argument
187 nvif_object_map_handle(struct nvif_object *object, void *argv, u32 argc, bus_space_tag_t *tag, u64 *handle, u64 *length) argument
226 nvif_object_unmap(struct nvif_object *object) argument
249 nvif_object_map(struct nvif_object *object, void *argv, u32 argc) argument
295 nvif_object_fini(struct nvif_object *object) argument
313 nvif_object_init(struct nvif_object *parent, u32 handle, s32 oclass, void *data, u32 size, struct nvif_object *object) argument
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/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);
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
H A Ddisp.h5 #include <nvif/object.h>
9 struct nvif_object object; member in struct:nvif_disp

Completed in 174 milliseconds

1234567891011>>