Home
last modified time | relevance | path

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

/freebsd/usr.bin/indent/
H A Dio.c226 int target_col = opt.ind_size * ps.ind_level + 1; in compute_code_target()
231 (2 * opt.continuation_indent == opt.ind_size ? 1 : ps.paren_level); in compute_code_target()
256 ps.pcase ? (int) (case_ind * opt.ind_size) + 1 in compute_label_target()
258 : opt.ind_size * (ps.ind_level - label_offset) + 1; in compute_label_target()
H A Dindent.c190 ps.ind_size = 8; /* -i8 */ in main()
280 opt.continuation_indent = opt.ind_size; in main()
297 if (col > opt.ind_size) in main()
298 ps.ind_level = ps.i_l_follow = col / opt.ind_size; in main()
602 && ps.paren_indents[0] < 2 * opt.ind_size) in main()
603 ps.paren_indents[0] = 2 * opt.ind_size; in main()
1287 if ((ps.ind_level * opt.ind_size) % opt.tabsize != 0) { in indent_declaration()
1288 pos += (ps.ind_level * opt.ind_size) % opt.tabsize; in indent_declaration()
1289 cur_dec_ind += (ps.ind_level * opt.ind_size) % opt.tabsize; in indent_declaration()
H A Dindent_globs.h193 int ind_size; /* the size of one indentation level */ member
H A Dpr_comment.c123 ps.com_col = (ps.ind_level - opt.unindent_displace) * opt.ind_size + 1; in pr_comment()
H A Dargs.c122 {"i", PRO_INT, 8, 0, &opt.ind_size},