Searched refs:crc_off (Results 1 – 1 of 1) sorted by relevance
1620 int crc_off; in add_gnu_debuglink() local1652 crc_off = roundup(strlen(fnbase) + 1, 4); in add_gnu_debuglink()1653 sa->size = crc_off + 4; in add_gnu_debuglink()1660 sa->content[crc_off] = crc & 0xFF; in add_gnu_debuglink()1661 sa->content[crc_off + 1] = (crc >> 8) & 0xFF; in add_gnu_debuglink()1662 sa->content[crc_off + 2] = (crc >> 16) & 0xFF; in add_gnu_debuglink()1663 sa->content[crc_off + 3] = crc >> 24; in add_gnu_debuglink()1665 sa->content[crc_off] = crc >> 24; in add_gnu_debuglink()1666 sa->content[crc_off + 1] = (crc >> 16) & 0xFF; in add_gnu_debuglink()1667 sa->content[crc_off + 2] = (crc >> 8) & 0xFF; in add_gnu_debuglink()[all …]