Lines Matching full:cursor
142 char *cursor; in ver2str() local
156 cursor = buffer; in ver2str()
160 INSERT_INT(BCD_H(version->major), cursor, remaining) in ver2str()
161 INSERT_INT(BCD_L(version->major), cursor, remaining); in ver2str()
162 INSERT_CHAR('.', cursor, remaining); in ver2str()
165 INSERT_INT(BCD_H(version->minor), cursor, remaining); in ver2str()
166 INSERT_INT(BCD_L(version->minor), cursor, remaining); in ver2str()
169 INSERT_CHAR('.', cursor, remaining); in ver2str()
171 INSERT_INT(BCD_H(version->update), cursor, remaining); in ver2str()
172 INSERT_INT(BCD_L(version->update), cursor, remaining); in ver2str()
176 INSERT_CHAR(version->alpha, cursor, remaining); in ver2str()
178 *cursor = '\0'; in ver2str()