Lines Matching refs:xrec_size
633 static size_t xrec_size = 8 * PATH_MAX; /* extended rec initial size */
970 if ((xrec_ptr = malloc(xrec_size)) == NULL) {
6877 if (bufneeded >= xrec_size) {
6879 xrec_size = bufneeded + 1;
6880 if ((xrec_ptr = malloc(xrec_size)) == NULL)
6894 length = xrec_size;
7071 if (xrec_offset + len > xrec_size) {
7072 if (((curr_ptr = realloc(xrec_ptr, 2 * xrec_size)) == NULL))
7076 xrec_size *= 2;
7110 if (xrec_offset + len > xrec_size) {
7111 if (((curr_ptr = realloc(xrec_ptr, 2 * xrec_size)) == NULL))
7115 xrec_size *= 2;
7150 if (xrec_offset + len > xrec_size) {
7151 if (((curr_ptr = realloc(xrec_ptr, 2 * xrec_size)) == NULL))
7155 xrec_size *= 2;