Searched refs:table_start (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/tnf/tnfdump/
H A Dtable.c39 static entry_t *table_start = NULL; /* start of table */ variable
53 if (table_start == NULL) {
55 table_start = malloc(table_size * sizeof (struct entry));
56 if (table_start == NULL)
61 temp = realloc(table_start, table_size * sizeof (struct entry));
64 table_start = temp;
91 table_start[table_cur++] = *element;
103 qsort(table_start, table_cur, sizeof (struct entry), &timecompare);
112 print_elem(&(table_start[i]));
120 return (&(table_start[
[all...]

Completed in 60 milliseconds