Lines Matching defs:obj
74 union acpi_object *obj;
87 obj = acpi_evaluate_dsm_typed(handle, &nouveau_op_dsm_muid, 0x00000100,
89 if (!obj) {
93 if (obj->buffer.length == 4) {
94 *result |= obj->buffer.pointer[0];
95 *result |= (obj->buffer.pointer[1] << 8);
96 *result |= (obj->buffer.pointer[2] << 16);
97 *result |= (obj->buffer.pointer[3] << 24);
99 ACPI_FREE(obj);
133 union acpi_object *obj;
139 obj = acpi_evaluate_dsm_typed(handle, &nouveau_dsm_muid, 0x00000102,
141 if (!obj) {
145 if (obj->integer.value == 0x80000002)
147 ACPI_FREE(obj);