Lines Matching refs:buff
42 char *buff = malloc(buff_size);
43 char *p = buff;
47 assert(buff != NULL);
56 while (p + 500 < buff + buff_size) {
61 buff[0] = ((n / 1000) % 10) + '0';
62 buff[1] = ((n / 100) % 10)+ '0';
63 buff[2] = ((n / 10) % 10)+ '0';
64 buff[3] = ((n / 1) % 10)+ '0';
65 buff[4] = '_';
70 archive_entry_copy_pathname(ae, buff);
77 snprintf(p, buff_size - (p - buff), "target%d", n);
81 archive_entry_copy_pathname(ae, buff);
86 failure("Attempt to create target%d via %d-character symlink should have failed", n, (int)strlen(buff));
92 free(buff);