Home | History | Annotate | Download | only in progs

Lines Matching defs:size

76 	int	size;
87 size = random() & (DATA_SIZE-1);
89 write(fd, data_buffer, size);
90 printf("Created temp file %s, fd = %d, size=%d\n",
91 template, fd, size);
103 int size;
105 size = random() & (DATA_SIZE-1);
110 ftruncate(fd, size);
111 printf("Truncating temp file %s, fd = %d, ino=%u, size=%d\n",
112 state_array[fd].name, fd, get_inode_num(fd), size);