Home | History | Annotate | Download | only in disktest

Lines Matching refs:iBytes

38 int format_str(size_t iBytes, const char *ibuff, size_t ibuff_siz, char *obuff,
45 if ((iBytes == 0) &&
52 if ((ibuff == NULL) || (obuff == NULL) || (iBytes < 1))
58 for (i = 0; i < iBytes; i++) {
74 for (i = 0; i < iBytes; i++) {
79 TotalBytes += iBytes;
83 int format_raw(size_t iBytes, const char *ibuff, char *obuff, size_t obuff_siz)
89 if ((iBytes == 0) && (ibuff == NULL) &&
95 if ((ibuff == NULL) || (obuff == NULL) || (iBytes < 1))
101 for (i = 0; i < iBytes; i++) {
105 TotalBytes += iBytes;