Lines Matching refs:size
404 /* juggling array rotation algorithm (complexity O(N), size complexity O(1)) */
405 static void juggle_array(u32 **array, unsigned int size, unsigned int nr)
409 for (gcd_idx = 0; gcd_idx < gcd(nr, size); gcd_idx++) {
414 unsigned int src_idx = (dst_idx + nr) % size;
431 unsigned int size = bottom - top;
437 juggle_array(&uni_lines[top], size, size - nr);
440 juggle_array(&uni_lines[top], size, nr);
1004 /* ++Geert: vc->vc_sw->con_init determines console size */
1050 * Change # of rows and columns (0 means unchanged/the size of fg_console)
4586 int size;
4600 size = (op->width+7)/8 * vpitch * op->charcount;
4601 if (size > max_font_size)
4604 font.data = memdup_user(op->data, size);
4748 unsigned int rolled_over, void *base, unsigned int size)
4769 wrap = size;