Lines Matching defs:tmp
324 struct evsel_config_term *pos, *tmp;
327 tmp = malloc(sizeof(*tmp));
328 if (tmp == NULL)
331 *tmp = *pos;
332 if (tmp->free_str) {
333 tmp->val.str = strdup(pos->val.str);
334 if (tmp->val.str == NULL) {
335 free(tmp);
339 list_add_tail(&tmp->list, dst);
1503 struct perf_counts_values tmp;
1508 tmp = *perf_counts(evsel->prev_raw_counts, cpu_map_idx, thread);
1511 count->val = count->val - tmp.val;
1512 count->ena = count->ena - tmp.ena;
1513 count->run = count->run - tmp.run;