Lines Matching refs:size
46 * size_t size;
53 * res->data = kmalloc(params->size, params->gfp);
66 * void *kunit_kmalloc(struct kunit *test, size_t size, gfp_t gfp)
70 * params.size = size;
552 * @size: The size in bytes of the desired memory.
559 void *kunit_kmalloc(struct kunit *test, size_t size, gfp_t gfp);
571 * @size: The size in bytes of the desired memory.
576 static inline void *kunit_kzalloc(struct kunit *test, size_t size, gfp_t gfp)
578 return kunit_kmalloc(test, size, gfp | __GFP_ZERO);