Lines Matching full:buff
42 char buff[10];
56 sprintf(buff, "%08lX", (long)TotalBytes);
57 strncat(obuff, buff, (obuff_siz - 1) - strlen(obuff));
63 sprintf(buff, "%02X ", *(ibuff + i));
64 strncat(obuff, buff, (obuff_siz - 1) - strlen(obuff));
75 sprintf(buff, "%c",
77 strncat(obuff, buff, (obuff_siz - 1) - strlen(obuff));
86 char buff[10];
99 sprintf(buff, "%08lX ", (long)TotalBytes);
100 strncat(obuff, buff, (obuff_siz - 1) - strlen(obuff));
102 sprintf(buff, "%02X", *(ibuff + i));
103 strncat(obuff, buff, (obuff_siz - 1) - strlen(obuff));
109 int dump_data(FILE * stream, const char *buff, const size_t buff_siz,
115 buff_curr = (char *)buff;
180 char *buff;
183 if ((buff = (char *)ALLOC(args->htrsiz * BLK_SIZE)) == NULL) {
188 memset(buff, 0, args->htrsiz * BLK_SIZE);
195 FREE(buff);
202 FREE(buff);
208 NumBytes = Read(fd, buff, args->htrsiz * BLK_SIZE);
214 dump_data(stdout, buff, NumBytes, 16, 0, FMT_STR);
218 FREE(buff);