Lines Matching defs:max
1269 slab_err(s, slab, "objects %u > max %u",
1274 slab_err(s, slab, "inuse %u > max %u",
4122 for (order = max(min_order, (unsigned int)get_order(min_objects * size));
5102 s->object_size = max(s->object_size, size);
5103 s->inuse = max(s->inuse, ALIGN(size, sizeof(void *)));
5245 unsigned long max;
5255 if (t->max)
5257 get_order(sizeof(struct location) * t->max));
5260 static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
5265 order = get_order(sizeof(struct location) * max);
5275 t->max = max;
5348 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))