HomeSort by: relevance | last modified time | path
    Searched refs:object (Results 1 - 25 of 302) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/hppa/spmath/
float.h 58 #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...]
fpbits.h 69 #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)))) | \
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_object.c 29 #include <core/object.h>
37 struct nvkm_object *object; local in function:nvkm_object_search
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)
324 struct nvkm_object *object = *pobject; local in function:nvkm_object_del
    [all...]
nouveau_nvkm_core_oproxy.c 32 nvkm_oproxy_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size)
34 return nvkm_object_mthd(nvkm_oproxy(object)->object, mthd, data, size);
38 nvkm_oproxy_ntfy(struct nvkm_object *object, u32 mthd,
41 return nvkm_object_ntfy(nvkm_oproxy(object)->object, mthd, pevent);
46 nvkm_oproxy_map(struct nvkm_object *object, void *argv, u32 argc,
49 return nvkm_object_map(nvkm_oproxy(object)->object, argv, argc, type,
54 nvkm_oproxy_map(struct nvkm_object *object, void *argv, u32 argc
    [all...]
nouveau_nvkm_core_ioctl.c 38 struct nvkm_object *object, void *data, u32 size)
45 nvif_ioctl(object, "nop size %d\n", size);
47 nvif_ioctl(object, "nop vers %"PRId64"\n", args->v0.version);
56 struct nvkm_object *object, void *data, u32 size)
64 nvif_ioctl(object, "sclass size %d\n", size);
66 nvif_ioctl(object, "sclass vers %d count %d\n",
71 while (object->func->sclass &&
72 object->func->sclass(object, i, &oclass) >= 0) {
94 struct nvkm_object *object = NULL local in function:nvkm_ioctl_new
436 struct nvkm_object *object; local in function:nvkm_ioctl_path
464 struct nvkm_object *object = &client->object; local in function:nvkm_ioctl
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/device/
ctrl.h 6 #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
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/
nouveau_nvif_object.c 30 #include <nvif/object.h>
36 nvif_object_ioctl(struct nvif_object *object, void *data, u32 size, void **hack)
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, struct nvif_sclass **psclass
    [all...]
nouveau_nvif_disp.c 35 nvif_object_fini(&disp->object);
59 int cid = nvif_sclass(&device->object, disps, oclass);
60 disp->object.client = NULL;
64 return nvif_object_init(&device->object, 0, disps[cid].oclass,
65 NULL, 0, &disp->object);
nouveau_nvif_user.c 36 nvif_object_fini(&device->user.object);
57 cid = nvif_mclass(&device->object, users);
61 ret = nvif_object_init(&device->object, 0, users[cid].oclass, NULL, 0,
62 &device->user.object);
66 nvif_object_map(&device->user.object, NULL, 0);
nouveau_nvif_client.c 40 return client->driver->ioctl(client->object.priv, client->super, data, size, NULL);
46 return client->driver->suspend(client->object.priv);
52 return client->driver->resume(client->object.priv);
58 nvif_object_fini(&client->object);
61 client->driver->fini(client->object.priv);
78 ret = nvif_object_init(parent != client ? &parent->object : NULL,
80 &client->object);
84 client->object.client = client;
85 client->object.handle = ~0;
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
atomic_flag_clear.c 23 void atomic_flag_clear(volatile atomic_flag *object) {
24 __c11_atomic_store(&(object)->_Value, 0, __ATOMIC_SEQ_CST);
atomic_flag_clear_explicit.c 23 void atomic_flag_clear_explicit(volatile atomic_flag *object,
25 __c11_atomic_store(&(object)->_Value, 0, order);
atomic_flag_test_and_set.c 23 _Bool atomic_flag_test_and_set(volatile atomic_flag *object) {
24 return __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_CST);
atomic_flag_test_and_set_explicit.c 23 _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *object,
25 return __c11_atomic_exchange(&(object)->_Value, 1, order);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
disp.h 5 #include <nvif/object.h>
9 struct nvif_object object; member in struct:nvif_disp
user.h 5 #include <nvif/object.h>
10 struct nvif_object object; member in struct:nvif_user
client.h 7 #include <nvif/object.h>
10 struct nvif_object object; member in struct:nvif_client
28 (struct nvkm_client *)_client->object.priv; \
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sancov_begin.S 1 .type __start___sancov_guards,@object
sancov_end.S 1 .type __stop___sancov_guards,@object
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/
ummu.h 5 #define nvkm_ummu(p) container_of((p), struct nvkm_ummu, object)
6 #include <core/object.h>
10 struct nvkm_object object; member in struct:nvkm_ummu
uvmm.h 5 #define nvkm_uvmm(p) container_of((p), struct nvkm_uvmm, object)
6 #include <core/object.h>
10 struct nvkm_object object; member in struct:nvkm_uvmm
umem.h 5 #define nvkm_umem(p) container_of((p), struct nvkm_umem, object)
6 #include <core/object.h>
10 struct nvkm_object object; member in struct:nvkm_umem
  /src/games/adventure/
vocab.c 55 destroy(int object)
57 move(object, 0);
61 juggle(int object)
65 i = place[object];
66 j = fixed[object];
67 move(object, i);
68 move(object + 100, j);
72 move(int object, int where)
76 if (object <= 100)
77 from = place[object];
    [all...]
  /src/games/rogue/
rogue.h 51 #define OBJECT ((unsigned short) 01)
200 * struct object fields that are used for monsters. This, since each monster
201 * and object (scrolls, potions, etc) are represented by a struct object.
243 typedef struct obj object; typedef in typeref:struct:obj
257 object *armor;
258 object *weapon;
259 object *left_ring, *right_ring;
264 object pack;
343 extern object level_objects
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/
nouveau_nvkm_engine_disp_rootnv04.c 29 #define nv04_disp_root(p) container_of((p), struct nv04_disp_root, object)
40 struct nvkm_object object; member in struct:nv04_disp_root
45 nv04_disp_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size)
47 struct nv04_disp_root *root = nv04_disp_root(object);
54 nvif_ioctl(object, "disp mthd size %d\n", size);
56 nvif_ioctl(object, "disp mthd vers %d mthd %02x head %d\n",
68 return nvkm_head_mthd_scanoutpos(object, head, data, size);
91 *pobject = &root->object;
93 nvkm_object_ctor(&nv04_disp_root, oclass, &root->object);

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>