Lines Matching defs:base_len
67 static size_t base_len = PATH_MAX + 1; /* # of chars for base */
196 if ((base = (char *)calloc(base_len, sizeof (char))) == NULL) {
221 while (base_len < (strlen(argv[optind]) + 1)) {
222 base_len = base_len * 2;
223 if ((base = (char *)realloc(base, base_len *
234 if (base_len > name_len) {
235 name_len = base_len;
469 while ((offset + strlen(dp->d_name) + 2) > base_len) {
470 base_len = base_len * 2;
472 base_len * sizeof (char))) == NULL) {