Home
last modified time | relevance | path

Searched refs:args_size (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/gpu/drm/nouveau/nvif/
H A Dobject.c107 u32 args_size; in nvif_object_mthd() local
111 if (check_add_overflow(sizeof(*args), size, &args_size)) in nvif_object_mthd()
114 if (args_size > sizeof(stack)) { in nvif_object_mthd()
115 args = kmalloc(args_size, GFP_KERNEL); in nvif_object_mthd()
127 ret = nvif_object_ioctl(object, args, args_size, NULL); in nvif_object_mthd()
246 u32 args_size; in nvif_object_ctor() local
248 if (check_add_overflow(sizeof(*args), size, &args_size)) { in nvif_object_ctor()
253 args = kmalloc(args_size, GFP_KERNEL); in nvif_object_ctor()
269 ret = nvif_object_ioctl(parent, args, args_size, &object->priv); in nvif_object_ctor()
/linux/tools/perf/
H A Dbuiltin-trace.c1447 * args_size: sum of the sizes of the syscall arguments, anything after that is augmented stuff: pathname for openat, etc.
1453 int args_size; member
2060 sc->args_size = last_field->offset + last_field->size; in syscall__set_arg_fmts()
2590 * sc->args_size but always after the full raw_syscalls:sys_enter payload,
2593 * We'll revisit this later to pass s->args_size to the BPF augmenter
2599 int args_size = raw_augmented_args_size ?: sc->args_size; local
2601 *augmented_args_size = sample->raw_size - args_size;
2603 augmented_args = sample->raw_data + args_size;
2654 * syscall->args_size usin
[all...]