Lines Matching refs:sz
47 size_t sz; member
99 size_t sz; member
111 size_t sz, new_sz; in thread_stack__grow() local
113 new_sz = ts->sz + STACK_GROWTH; in thread_stack__grow()
114 sz = new_sz * sizeof(struct thread_stack_entry); in thread_stack__grow()
116 new_stack = realloc(ts->stack, sz); in thread_stack__grow()
121 ts->sz = new_sz; in thread_stack__grow()
153 if (ts->cnt == ts->sz) { in thread_stack__push()
315 size_t sz, u64 ip) in thread_stack__sample() argument
322 chain->nr = min(sz, thread->ts->cnt + 1); in thread_stack__sample()
374 if (cpr->next < cpr->sz) { in call_path__new()
382 cpr->sz += CALL_PATH_BLOCK_SIZE; in call_path__new()
468 if (ts->cnt == ts->sz) { in thread_stack__push_cp()