Searched refs:object (Results 151 - 175 of 454) sorted by relevance

1234567891011>>

/linux-master/arch/arm/mm/
H A Dproc-v7m.S199 .type __v7m_cm55_proc_info, #object
209 .type __v7m_cm33_proc_info, #object
219 .type __v7m_cm7_proc_info, #object
229 .type __v7m_cm4_proc_info, #object
239 .type __v7m_cm3_proc_info, #object
249 .type __v7m_proc_info, #object
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
H A Duvmm.c36 struct nvkm_object *object; local
38 object = nvkm_object_search(client, handle, &nvkm_uvmm);
39 if (IS_ERR(object))
40 return (void *)object;
42 return nvkm_vmm_ref(nvkm_uvmm(object)->vmm);
153 struct nvkm_client *client = uvmm->object.client;
392 struct nvkm_client *client = uvmm->object.client;
492 nvkm_uvmm_mthd(struct nvkm_object *object, u32 mthd, void *argv, u32 argc) argument
494 struct nvkm_uvmm *uvmm = nvkm_uvmm(object);
507 uvmm->object
518 nvkm_uvmm_dtor(struct nvkm_object *object) argument
[all...]
/linux-master/drivers/acpi/
H A Dacpi_processor.c235 union acpi_object object = { 0 }; local
236 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
260 "Failed to evaluate processor object (0x%x)\n",
265 pr->acpi_id = object.processor.proc_id;
310 * looking at the presence of the _PCT object under the first
344 if (!object.processor.pblk_address)
346 else if (object.processor.pblk_length != 6)
348 object.processor.pblk_length);
350 pr->throttling.address = object.processor.pblk_address;
354 pr->pblk = object
509 union acpi_object object = {}; local
707 union acpi_object object = { 0 }; local
[all...]
/linux-master/drivers/input/gameport/
H A Dgameport.c260 void *object; member in struct:gameport_event
299 if (event->object == e->object) {
334 gameport_add_port(event->object);
338 gameport_attach_driver(event->object);
351 static int gameport_queue_event(void *object, struct module *owner, argument
368 if (event->object == object) {
391 event->object = object;
406 gameport_remove_pending_events(void *object) argument
[all...]
/linux-master/security/keys/
H A Dkeyring.c42 void *object = assoc_array_ptr_to_leaf(x); local
43 return (struct key *)((unsigned long)object & ~KEYRING_PTR_SUBTYPE);
303 static unsigned long keyring_get_object_key_chunk(const void *object, int level) argument
305 const struct key *key = keyring_ptr_to_key(object);
309 static bool keyring_compare_object(const void *object, const void *data) argument
312 const struct key *key = keyring_ptr_to_key(object);
325 static int keyring_diff_objects(const void *object, const void *data) argument
327 const struct key *key_a = keyring_ptr_to_key(object);
385 * Free an object after stripping the keyring flag off of the pointer.
387 static void keyring_free_object(void *object) argument
458 keyring_read_iterator(const void *object, void *data) argument
574 keyring_search_iterator(const void *object, void *iterator_data) argument
649 const void *object; local
1102 const void *object; local
1189 keyring_detect_cycle_iterator(const void *object, void *iterator_data) argument
1690 keyring_gc_select_iterator(void *object, void *iterator_data) argument
1701 keyring_gc_check_iterator(const void *object, void *iterator_data) argument
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/mpeg/
H A Dnv31.c35 * MPEG object classes
39 nv31_mpeg_object_bind(struct nvkm_object *object, struct nvkm_gpuobj *parent, argument
42 int ret = nvkm_gpuobj_new(object->engine->subdev.device, 16, align,
46 nvkm_wo32(*pgpuobj, 0x00, object->oclass);
65 nv31_mpeg_chan_dtor(struct nvkm_object *object) argument
67 struct nv31_mpeg_chan *chan = nv31_mpeg_chan(object);
94 nvkm_object_ctor(&nv31_mpeg_chan, oclass, &chan->object);
97 *pobject = &chan->object;
198 /* happens on initial binding of the object */
/linux-master/drivers/gpu/drm/nouveau/
H A Dnouveau_abi16.c55 /* allocate device object targeting client's default
59 if (nvif_device_ctor(&cli->base.object, "abi16Device",
85 struct nouveau_cli *cli = (void *)abi16->device.object.client;
118 nvif_object_dtor(&ntfy->object);
154 /* destroy channel object, all children will be killed too */
167 struct nouveau_cli *cli = (void *)abi16->device.object.client;
175 /* destroy the device object */
193 return nvif_mclass(&device->object, dmas) < 0 ? NV50_DMA_IB_MAX : 0;
345 /* create channel object and initialise dma and fence management */
406 /* Named memory object are
[all...]
H A Dnouveau_svm.c28 #include <nvif/object.h>
48 struct nvif_object object; member in struct:nouveau_svm::nouveau_svm_fault_buffer
243 nvif_object_mthd(&svmm->vmm->vmm.object, NVIF_VMM_V0_PFNCLR,
350 cli->vmm.vmm.object.oclass, MANAGED,
384 WARN_ON(nvif_object_mthd(&svm->drm->client.vmm.vmm.object,
400 WARN_ON(nvif_object_mthd(&svm->drm->client.vmm.vmm.object,
456 struct nvif_object *memory = &buffer->object;
637 ret = nvif_object_ioctl(&svmm->vmm->vmm.object, args, size, NULL);
703 ret = nvif_object_ioctl(&svmm->vmm->vmm.object, args, size, NULL);
717 struct nvif_object *device = &svm->drm->client.device.object;
[all...]
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/input/serio/
H A Dserio.c139 void *object; member in struct:serio_event
170 static void serio_remove_duplicate_events(void *object, argument
179 if (object == e->object) {
207 serio_add_port(event->object);
211 serio_reconnect_port(event->object);
215 serio_disconnect_port(event->object);
216 serio_find_driver(event->object);
220 serio_reconnect_subtree(event->object);
224 serio_attach_driver(event->object);
237 serio_queue_event(void *object, struct module *owner, enum serio_event_type event_type) argument
292 serio_remove_pending_events(void *object) argument
[all...]
/linux-master/drivers/acpi/acpica/
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 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 Dacutils.h227 const char *acpi_ut_get_node_name(void *object);
229 const char *acpi_ut_get_descriptor_name(void *object);
231 const char *acpi_ut_get_reference_name(union acpi_operand_object *object);
289 acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action);
367 void acpi_ut_add_reference(union acpi_operand_object *object);
369 void acpi_ut_remove_reference(union acpi_operand_object *object);
371 void acpi_ut_delete_internal_package_object(union acpi_operand_object *object);
373 void acpi_ut_delete_internal_simple_object(union acpi_operand_object *object);
378 * uteval - object evaluation
434 * utobject - internal object creat
[all...]
H A Dnsarguments.c82 * node - Namespace node for the method/object
111 * If this object is not a control method, we can check if the ACPI
149 * Note: These are BIOS errors in the declaration of the object
151 aml_param_count = node->object->method.param_count;
175 * node - Namespace node for the method/object
182 * parameter count (in the ASL/AML) for an object.
202 * against the count that is specified in the method/object.
208 "%u arguments were passed to a non-method ACPI object (%s)",
229 aml_param_count = node->object->method.param_count;
/linux-master/arch/parisc/math-emu/
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/include/rdma/
H A Duverbs_std_types.h16 * object IDs. The write API must use a u32 for the object handle, which is
38 return uobj->object;
91 * initializing the object and that the core should commit or
92 * abort this object based upon the return code from the write()
123 uobj->object = action;
152 uobj->object = ibflow;
/linux-master/drivers/gpu/drm/
H A Ddrm_lease.c22 * mode setting object. This enables the creation of multiple DRM masters that
47 * not permitted to lease the same object to multiple lessees.
96 /* Checks if the given object has been leased to some lessee of drm_master */
201 * ERR_PTR(-EACCES) some other master holds the title to any object
202 * ERR_PTR(-ENOENT) some object is not a valid DRM object for this device
203 * ERR_PTR(-EBUSY) some other lessee holds title to this object
204 * ERR_PTR(-EEXIST) same object specified more than once in the provided list
212 int object; local
226 idr_for_each_entry(leases, entry, object) {
302 int object; local
647 int object; local
[all...]
/linux-master/tools/testing/selftests/net/
H A Dudpgro_frglist.sh43 ip -n "${PEER_NS}" link set veth1 xdp object ${BPF_FILE} section xdp
45 tc -n "${PEER_NS}" filter add dev veth1 ingress prio 4 protocol ipv6 bpf object-file nat6to4.o section schedcls/ingress6/nat_6 direct-action
46 tc -n "${PEER_NS}" filter add dev veth1 egress prio 4 protocol ip bpf object-file nat6to4.o section schedcls/egress4/snat4 direct-action
/linux-master/mm/kmsan/
H A Dhooks.c50 void kmsan_slab_alloc(struct kmem_cache *s, void *object, gfp_t flags) argument
52 if (unlikely(object == NULL))
65 kmsan_internal_unpoison_memory(object, s->object_size,
68 kmsan_internal_poison_memory(object, s->object_size, flags,
73 void kmsan_slab_free(struct kmem_cache *s, void *object) argument
89 kmsan_internal_poison_memory(object, s->object_size, GFP_KERNEL,
/linux-master/drivers/infiniband/hw/mlx5/
H A Dqos.c73 uobj->object = pp_entry;
89 struct mlx5_ib_pp *pp_entry = uobject->object;
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dobject.h20 u64 object; member in struct:nvkm_object
77 struct nvkm_object *nvkm_object_search(struct nvkm_client *, u64 object,
/linux-master/drivers/infiniband/core/
H A Duverbs_std_types_counters.c42 struct ib_counters *counters = uobject->object;
78 uobj->object = counters;
/linux-master/drivers/gpu/drm/nouveau/include/nvif/
H A Doutp.h4 #include <nvif/object.h>
10 struct nvif_object object; member in struct:nvif_outp
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/engine/
H A Dfifo.h5 #include <core/object.h>
40 struct nvkm_gsp_object object; member in struct:nvkm_chan::__anon142
/linux-master/mm/
H A Dslab.h70 void *freelist; /* first free object */
274 void (*ctor)(void *object); /* Object constructor */
324 void *object = x - (x - slab_address(slab)) % cache->size; local
327 void *result = (unlikely(object > last_object)) ? last_object : object;
333 /* Determine object index from a given position */
509 extern void print_tracking(struct kmem_cache *s, void *object);
516 static inline void print_tracking(struct kmem_cache *s, void *object) argument
541 * slab_objcgs - get the object cgroups vector associated with a slab
544 * Returns a pointer to the object cgroup
[all...]

Completed in 263 milliseconds

1234567891011>>