Searched defs:object (Results 1 - 25 of 162) sorted by relevance

1234567

/drivers/gpu/drm/nouveau/core/subdev/pwr/
H A Dnva3.c29 nva3_pwr_init(struct nouveau_object *object) argument
31 struct nouveau_pwr *ppwr = (void *)object;
/drivers/gpu/drm/nouveau/core/subdev/mc/
H A Dnv44.c28 nv44_mc_init(struct nouveau_object *object) argument
30 struct nv04_mc_priv *priv = (void *)object;
H A Dnv50.c53 nv50_mc_init(struct nouveau_object *object) argument
55 struct nv04_mc_priv *priv = (void *)object;
/drivers/gpu/drm/nouveau/core/subdev/ltc/
H A Dgk104.c28 gk104_ltc_init(struct nouveau_object *object) argument
30 struct nvkm_ltc_priv *priv = (void *)object;
/drivers/gpu/drm/nouveau/core/subdev/timer/
H A Dgk20a.c28 gk20a_timer_init(struct nouveau_object *object) argument
30 struct nv04_timer_priv *priv = (void *)object;
/drivers/gpu/drm/nouveau/nvif/
H A Dclient.h4 #include "object.h"
8 struct nvif_object *object; /*XXX: hack for nvif_object() */ member in struct:nvif_client
14 nvif_client(struct nvif_object *object) argument
16 while (object && object->parent != object)
17 object = object->parent;
18 return (void *)object;
/drivers/gpu/drm/nouveau/core/subdev/fb/
H A Dnv41.c40 nv41_fb_init(struct nouveau_object *object) argument
42 struct nv04_fb_priv *priv = (void *)object;
/drivers/acpi/acpica/
H A Dexresop.c3 * Module Name: exresop - AML Interpreter operand/object resolution
57 acpi_object_type this_type, void *object);
64 * this_type Actual object type
75 acpi_object_type this_type, void *object)
93 (((union acpi_operand_object *)object)->common.
103 acpi_ut_get_type_name(this_type), object));
194 * Resolve an alias object. The construction of these objects
196 * thus, the attached object is always the aliased namespace node
212 /* ACPI internal object */
220 "Bad operand object typ
74 acpi_ex_check_object_type(acpi_object_type type_needed, acpi_object_type this_type, void *object) argument
[all...]
H A Dutcache.c56 * object_size - Size of each cached object
58 * return_cache - Where the new cache object is returned
62 * DESCRIPTION: Create a cache object
78 /* Create the cache object */
85 /* Populate the cache object and return it */
100 * PARAMETERS: cache - Handle to cache object
128 /* Delete and unlink one cached state object */
145 * PARAMETERS: cache - Handle to cache object
150 * cache object.
167 /* Now we can delete the cache object */
188 acpi_os_release_object(struct acpi_memory_list * cache, void *object) argument
246 void *object; local
[all...]
/drivers/gpu/drm/
H A Ddrm_global.c38 void *object; member in struct:drm_global_item
51 item->object = NULL;
61 BUG_ON(item->object != NULL);
73 item->object = kzalloc(ref->size, GFP_KERNEL);
74 if (unlikely(item->object == NULL)) {
79 ref->object = item->object;
86 ref->object = item->object;
91 item->object
[all...]
/drivers/gpu/drm/nouveau/core/core/
H A Dprintk.c25 #include <core/object.h>
33 nv_printk_(struct nouveau_object *object, int level, const char *fmt, ...) argument
62 if (object && !nv_iclass(object, NV_CLIENT_CLASS)) {
63 struct nouveau_object *device = object;
64 struct nouveau_object *subdev = object;
67 if (object->engine) {
69 nv_hclass(object), object);
71 subdev = object
[all...]
/drivers/gpu/drm/nouveau/core/engine/bsp/
H A Dnv98.c33 * BSP object classes
66 nv98_bsp_init(struct nouveau_object *object) argument
68 struct nv98_bsp_priv *priv = (void *)object;
H A Dnvc0.c33 * BSP object classes
64 nvc0_bsp_init(struct nouveau_object *object) argument
66 struct nvc0_bsp_priv *priv = (void *)object;
H A Dnve0.c33 * BSP object classes
64 nve0_bsp_init(struct nouveau_object *object) argument
66 struct nve0_bsp_priv *priv = (void *)object;
/drivers/gpu/drm/nouveau/core/engine/perfmon/
H A Dnva3.c28 * Perfmon object classes
71 struct nouveau_object **object)
73 int ret = nv40_perfmon_ctor(parent, engine, oclass, data, size, object);
75 struct nv40_perfmon_priv *priv = (void *)*object;
69 nva3_perfmon_ctor(struct nouveau_object *parent, struct nouveau_object *engine, struct nouveau_oclass *oclass, void *data, u32 size, struct nouveau_object **object) argument
/drivers/gpu/drm/nouveau/core/engine/ppp/
H A Dnv98.c33 * PPP object classes
65 nv98_ppp_init(struct nouveau_object *object) argument
67 struct nv98_ppp_priv *priv = (void *)object;
H A Dnvc0.c33 * PPP object classes
64 nvc0_ppp_init(struct nouveau_object *object) argument
66 struct nvc0_ppp_priv *priv = (void *)object;
/drivers/gpu/drm/nouveau/core/engine/software/
H A Dnvc0.c37 * software object classes
41 nvc0_software_mthd_vblsem_offset(struct nouveau_object *object, u32 mthd, argument
44 struct nv50_software_chan *chan = (void *)nv_engctx(object->parent);
57 nvc0_software_mthd_mp_control(struct nouveau_object *object, u32 mthd, argument
60 struct nv50_software_chan *chan = (void *)nv_engctx(object->parent);
/drivers/gpu/drm/nouveau/core/engine/vp/
H A Dnv98.c33 * VP object classes
65 nv98_vp_init(struct nouveau_object *object) argument
67 struct nv98_vp_priv *priv = (void *)object;
H A Dnvc0.c33 * VP object classes
64 nvc0_vp_init(struct nouveau_object *object) argument
66 struct nvc0_vp_priv *priv = (void *)object;
H A Dnve0.c33 * VP object classes
64 nve0_vp_init(struct nouveau_object *object) argument
66 struct nve0_vp_priv *priv = (void *)object;
/drivers/gpu/drm/nouveau/core/include/core/
H A Dhandle.h17 struct nouveau_object *object; member in struct:nouveau_handle
/drivers/gpu/drm/nouveau/core/subdev/bus/
H A Dnv31.c68 nv31_bus_init(struct nouveau_object *object) argument
70 struct nv04_bus_priv *priv = (void *)object;
H A Dnv50.c79 nv50_bus_init(struct nouveau_object *object) argument
81 struct nv04_bus_priv *priv = (void *)object;
H A Dnvc0.c57 nvc0_bus_init(struct nouveau_object *object) argument
59 struct nv04_bus_priv *priv = (void *)object;

Completed in 9688 milliseconds

1234567