Lines Matching refs:buff
90 char buff[250]; in compute_filenames() local
99 buff[j] = 'a' + (j % 26); in compute_filenames()
100 buff[j--] = '\0'; in compute_filenames()
102 buff[j--] = '0' + (i % 10); in compute_filenames()
104 buff[j--] = '0' + ((i / 10) % 10); in compute_filenames()
106 buff[j--] = '0' + (char)(i / 100); in compute_filenames()
108 buff[j] = '_'; in compute_filenames()
110 assertEqualInt(strlen(buff), i); in compute_filenames()
111 filenames[i] = strdup(buff); in compute_filenames()
118 char buff[260]; in create_tree() local
144 snprintf(buff, sizeof(buff), "f/%s", filenames[i]); in create_tree()
145 assertMakeFile(buff, 0777, buff); in create_tree()
149 assertMakeHardlink(buff2, buff); in create_tree()
153 assertMakeHardlink(buff2, buff); in create_tree()
157 snprintf(buff, sizeof(buff), "s/%s", filenames[i]); in create_tree()
159 failure("buff=\"%s\" buff2=\"%s\"", buff, buff2); in create_tree()
160 assertMakeSymlink(buff, buff2, 0); in create_tree()
163 buff[0] = 'd'; in create_tree()
164 failure("buff=\"%s\"", buff); in create_tree()
165 assertMakeDir(buff, 0775); in create_tree()