Home | History | Annotate | Download | only in linker

Lines Matching defs:order

37 #define BA_ORDER(index) ba->bitmap[index].order
68 /* find a slots buddy Buddy# = Slot# ^ (1 << order)
104 unsigned long order = ba_order(ba, len);
106 if (order > ba->max_order)
110 * if you find a free slot of the correct order use it
111 * otherwise, use the best fit (smallest with size > order) slot
115 if (BA_ORDER(curr) == (unsigned char)order) {
120 if (BA_ORDER(curr) > (unsigned char)order &&
135 * split the slot into 2 buddies of order - 1
136 * repeat until the slot is of the correct order
138 while (BA_ORDER(best_fit) > (unsigned char)order) {