Home
last modified time | relevance | path

Searched refs:ind_size (Results 1 – 5 of 5) sorted by relevance

/dragonfly/usr.bin/indent/
H A Dindent.c185 ps.ind_size = 8; /* -i8 */ in main()
265 opt.continuation_indent = opt.ind_size; in main()
282 if (col > opt.ind_size) in main()
283 ps.ind_level = ps.i_l_follow = col / opt.ind_size; in main()
588 && ps.paren_indents[0] < 2 * opt.ind_size) in main()
589 ps.paren_indents[0] = 2 * opt.ind_size; in main()
1273 if ((ps.ind_level * opt.ind_size) % opt.tabsize != 0) { in indent_declaration()
1274 pos += (ps.ind_level * opt.ind_size) % opt.tabsize; in indent_declaration()
1275 cur_dec_ind += (ps.ind_level * opt.ind_size) % opt.tabsize; in indent_declaration()
H A Dio.c224 int target_col = opt.ind_size * ps.ind_level + 1; in compute_code_target()
229 (2 * opt.continuation_indent == opt.ind_size ? 1 : ps.paren_level); in compute_code_target()
254 ps.pcase ? (int) (case_ind * opt.ind_size) + 1 in compute_label_target()
256 : opt.ind_size * (ps.ind_level - label_offset) + 1; in compute_label_target()
H A Dindent_globs.h196 int ind_size; /* the size of one indentation level */ member
H A Dpr_comment.c121 ps.com_col = (ps.ind_level - opt.unindent_displace) * opt.ind_size + 1; in pr_comment()
H A Dargs.c120 {"i", PRO_INT, 8, 0, &opt.ind_size},