Home | History | Annotate | Download | only in tools

Lines Matching refs:byte_count

311 	unsigned byte_count;
338 tag->data[info->byte_count] = strtol(buf, NULL, 16);
340 info->byte_count++;
343 tag->data[info->byte_count] = strtol(buf, NULL, 16);
345 info->byte_count++;
365 int16_t byte_count = 0;
406 byte_count = read_data_in_section(ptr, format);
407 if (byte_count > PS_MAX_LEN)
410 tag->len = byte_count;
411 tag->data = (uint8_t *)malloc(byte_count);
426 read_count = (byte_count > ENTRY_PER_LINE) ?
427 ENTRY_PER_LINE : byte_count;
435 if (byte_count > ENTRY_PER_LINE)
436 byte_count -= ENTRY_PER_LINE;
438 byte_count = 0;
443 if (byte_count == 0)