Lines Matching refs:size
38 FILE *stream, const unsigned char *ptr, size_t size,
93 char *data, size_t size,
161 if(size > 0) {
164 for(i = 0; i < size - 1; i++) {
178 newl = (size && (data[size - 1] != '\n')) ? TRUE : FALSE;
185 (void)fwrite(data, size, 1, output);
186 newl = (size && (data[size - 1] != '\n')) ? TRUE : FALSE;
202 fprintf(output, "[%zu bytes data]\n", size);
219 fprintf(output, "%s%s== Info: %.*s", timebuf, idsbuf, (int)size, data);
244 dump(timebuf, idsbuf, text, output, (unsigned char *) data, size,
250 FILE *stream, const unsigned char *ptr, size_t size,
263 text, size, size);
265 for(i = 0; i < size; i += width) {
272 if(i + c < size)
278 for(c = 0; (c < width) && (i + c < size); c++) {
281 (i + c + 1 < size) && (ptr[i + c] == 0x0D) &&
291 (i + c + 2 < size) && (ptr[i + c + 1] == 0x0D) &&