Searched refs:array_buf (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | compression.c | 1396 * @array_buf - buffer array to store sorting results 1400 static void radix_sort(struct bucket_item *array, struct bucket_item *array_buf, in radix_sort() argument 1444 array_buf[new_addr] = array[i]; in radix_sort() 1458 buf_num = array_buf[i].count; in radix_sort() 1467 buf_num = array_buf[i].count; in radix_sort() 1471 array[new_addr] = array_buf[i]; in radix_sort()
|
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | compression.c | 1128 * @array_buf - buffer array to store sorting results 1132 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()
|
/kernel/linux/linux-6.6/drivers/media/v4l2-core/ |
H A D | v4l2-ioctl.c | 3337 void *mbuf = NULL, *array_buf = NULL; in video_usercopy() local 3372 array_buf = kvmalloc(array_size, GFP_KERNEL); in video_usercopy() 3374 if (array_buf == NULL) in video_usercopy() 3377 err = v4l2_compat_get_array_args(file, array_buf, in video_usercopy() 3381 err = copy_from_user(array_buf, user_ptr, array_size) ? in video_usercopy() 3385 *kernel_ptr = array_buf; in video_usercopy() 3422 array_buf, in video_usercopy() 3427 } else if (copy_to_user(user_ptr, array_buf, array_size)) { in video_usercopy() 3435 kvfree(array_buf); in video_usercopy()
|
/kernel/linux/linux-5.10/drivers/media/v4l2-core/ |
H A D | v4l2-ioctl.c | 3277 void *mbuf = NULL, *array_buf = NULL; in video_usercopy() local 3312 array_buf = kvmalloc(array_size, GFP_KERNEL); in video_usercopy() 3314 if (array_buf == NULL) in video_usercopy() 3317 if (copy_from_user(array_buf, user_ptr, array_size)) in video_usercopy() 3319 *kernel_ptr = array_buf; in video_usercopy() 3338 if (copy_to_user(user_ptr, array_buf, array_size)) in video_usercopy() 3353 kvfree(array_buf); in video_usercopy()
|
Completed in 16 milliseconds