Searched refs:object (Results 1 - 25 of 454) sorted by path

1234567891011>>

/linux-master/arch/arm/boot/bootp/
H A Dinitrd.S2 .type initrd_start,#object
/linux-master/arch/arm/kernel/
H A Dsigreturn_codes.S72 .type sigreturn_codes, #object
/linux-master/arch/arm/mm/
H A Dproc-v7-3level.S146 .type v7_crval, #object
/linux-master/arch/parisc/math-emu/
H A Dcnv_float.h20 #define Dintp1(object) (object)
21 #define Dintp2(object) (object)
23 #define Duintp1(object) (object)
24 #define Duintp2(object) (object)
26 #define Qintp0(object) (object)
[all...]
H A Ddbl_float.h18 #define Dbl_sign(object) Dsign(object)
19 #define Dbl_exponent(object) Dexponent(object)
20 #define Dbl_signexponent(object) Dsignexponent(object)
21 #define Dbl_mantissap1(object) Dmantissap1(object)
22 #define Dbl_mantissap2(object) Dmantissap2(object)
[all...]
H A Dfloat.h48 #define Sall(object) (object)
49 #define Ssign(object) Bitfield_extract( 0, 1,object)
50 #define Ssignedsign(object) Bitfield_signed_extract( 0, 1,object)
51 #define Sexponent(object) Bitfield_extract( 1, 8,object)
52 #define Smantissa(object) Bitfield_mask( 9, 23,object)
[all...]
H A Dfpbits.h40 #define Bitfield_extract(start, length, object) \
41 ((object) >> (HOSTWDSZ - (start) - (length)) & \
44 #define Bitfield_signed_extract(start, length, object) \
45 ((int)((object) << start) >> (HOSTWDSZ - (length)))
47 #define Bitfield_mask(start, len, object) \
48 ((object) & (((unsigned)-1 >> (HOSTWDSZ-len)) << (HOSTWDSZ-start-len)))
50 #define Bitfield_deposit(value,start,len,object) object = \
51 ((object) & ~(((unsigned)-1 >> (HOSTWDSZ-len)) << (HOSTWDSZ-start-len))) | \
H A Dsgl_float.h19 #define Sgl_sign(object) Ssign(object)
20 #define Sgl_exponent(object) Sexponent(object)
21 #define Sgl_signexponent(object) Ssignexponent(object)
22 #define Sgl_mantissa(object) Smantissa(object)
23 #define Sgl_exponentmantissa(object) Sexponentmantissa(object)
[all...]
/linux-master/drivers/acpi/acpica/
H A Ddbtest.c176 /* Install the debugger read-object control method if necessary */
197 /* Install the debugger write-object control method if necessary */
218 /* Walk the entire namespace, testing each supported named data object */
233 * DESCRIPTION: Test one namespace object. Supported types are Integer,
235 * All other object types are simply ignored.
251 obj_desc = node->object;
294 * The returned object will be a Buffer if the field length
321 acpi_os_printf(" No attached sub-object, ignoring\n");
325 /* At this point, we have resolved the object to one of the major types */
374 * PARAMETERS: node - Parent NS node for the object
[all...]
H A Ddsmthdat.c25 union acpi_operand_object *object,
38 * PARAMETERS: walk_state - Current walk state object
93 * PARAMETERS: walk_state - Current walk state object
111 if (walk_state->local_variables[index].object) {
115 object));
117 /* Detach object (if present) and remove a reference */
127 if (walk_state->arguments[index].object) {
130 walk_state->arguments[index].object));
132 /* Detach object (if present) and remove a reference */
147 * walk_state - Current walk state object
279 acpi_ds_method_data_set_value(u8 type, u32 index, union acpi_operand_object *object, struct acpi_walk_state *walk_state) argument
340 union acpi_operand_object *object; local
444 union acpi_operand_object *object; local
656 union acpi_operand_object *object; local
[all...]
H A Dnseval.c25 * Node is the object to execute
37 * ACPI namespace object.
54 * Get the actual namespace node for the target object if we
76 info->node->object);
94 /* Get the full pathname to the object, for use in warning messages */
101 /* Optional object evaluation log */
138 * this method/object matches the actual ASL/AML definition.
151 * 2) The object is a control method -- execute it
152 * 3) The object is not a method -- just return it's current value
163 * 1) Disallow evaluation of these object type
[all...]
H A Dnsobject.c21 * object - Object to be attached
22 * type - Type of object, or ACPI_TYPE_ANY if not
27 * DESCRIPTION: Record the given object as the value associated with the
38 union acpi_operand_object *object, acpi_object_type type)
57 if (!object && (ACPI_TYPE_ANY != type)) {
59 /* Null object */
62 "Null object, but type not ACPI_TYPE_ANY"));
75 /* Check if this object is already attached */
77 if (node->object == object) {
37 acpi_ns_attach_object(struct acpi_namespace_node *node, union acpi_operand_object *object, acpi_object_type type) argument
[all...]
H A Dnssearch.c42 * Named object lists are built (and subsequently dumped) in the
87 * must search for the name among the children of this object
102 node->object);
119 /* Didn't match name, move on to the next peer object */
205 * object type at this point, we only care about the existence of
298 * delete any existing attached sub-object and make the node
312 acpi_ut_remove_reference((*return_node)->object);
313 (*return_node)->object = NULL;
322 /* Return an error if we don't expect to find the object */
371 /* Create the new named object */
[all...]
H A Dnsxfeval.c31 * return_buffer - Where to put the object's return value (if
33 * return_type - Expected type of return object
37 * DESCRIPTION: Find and evaluate the given object, passing the given
82 /* Evaluate the object */
100 ACPI_ERROR((AE_INFO, "%s did not return any object",
106 /* Examine the object type returned from evaluate_object */
112 /* Return object type does not match requested type */
157 * DESCRIPTION: Find and evaluate the given object, passing the given
191 * Get the actual namespace node for the target object.
255 /* Convert each external object i
[all...]
H A Dutmisc.c147 * PARAMETERS: object - Object to be added to the new state
158 acpi_ut_create_update_state_and_push(union acpi_operand_object *object, argument
168 if (!object) {
172 state = acpi_ut_create_update_state(object, action);
186 * target_object - Target object (if package is being copied)
228 * 2) Not an internal object - can be a namespace node instead
269 * completed package object.
285 * The callback above returned a new target package object.
326 * DESCRIPTION: Display full pathname of an object, DEBUG ONLY
368 /* Print the object typ
[all...]
H A Dutstate.c4 * Module Name: utstate - state object support procedures
19 * state - State object to push
23 * DESCRIPTION: Push a state object onto a state stack
32 /* Push the state object onto the front of the list (stack) */
45 * RETURN: The popped state object
47 * DESCRIPTION: Pop a state object from a state stack
58 /* Remove the state object at the head of the list (stack) */
77 * RETURN: The new state object. NULL on failure.
79 * DESCRIPTION: Create a generic state object. Attempt to obtain one from
119 /* Create the generic state object */
156 acpi_ut_create_update_state(union acpi_operand_object *object, u16 action) argument
[all...]
/linux-master/drivers/gpu/drm/nouveau/dispnv04/
H A Dtvnv17.h134 nvif_wr32(&device->object, reg, val);
140 return nvif_rd32(&device->object, reg);
/linux-master/drivers/gpu/drm/nouveau/dispnv50/
H A Dbase.c46 cid = nvif_mclass(&disp->disp->object, bases);
H A Doimm.c44 cid = nvif_mclass(&disp->disp->object, oimms);
H A Dovly.c46 cid = nvif_mclass(&disp->disp->object, ovlys);
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Doclass.h26 u64 object; member in struct:nvkm_oclass
H A Doproxy.h5 #include <core/object.h>
10 struct nvkm_object *object; member in struct:nvkm_oproxy
/linux-master/drivers/gpu/drm/nouveau/
H A Dnouveau_led.c41 struct nvif_object *device = &drm->client.device.object;
58 struct nvif_object *device = &drm->client.device.object;
/linux-master/drivers/gpu/drm/nouveau/nvkm/core/
H A Dramht.c24 #include <core/object.h>
60 nvkm_ramht_update(struct nvkm_ramht *ramht, int co, struct nvkm_object *object, argument
71 if (object) {
72 ret = nvkm_object_bind(object, ramht->parent, 16, &data->inst);
107 nvkm_ramht_insert(struct nvkm_ramht *ramht, struct nvkm_object *object, argument
118 return nvkm_ramht_update(ramht, co, object, chid,
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/device/
H A Dctrl.h4 #define nvkm_control(p) container_of((p), struct nvkm_control, object)
5 #include <core/object.h>
8 struct nvkm_object object; member in struct:nvkm_control

Completed in 317 milliseconds

1234567891011>>