Lines Matching defs:size
45 int left_free; /* size of free space along
47 int right_free; /* size of free space along
56 size_t max_alloc_size; /* largest allocation size */
108 * pcpu_nr_pages_to_map_bits - converts the pages to size of bitmap
120 * pcpu_chunk_map_bits - helper to convert nr_pages to size of bitmap
173 size_t min_alloc_size; /* min allocaiton size */
174 size_t max_alloc_size; /* max allocation size */
194 * @size: size of area to allocate in bytes
199 static inline void pcpu_stats_area_alloc(struct pcpu_chunk *chunk, size_t size)
208 min(pcpu_stats.min_alloc_size, size);
210 max(pcpu_stats.max_alloc_size, size);
213 chunk->max_alloc_size = max(chunk->max_alloc_size, size);
267 static inline void pcpu_stats_area_alloc(struct pcpu_chunk *chunk, size_t size)