Lines Matching defs:array
1140 * ran out of room in the pages array or because we cross the
1169 * pages_in is an array of pages with compressed data.
1171 * disk_start is the starting logical offset of this array in the file
1393 * Use 16 u32 counters for calculating new position in buf array
1395 * @array - array that will be sorted
1396 * @array_buf - buffer array to store sorting results
1397 * must be equal in size to @array
1398 * @num - array size
1400 static void radix_sort(struct bucket_item *array, struct bucket_item *array_buf,
1414 * counters. Example: 48 33 4 ... in 64bit array
1416 max_num = array[0].count;
1418 buf_num = array[i].count;
1431 buf_num = array[i].count;
1440 buf_num = array[i].count;
1444 array_buf[new_addr] = array[i];
1450 * Normal radix expects to move data from a temporary array, to
1452 * by doing another sort iteration to original array instead of
1471 array[new_addr] = array_buf[i];