Lines Matching refs:size
62 u32 size; /* Number of frames in the stack */ member
99 static struct stack_record *depot_alloc_stack(unsigned long *entries, int size, in depot_alloc_stack() argument
103 sizeof(unsigned long) * size; in depot_alloc_stack()
130 stack->size = size; in depot_alloc_stack()
134 memcpy(stack->entries, entries, size * sizeof(unsigned long)); in depot_alloc_stack()
150 static inline u32 hash_stack(unsigned long *entries, unsigned int size) in hash_stack() argument
153 size * sizeof(unsigned long) / sizeof(u32), in hash_stack()
174 unsigned long *entries, int size, in find_stack() argument
181 found->size == size && in find_stack()
182 !stackdepot_memcmp(entries, found->entries, size)) in find_stack()
206 return stack->size; in stack_depot_fetch()