Lines Matching defs:size
38 #define STACK_ALLOC_ORDER 2 /* 'Slab' size order for stack depot, 4 pages */
63 u32 size; /* Number of frames in the stack */
104 static struct stack_record *depot_alloc_stack(unsigned long *entries, int size,
108 sizeof(unsigned long) * size;
135 stack->size = size;
139 memcpy(stack->entries, entries, size * sizeof(unsigned long));
155 static inline u32 hash_stack(unsigned long *entries, unsigned int size)
158 size * sizeof(unsigned long) / sizeof(u32),
179 unsigned long *entries, int size,
186 found->size == size &&
187 !stackdepot_memcmp(entries, found->entries, size))
222 return stack->size;