Lines Matching refs:ret
91 struct flex_array *ret; in flex_array_alloc() local
105 ret = kzalloc(sizeof(struct flex_array), flags); in flex_array_alloc()
106 if (!ret) in flex_array_alloc()
108 ret->element_size = element_size; in flex_array_alloc()
109 ret->total_nr_elements = total; in flex_array_alloc()
110 ret->elems_per_part = elems_per_part; in flex_array_alloc()
111 ret->reciprocal_elems = reciprocal_elems; in flex_array_alloc()
112 if (elements_fit_in_base(ret) && !(flags & __GFP_ZERO)) in flex_array_alloc()
113 memset(&ret->parts[0], FLEX_ARRAY_FREE, in flex_array_alloc()
115 return ret; in flex_array_alloc()
380 int ret = 0; in flex_array_shrink() local
385 return ret; in flex_array_shrink()
393 ret++; in flex_array_shrink()
396 return ret; in flex_array_shrink()