Home
last modified time | relevance | path

Searched refs:xrec_size (Results 1 – 1 of 1) sorted by relevance

/titanic_41/usr/src/cmd/tar/
H A Dtar.c638 static size_t xrec_size = 8 * PATH_MAX; /* extended rec initial size */ variable
970 if ((xrec_ptr = malloc(xrec_size)) == NULL) { in main()
6834 if (bufneeded >= xrec_size) { in get_xdata()
6836 xrec_size = bufneeded + 1; in get_xdata()
6837 if ((xrec_ptr = malloc(xrec_size)) == NULL) in get_xdata()
6851 length = xrec_size; in get_xdata()
7028 if (xrec_offset + len > xrec_size) { in gen_num()
7029 if (((curr_ptr = realloc(xrec_ptr, 2 * xrec_size)) == NULL)) in gen_num()
7033 xrec_size *= 2; in gen_num()
7067 if (xrec_offset + len > xrec_size) { in gen_date()
[all …]