Lines Matching defs:order
1383 int order;
1444 /* Then compute the page order for said goal */
1445 order = get_order(goal);
1447 /* Now compute the required page order for the maximum sized table we
1453 /* Limit the page order by that maximum hash table size */
1454 order = min(order, max_entry_order);
1471 * Note that order is initalized to start at the max sized
1473 * reduce the order and try again
1477 __get_free_pages(GFP_KERNEL | __GFP_NOWARN, order);
1478 } while (!sctp_port_hashtable && --order > 0);
1489 num_entries = (1UL << order) * PAGE_SIZE /