Home
last modified time | relevance | path

Searched refs:endpos (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/tools/smatch/src/
H A Dc2xml.c87 if (sym->endpos.type) { in new_sym_node()
88 newNumProp(node, "end-line", sym->endpos.line); in new_sym_node()
89 newNumProp(node, "end-col", sym->endpos.pos); in new_sym_node()
90 if (sym->pos.stream != sym->endpos.stream) in new_sym_node()
91 newProp(node, "end-file", stream_name(sym->endpos.stream)); in new_sym_node()
244 sym->endpos = *pos; in examine_macro()
246 sym->endpos = sym->pos; in examine_macro()
H A Dparse.c757 sym->endpos = token->pos; in struct_union_enum_specifier()
773 sym->endpos = token->pos; in struct_union_enum_specifier()
1003 sym->endpos = token->pos; in parse_enum_declaration()
1874 fn->endpos = token->pos; in direct_declarator()
1883 array->endpos = token->pos; in direct_declarator()
1985 decl->endpos = token->pos; in declaration_list()
2024 sym->endpos = token->pos; in parameter_declaration()
2039 sym->endpos = token->pos; in typename()
2611 sym->endpos = token->pos; in identifier_list()
3000 decl->endpos = token->pos; in external_declaration()
[all …]
H A Dexpression.c109 array->endpos = token->pos; in handle_func()
114 decl->endpos = token->pos; in handle_func()
H A Dsymbol.h143 struct position endpos; /* Where this symbol ends*/ member
H A Dsymbol.c82 sym->endpos.type = 0; in alloc_symbol()
/illumos-gate/usr/src/cmd/mandoc/
H A Dtbl_data.c50 int startpos, endpos; in getdata() local
152 endpos = *pos; in getdata()
156 while (endpos > startpos && p[endpos - 1] == ' ') in getdata()
157 endpos--; in getdata()
166 if (endpos - startpos == 2 && in getdata()
172 dat->string = mandoc_strndup(p + startpos, endpos - startpos); in getdata()
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dfsys_jfs.c233 int toread, startpos, endpos; in jfs_read() local
236 endpos = filepos + len; in jfs_read()
244 toread = (endofcur >= endpos) in jfs_read()
256 toread = ((offset << jfs.l2bsize) >= endpos) in jfs_read()
H A Dfsys_xfs.c492 int toread, startpos, endpos; in xfs_read() local
501 endpos = filepos + len; in xfs_read()
509 toread = (endofcur >= endpos) in xfs_read()
521 toread = ((offset << xfs.blklog) >= endpos) in xfs_read()