Home
last modified time | relevance | path

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

/openbmc/linux/fs/btrfs/
H A Dcompression.c1132 static void radix_sort(struct bucket_item *array, struct bucket_item *array_buf, in radix_sort() argument
1176 array_buf[new_addr] = array[i]; in radix_sort()
1190 buf_num = array_buf[i].count; in radix_sort()
1199 buf_num = array_buf[i].count; in radix_sort()
1203 array[new_addr] = array_buf[i]; in radix_sort()
/openbmc/linux/drivers/media/v4l2-core/
H A Dv4l2-ioctl.c3338 void *mbuf = NULL, *array_buf = NULL; in video_usercopy() local
3373 array_buf = kvmalloc(array_size, GFP_KERNEL); in video_usercopy()
3375 if (array_buf == NULL) in video_usercopy()
3378 err = v4l2_compat_get_array_args(file, array_buf, in video_usercopy()
3382 err = copy_from_user(array_buf, user_ptr, array_size) ? in video_usercopy()
3386 *kernel_ptr = array_buf; in video_usercopy()
3423 array_buf, in video_usercopy()
3428 } else if (copy_to_user(user_ptr, array_buf, array_size)) { in video_usercopy()
3436 kvfree(array_buf); in video_usercopy()