Lines Matching refs:comment
145 static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep) in comment__symbol() argument
152 *addrp = strtoull(comment, &endptr, 16); in comment__symbol()
236 char *s = strchr(ops->raw, ','), *target, *comment, prev; in mov__parse() local
249 comment = strchr(s, '#'); in mov__parse()
251 if (comment != NULL) in mov__parse()
252 s = comment - 1; in mov__parse()
268 if (comment == NULL) in mov__parse()
271 while (comment[0] != '\0' && isspace(comment[0])) in mov__parse()
272 ++comment; in mov__parse()
274 comment__symbol(ops->source.raw, comment, &ops->source.addr, &ops->source.name); in mov__parse()
275 comment__symbol(ops->target.raw, comment, &ops->target.addr, &ops->target.name); in mov__parse()
299 char *target, *comment, *s, prev; in dec__parse() local
314 comment = strchr(s, '#'); in dec__parse()
315 if (comment == NULL) in dec__parse()
318 while (comment[0] != '\0' && isspace(comment[0])) in dec__parse()
319 ++comment; in dec__parse()
321 comment__symbol(ops->target.raw, comment, &ops->target.addr, &ops->target.name); in dec__parse()