Home
last modified time | relevance | path

Searched refs:object (Results 1 – 25 of 3769) sorted by relevance

12345678910>>...151

/netbsd-src/sys/arch/hppa/spmath/
H A Dfloat.h58 #define Sall(object) (object) argument
59 #define Ssign(object) Bitfield_extract( 0, 1,object) argument
60 #define Ssignedsign(object) Bitfield_signed_extract( 0, 1,object) argument
61 #define Sexponent(object) Bitfield_extract( 1, 8,object) argument
62 #define Smantissa(object) Bitfield_mask( 9, 23,object) argument
63 #define Ssignaling(object) Bitfield_extract( 9, 1,object) argument
64 #define Ssignalingnan(object) Bitfield_extract( 1, 9,object) argument
65 #define Shigh2mantissa(object) Bitfield_extract( 9, 2,object) argument
66 #define Sexponentmantissa(object) Bitfield_mask( 1, 31,object) argument
67 #define Ssignexponent(object) Bitfield_extract( 0, 9,object) argument
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
H A Dnouveau_nvkm_core_object.c37 struct nvkm_object *object; in nvkm_object_search() local
41 object = rb_tree_find_node(&client->objtree, &handle); in nvkm_object_search()
42 if (object) in nvkm_object_search()
47 object = rb_entry(node, typeof(*object), node); in nvkm_object_search()
48 if (handle < object->object) in nvkm_object_search()
51 if (handle > object->object) in nvkm_object_search()
59 object = &client->object; in nvkm_object_search()
63 if (unlikely(func && object->func != func)) in nvkm_object_search()
65 return object; in nvkm_object_search()
69 nvkm_object_remove(struct nvkm_object *object) in nvkm_object_remove() argument
[all …]
H A Dnouveau_nvkm_core_oproxy.c32 nvkm_oproxy_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size) in nvkm_oproxy_mthd() argument
34 return nvkm_object_mthd(nvkm_oproxy(object)->object, mthd, data, size); in nvkm_oproxy_mthd()
38 nvkm_oproxy_ntfy(struct nvkm_object *object, u32 mthd, in nvkm_oproxy_ntfy() argument
41 return nvkm_object_ntfy(nvkm_oproxy(object)->object, mthd, pevent); in nvkm_oproxy_ntfy()
46 nvkm_oproxy_map(struct nvkm_object *object, void *argv, u32 argc, in nvkm_oproxy_map() argument
49 return nvkm_object_map(nvkm_oproxy(object)->object, argv, argc, type, in nvkm_oproxy_map()
54 nvkm_oproxy_map(struct nvkm_object *object, void *argv, u32 argc, in nvkm_oproxy_map() argument
57 struct nvkm_oproxy *oproxy = nvkm_oproxy(object); in nvkm_oproxy_map()
58 return nvkm_object_map(oproxy->object, argv, argc, type, addr, size); in nvkm_oproxy_map()
63 nvkm_oproxy_unmap(struct nvkm_object *object) in nvkm_oproxy_unmap() argument
[all …]
H A Dnouveau_nvkm_core_ioctl.c38 struct nvkm_object *object, void *data, u32 size) in nvkm_ioctl_nop() argument
45 nvif_ioctl(object, "nop size %d\n", size); in nvkm_ioctl_nop()
47 nvif_ioctl(object, "nop vers %"PRId64"\n", args->v0.version); in nvkm_ioctl_nop()
56 struct nvkm_object *object, void *data, u32 size) in nvkm_ioctl_sclass() argument
64 nvif_ioctl(object, "sclass size %d\n", size); in nvkm_ioctl_sclass()
66 nvif_ioctl(object, "sclass vers %d count %d\n", in nvkm_ioctl_sclass()
71 while (object->func->sclass && in nvkm_ioctl_sclass()
72 object->func->sclass(object, i, &oclass) >= 0) { in nvkm_ioctl_sclass()
94 struct nvkm_object *object = NULL; in nvkm_ioctl_new() local
103 args->v0.route, args->v0.token, args->v0.object); in nvkm_ioctl_new()
[all …]
H A Dnouveau_nvkm_core_client.c58 client->object.client = oclass->client; in nvkm_uclient_new()
59 client->object.handle = oclass->handle; in nvkm_uclient_new()
60 client->object.route = oclass->route; in nvkm_uclient_new()
61 client->object.token = oclass->token; in nvkm_uclient_new()
62 client->object.object = oclass->object; in nvkm_uclient_new()
64 *pobject = &client->object; in nvkm_uclient_new()
133 nvkm_client_notify_new(struct nvkm_object *object, in nvkm_client_notify_new() argument
136 struct nvkm_client *client = object->client; in nvkm_client_notify_new()
156 nvif_ioctl(object, "notify new size %d\n", size); in nvkm_client_notify_new()
158 nvif_ioctl(object, "notify new vers %d reply %d route %02x " in nvkm_client_notify_new()
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/
H A Dnouveau_nvif_object.c36 nvif_object_ioctl(struct nvif_object *object, void *data, u32 size, void **hack) in nvif_object_ioctl() argument
38 struct nvif_client *client = object->client; in nvif_object_ioctl()
44 if (object != &client->object) in nvif_object_ioctl()
45 args->v0.object = nvif_handle(object); in nvif_object_ioctl()
47 args->v0.object = 0; in nvif_object_ioctl()
52 return client->driver->ioctl(client->object.priv, client->super, in nvif_object_ioctl()
64 nvif_object_sclass_get(struct nvif_object *object, struct nvif_sclass **psclass) in nvif_object_sclass_get() argument
82 ret = nvif_object_ioctl(object, args, size, NULL); in nvif_object_sclass_get()
108 nvif_object_rd(struct nvif_object *object, int size, u64 addr) in nvif_object_rd() argument
118 int ret = nvif_object_ioctl(object, &args, sizeof(args), NULL); in nvif_object_rd()
[all …]
/netbsd-src/games/rogue/
H A Drogue.h243 typedef struct obj object; typedef
257 object *armor;
258 object *weapon;
259 object *left_ring, *right_ring;
264 object pack;
343 extern object level_objects;
352 extern object level_monsters;
445 object *alloc_object(void);
446 object *get_letter_object(int);
447 object *gr_monster(object *, int);
[all …]
/netbsd-src/games/adventure/
H A Dvocab.c55 destroy(int object) in destroy() argument
57 move(object, 0); in destroy()
61 juggle(int object) in juggle() argument
65 i = place[object]; in juggle()
66 j = fixed[object]; in juggle()
67 move(object, i); in juggle()
68 move(object + 100, j); in juggle()
72 move(int object, int where) in move() argument
76 if (object <= 100) in move()
77 from = place[object]; in move()
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/fifo/
H A Dnouveau_nvkm_engine_fifo_chan.c46 struct nvkm_fifo_chan_object *object = in nvkm_fifo_chan_child_fini() local
47 container_of(base, typeof(*object), oproxy); in nvkm_fifo_chan_child_fini()
48 struct nvkm_engine *engine = object->oproxy.object->engine; in nvkm_fifo_chan_child_fini()
49 struct nvkm_fifo_chan *chan = object->chan; in nvkm_fifo_chan_child_fini()
60 nvif_error(&chan->object, in nvkm_fifo_chan_child_fini()
66 if (engn->object) { in nvkm_fifo_chan_child_fini()
67 ret = nvkm_object_fini(engn->object, suspend); in nvkm_fifo_chan_child_fini()
72 nvif_trace(&chan->object, "detached %s\n", name); in nvkm_fifo_chan_child_fini()
79 struct nvkm_fifo_chan_object *object = in nvkm_fifo_chan_child_init() local
80 container_of(base, typeof(*object), oproxy); in nvkm_fifo_chan_child_init()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Headers/
H A Dstdatomic.h117 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST) argument
120 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST) argument
123 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST) argument
126 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_str… argument
129 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak( argument
132 #define atomic_fetch_add(object, operand) __c11_atomic_fetch_add(object, operand, __ATOMIC_SEQ_CST) argument
135 #define atomic_fetch_sub(object, operand) __c11_atomic_fetch_sub(object, operand, __ATOMIC_SEQ_CST) argument
138 #define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST) argument
141 #define atomic_fetch_xor(object, operand) __c11_atomic_fetch_xor(object, operand, __ATOMIC_SEQ_CST) argument
144 #define atomic_fetch_and(object, operand) __c11_atomic_fetch_and(object, operand, __ATOMIC_SEQ_CST) argument
[all …]
/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Ddmu_object.c38 uint64_t object; in dmu_object_alloc() local
46 object = os->os_obj_next; in dmu_object_alloc()
60 if (P2PHASE(object, L2_dnode_count) == 0) { in dmu_object_alloc()
61 uint64_t offset = restarted ? object << DNODE_SHIFT : 0; in dmu_object_alloc()
67 object = offset >> DNODE_SHIFT; in dmu_object_alloc()
69 os->os_obj_next = ++object; in dmu_object_alloc()
77 (void) dnode_hold_impl(os, object, DNODE_MUST_BE_FREE, in dmu_object_alloc()
82 if (dmu_object_next(os, &object, B_TRUE, 0) == 0) in dmu_object_alloc()
83 os->os_obj_next = object - 1; in dmu_object_alloc()
91 dmu_tx_add_new_object(tx, os, object); in dmu_object_alloc()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libobjc/
H A Dobjects.c69 object_copy (id object, size_t extraBytes) in object_copy() argument
71 if ((object != nil) && CLS_ISCLASS (object->class_pointer)) in object_copy()
74 id copy = class_createInstance (object->class_pointer, extraBytes); in object_copy()
75 memcpy (copy, object, object->class_pointer->instance_size + extraBytes); in object_copy()
83 object_dispose (id object) in object_dispose() argument
85 if ((object != nil) && CLS_ISCLASS (object->class_pointer)) in object_dispose()
91 objc_free (object); in object_dispose()
97 object_getClassName (id object) in object_getClassName() argument
99 if (object != nil) in object_getClassName()
100 return object->class_pointer->name; in object_getClassName()
[all …]
H A Dobjc-sync.c124 id object; member
189 new_node->object = nil; in __objc_sync_init()
199 objc_sync_enter (id object) in objc_sync_enter() argument
208 if (object == nil) in objc_sync_enter()
237 else if (locked_node->object == object) in objc_sync_enter()
260 hash = SYNC_OBJECT_HASH(object); in objc_sync_enter()
272 if (node->object == object) in objc_sync_enter()
303 unused_node->object = object; in objc_sync_enter()
325 new_node->object = object; in objc_sync_enter()
346 objc_sync_exit (id object) in objc_sync_exit() argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/libobjc/
H A Dobjects.c69 object_copy (id object, size_t extraBytes) in object_copy() argument
71 if ((object != nil) && CLS_ISCLASS (object->class_pointer)) in object_copy()
74 id copy = class_createInstance (object->class_pointer, extraBytes); in object_copy()
75 memcpy (copy, object, object->class_pointer->instance_size + extraBytes); in object_copy()
83 object_dispose (id object) in object_dispose() argument
85 if ((object != nil) && CLS_ISCLASS (object->class_pointer)) in object_dispose()
91 objc_free (object); in object_dispose()
97 object_getClassName (id object) in object_getClassName() argument
99 if (object != nil) in object_getClassName()
100 return object->class_pointer->name; in object_getClassName()
[all …]
H A Dobjc-sync.c124 id object; member
189 new_node->object = nil; in __objc_sync_init()
199 objc_sync_enter (id object) in objc_sync_enter() argument
208 if (object == nil) in objc_sync_enter()
237 else if (locked_node->object == object) in objc_sync_enter()
260 hash = SYNC_OBJECT_HASH(object); in objc_sync_enter()
272 if (node->object == object) in objc_sync_enter()
303 unused_node->object = object; in objc_sync_enter()
325 new_node->object = object; in objc_sync_enter()
346 objc_sync_exit (id object) in objc_sync_exit() argument
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/
H A Dprovider-object.pod5 provider-object - A specification for a provider-native object abstraction
16 The provider-native object abstraction is a set of L<OSSL_PARAM(3)> keys and
22 of object that belong with other operations, or with OpenSSL library code.
24 An object may be passed in the following manners:
32 This means that the I<object data> is passed as an octet string or an UTF8
34 The encoding of the object depends on the context it's used in; for example,
37 B<must> be encoded in DER for all object types except for B<OSSL_OBJECT_NAME>
47 This means that the I<object data> isn't passed directly, an I<object
57 implementation where the object originated (let's call it X) and its target
64 I<An object loading function in the target implementation>
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h23 namespace object {
67 typedef std::function<bool(llvm::object::SectionRef const &)> FilterPredicate;
74 llvm::object::section_iterator const &I, in SectionFilterIterator()
75 llvm::object::section_iterator const &E) in SectionFilterIterator()
79 const llvm::object::SectionRef &operator*() const { return *Iterator; }
96 llvm::object::section_iterator Iterator;
97 llvm::object::section_iterator End;
104 SectionFilter(FilterPredicate P, llvm::object::ObjectFile const &O) in SectionFilter()
117 llvm::object::ObjectFile const &Object;
128 SectionFilter ToolSectionFilter(llvm::object::ObjectFile const &O,
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/
H A Dnouveau_nvkm_engine_disp_channv50.c139 nv50_disp_chan_uevent_ctor(struct nvkm_object *object, void *data, u32 size, in nv50_disp_chan_uevent_ctor() argument
142 struct nv50_disp_chan *chan = nv50_disp_chan(object); in nv50_disp_chan_uevent_ctor()
182 nv50_disp_chan_rd32(struct nvkm_object *object, u64 addr, u32 *data) in nv50_disp_chan_rd32() argument
184 struct nv50_disp_chan *chan = nv50_disp_chan(object); in nv50_disp_chan_rd32()
192 nv50_disp_chan_wr32(struct nvkm_object *object, u64 addr, u32 data) in nv50_disp_chan_wr32() argument
194 struct nv50_disp_chan *chan = nv50_disp_chan(object); in nv50_disp_chan_wr32()
202 nv50_disp_chan_ntfy(struct nvkm_object *object, u32 type, in nv50_disp_chan_ntfy() argument
205 struct nv50_disp_chan *chan = nv50_disp_chan(object); in nv50_disp_chan_ntfy()
219 nv50_disp_chan_map(struct nvkm_object *object, void *argv, u32 argc, in nv50_disp_chan_map() argument
223 nv50_disp_chan_map(struct nvkm_object *object, void *argv, u32 argc, in nv50_disp_chan_map()
[all …]
/netbsd-src/external/bsd/nvi/dist/dist/
H A Ddepcomp43 object Object file output by 'PROGRAMS ARGS'.
65 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
71 depfile=${depfile-`echo "$object" |
128 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
165 echo "$object : \\" > "$depfile"
183 sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
210 echo "$object : \\" > "$depfile"
249 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
250 test "x$dir" = "x$object" && dir=
251 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
[all …]
/netbsd-src/external/bsd/openldap/dist/servers/slapd/slapi/
H A Dslapi_ext.c66 static int get_extension_block(int objecttype, void *object, struct slapi_extension_block **eblock,… in get_extension_block() argument
70 *eblock = ((Connection *)object)->c_extensions; in get_extension_block()
74 *eblock = ((Operation *)object)->o_hdr->oh_extensions; in get_extension_block()
75 *parent = ((Operation *)object)->o_conn; in get_extension_block()
103 int objecttype, void *object, void *parent, in new_extension() argument
117 eblock->extensions[extensionhandle] = (*constructor)( object, parent ); in new_extension()
123 static void free_extension(struct slapi_extension_block *eblock, int objecttype, void *object, void… in free_extension() argument
134 (*destructor)( eblock->extensions[extensionhandle], object, parent ); in free_extension()
140 void *slapi_get_object_extension(int objecttype, void *object, int extensionhandle) in slapi_get_object_extension() argument
145 if ( get_extension_block( objecttype, object, &eblock, &parent ) != 0 ) { in slapi_get_object_extension()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.h138 ErrorOr<object::SectionRef>
139 getSectionContaining(const object::COFFObjectFile &COFF, uint64_t Address);
141 ErrorOr<object::SymbolRef>
142 getSymbol(const object::COFFObjectFile &COFF, uint64_t Address,
145 ErrorOr<object::SymbolRef>
146 getRelocatedSymbol(const object::COFFObjectFile &COFF,
147 const object::SectionRef &Section, uint64_t Offset);
149 ErrorOr<object::SymbolRef>
150 getSymbolForLocation(const object::COFFObjectFile &COFF,
151 const object::SectionRef &Section,
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gold/
H A Dreloc.h68 Read_relocs(Symbol_table* symtab, Layout* layout, Relobj* object, in Read_relocs() argument
70 : symtab_(symtab), layout_(layout), object_(object), in Read_relocs()
105 Gc_process_relocs(Symbol_table* symtab, Layout* layout, Relobj* object, in Gc_process_relocs() argument
108 : symtab_(symtab), layout_(layout), object_(object), rd_(rd), in Gc_process_relocs()
146 Scan_relocs(Symbol_table* symtab, Layout* layout, Relobj* object, in Scan_relocs() argument
149 : symtab_(symtab), layout_(layout), object_(object), rd_(rd), in Scan_relocs()
184 Relobj* object, Output_file* of, in Relocate_task() argument
187 : symtab_(symtab), layout_(layout), object_(object), of_(of), in Relocate_task()
432 const Sized_relobj_file<size, big_endian>* object, in rel() argument
439 Address value = psymval->value(object, addend); in rel()
[all …]
/netbsd-src/external/gpl3/binutils/dist/gold/
H A Dreloc.h68 Read_relocs(Symbol_table* symtab, Layout* layout, Relobj* object, in Read_relocs() argument
70 : symtab_(symtab), layout_(layout), object_(object), in Read_relocs()
105 Gc_process_relocs(Symbol_table* symtab, Layout* layout, Relobj* object, in Gc_process_relocs() argument
108 : symtab_(symtab), layout_(layout), object_(object), rd_(rd), in Gc_process_relocs()
146 Scan_relocs(Symbol_table* symtab, Layout* layout, Relobj* object, in Scan_relocs() argument
149 : symtab_(symtab), layout_(layout), object_(object), rd_(rd), in Scan_relocs()
184 Relobj* object, Output_file* of, in Relocate_task() argument
187 : symtab_(symtab), layout_(layout), object_(object), of_(of), in Relocate_task()
432 const Sized_relobj_file<size, big_endian>* object, in rel() argument
439 Address value = psymval->value(object, addend); in rel()
[all …]
/netbsd-src/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-src/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 …]

12345678910>>...151