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