Searched refs:endpos (Results 1 – 8 of 8) sorted by relevance
/illumos-gate/usr/src/tools/smatch/src/ |
H A D | c2xml.c | 87 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 D | parse.c | 757 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() 1067 typeof_sym->endpos = token->pos; in typeof_specifier() 1874 fn->endpos = token->pos; in direct_declarator() 1883 array->endpos = token->pos; in direct_declarator() 1904 ctx->ctype.base_type->endpos = token->pos; in pointer() 1959 bitfield->endpos = token->pos; in handle_bitfield() 1985 decl->endpos = token->pos; in declaration_list() 2024 sym->endpos = token->pos; in parameter_declaration() [all …]
|
H A D | expression.c | 109 array->endpos = token->pos; in handle_func() 114 decl->endpos = token->pos; in handle_func()
|
H A D | symbol.h | 143 struct position endpos; /* Where this symbol ends*/ member
|
H A D | symbol.c | 82 sym->endpos.type = 0; in alloc_symbol()
|
/illumos-gate/usr/src/cmd/mandoc/ |
H A D | tbl_data.c | 50 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 D | fsys_jfs.c | 233 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 D | fsys_xfs.c | 492 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()
|