Lines Matching defs:id
1 /* ldbuildid.c - Build Id support routines
56 /* ID is in string form (hex). Count the bytes. */
57 const char *id = style + 2;
61 if (ISXDIGIT (id[0]) && ISXDIGIT (id[1]))
64 id += 2;
66 else if (*id == '-' || *id == ':')
67 ++id;
73 } while (*id != '\0');
137 /* ID is in string form (hex). Convert to bits. */
138 const char *id = style + 2;
143 if (ISXDIGIT (id[0]) && ISXDIGIT (id[1]))
145 id_bits[n] = read_hex (*id++) << 4;
146 id_bits[n++] |= read_hex (*id++);
148 else if (*id == '-' || *id == ':')
149 ++id;
152 } while (*id != '\0');