Lines Matching defs:boundary
48 size_t boundary;
113 * @boundary: returned blocks won't cross this power of two boundary
122 * If @boundary is nonzero, objects returned from dma_pool_alloc() won't
123 * cross that size boundary. This is useful for devices which have
131 size_t size, size_t align, size_t boundary)
150 if (!boundary)
151 boundary = allocation;
152 else if ((boundary < size) || (boundary & (boundary - 1)))
166 retval->boundary = boundary;
206 unsigned int next_boundary = pool->boundary;
212 next_boundary += pool->boundary;
490 * @allocation: returned blocks won't cross this boundary (or zero)