Lines Matching defs:comment
321 * Prevents from matching commas in the comment section, e.g.:
475 static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep)
482 *addrp = strtoull(comment, &endptr, 16);
483 if (endptr == comment)
594 char *s = strchr(ops->raw, ','), *target, *comment, prev;
622 comment = strchr(s, arch->objdump.comment_char);
624 if (comment != NULL)
625 s = comment - 1;
643 if (comment == NULL)
646 comment = skip_spaces(comment);
647 comment__symbol(ops->source.raw, comment + 1, &ops->source.addr, &ops->source.name);
648 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name);
674 char *target, *comment, *s, prev;
689 comment = strchr(s, arch->objdump.comment_char);
690 if (comment == NULL)
693 comment = skip_spaces(comment);
694 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name);