Searched refs:indent (Results 1 - 25 of 116) sorted by relevance

12345

/haiku-buildtools/libtool/depdemo/l2/
H A Dl2.c28 func_l2(indent)
29 int indent;
33 for (i = 0; i < indent; i++)
36 func_l1(indent+1);
/haiku-buildtools/libtool/depdemo/l3/
H A Dl3.c29 func_l3(indent)
30 int indent;
34 for (i = 0; i < indent; i++)
37 func_l1(indent+1);
38 func_l2(indent+1);
/haiku-buildtools/libtool/depdemo/l4/
H A Dl4.c32 func_l4(indent)
33 int indent;
37 for (i = 0; i < indent; i++)
40 func_l3(indent+1);
41 for (i = 0; i <= indent; i++)
/haiku-buildtools/libtool/depdemo/l1/
H A Dl1.c26 func_l1(indent)
27 int indent;
31 for (i = 0; i < indent; i++)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr57287.c12 void enumerate_locals (int indent) argument
15 while (indent--)
17 int local_indent = 8 + (8 * indent);
/haiku-buildtools/legacy/binutils/gas/
H A Ddebug.c50 dmp_frag (fp, indent)
52 char *indent;
56 printf ("%sFRAGMENT @ 0x%x\n", indent, fp);
60 printf ("%srs_align(%d)\n", indent, fp->fr_offset);
63 printf ("%srs_fill(%d)\n", indent, fp->fr_offset);
64 printf ("%s", indent);
66 printf ("%s\t repeated %d times,", indent, fp->fr_offset);
70 printf ("%srs_org(%d+sym @0x%x)\n", indent,
72 printf ("%sfill with ", indent);
77 printf ("%smachine_dep\n", indent);
[all...]
/haiku-buildtools/binutils/gas/
H A Ddebug.c51 dmp_frag (fp, indent)
53 char *indent;
57 printf ("%sFRAGMENT @ 0x%x\n", indent, fp);
61 printf ("%srs_align(%d)\n", indent, fp->fr_offset);
64 printf ("%srs_fill(%d)\n", indent, fp->fr_offset);
65 printf ("%s", indent);
67 printf ("%s\t repeated %d times,", indent, fp->fr_offset);
71 printf ("%srs_org(%d+sym @0x%x)\n", indent,
73 printf ("%sfill with ", indent);
78 printf ("%smachine_dep\n", indent);
[all...]
/haiku-buildtools/gcc/gcc/cp/
H A Dptree.c40 cxx_print_decl (FILE *file, tree node, int indent) argument
46 indent_to (file, indent + 3);
59 indent_to (file, indent + 3);
64 indent_to (file, indent + 3);
69 indent_to (file, indent + 3);
83 cxx_print_type (FILE *file, tree node, int indent) argument
90 indent_to (file, indent + 3);
99 print_node (file, "throws", TYPE_RAISES_EXCEPTIONS (node), indent + 4);
107 print_node (file, "expr", DECLTYPE_TYPE_EXPR (node), indent + 4);
112 indent
190 cxx_print_identifier(FILE *file, tree node, int indent) argument
207 cxx_print_lambda_node(FILE *file, tree node, int indent) argument
235 cxx_print_xnode(FILE *file, tree node, int indent) argument
[all...]
/haiku-buildtools/legacy/gcc/gcc/cp/
H A Dptree.c29 print_lang_decl (file, node, indent)
32 int indent;
40 indent_to (file, indent + 3);
45 indent_to (file, indent + 3);
64 print_lang_type (file, node, indent)
67 int indent;
72 indent_to (file, indent + 3);
85 indent_to (file, indent + 3);
132 indent + 4);
137 print_lang_identifier (file, node, indent)
[all...]
/haiku-buildtools/legacy/gcc/gcc/config/i386/
H A Ddgux.c37 output_option (file, sep, type, name, indent, pos, max)
42 char *indent;
48 fprintf (file, indent);
58 pos, max, sep, indent, term)
65 char *indent;
71 pos = output_option (file, sep, "-O", "", indent, pos, max);
73 pos = output_option (file, sep, "-g", "", indent, pos, max);
75 pos = output_option (file, sep, "-traditional", "", indent, pos, max);*/
77 pos = output_option (file, sep, "-p", "", indent, pos, max);
79 pos = output_option (file, sep, "-a", "", indent, po
128 char indent[256]; local
[all...]
/haiku-buildtools/legacy/gcc/gcc/
H A Dprint-tree.c65 print_node_brief (file, prefix, node, indent)
69 int indent;
80 if (indent > 0)
166 /* Since this is the long way, indent to desired column. */
178 print_node (file, prefix, node, indent)
182 int indent;
201 if (indent > 24)
203 print_node_brief (file, prefix, node, indent);
207 if (indent > 8 && (class == 't' || class == 'd'))
209 print_node_brief (file, prefix, node, indent);
[all...]
H A Dprint-rtl.c52 static int indent; variable
82 (xspaces + (sizeof xspaces - 1 - indent * 2)));
102 indent = 0;
165 indent += 2;
169 indent -= 2;
194 indent += 2;
198 indent -= 2;
203 indent += 2;
207 (xspaces + (sizeof xspaces - 1 - indent * 2)));
213 indent
[all...]
/haiku-buildtools/cloog/include/cloog/
H A Dpprint.h60 void clast_pprint(FILE *foo, struct clast_stmt *root, int indent,
/haiku-buildtools/isl/
H A Disl_printer_private.h12 int indent; member in struct:isl_printer
H A Disl_printer.c6 fprintf(p->file, "%*s%s", p->indent, "", p->prefix ? p->prefix : "");
84 int indent)
88 if (p->buf_n + indent + 1 >= p->buf_size && grow_buf(p, indent))
90 for (i = 0; i < indent; ++i)
100 p = str_print_indent(p, p->indent);
221 p->indent = 0;
245 p->indent = 0;
295 int indent)
300 p->indent
83 str_print_indent(__isl_take isl_printer *p, int indent) argument
294 isl_printer_set_indent(__isl_take isl_printer *p, int indent) argument
305 isl_printer_indent(__isl_take isl_printer *p, int indent) argument
[all...]
/haiku-buildtools/gcc/gcc/
H A Dprint-tree.c84 print_node_brief (FILE *file, const char *prefix, const_tree node, int indent) argument
95 if (indent > 0)
189 /* Since this is the long way, indent to desired column. */
201 print_node (FILE *file, const char *prefix, tree node, int indent)
222 if (indent > 24)
224 print_node_brief (file, prefix, node, indent);
228 if (indent > 8 && (tclass == tcc_type || tclass == tcc_declaration))
230 print_node_brief (file, prefix, node, indent);
237 print_node_brief (file, prefix, node, indent);
250 print_node_brief (file, prefix, node, indent);
200 print_node(FILE *file, const char *prefix, tree node, int indent) argument
[all...]
H A Dplugin.h38 extern void print_plugins_versions (FILE *file, const char *indent);
39 extern void print_plugins_help (FILE *file, const char *indent);
H A Dgengtype.c92 static void dump_pair (int indent, pair_p p);
93 static void dump_type (int indent, type_p p);
94 static void dump_type_list (int indent, type_p p);
2472 int indent;
2653 oprintf (d->of, "%*scase %s:\n", d->indent, "", type_tag);
2654 d->indent += 2;
2655 oprintf (d->of, "%*s{\n", d->indent, "");
2656 d->indent += 2;
2658 d->indent, "", sub->u.s.tag, sub->u.s.tag);
2663 d->indent
2464 int indent; member in struct:walk_type_data
4753 dump_typekind(int indent, enum typekind kind) argument
4794 dump_gc_used(int indent, enum gc_used_enum gc_used) argument
4820 dump_options(int indent, options_p opt) argument
4850 dump_fileloc(int indent, struct fileloc line) argument
4861 dump_type_u_s(int indent, type_p t) argument
4888 dump_type_u_a(int indent, type_p t) argument
4898 dump_type_list(int indent, type_p t) argument
4913 dump_type(int indent, type_p t) argument
4964 dump_pair(int indent, pair_p p) argument
[all...]
H A Dprint-rtl.c64 static int indent; variable
117 fprintf (outfile, "\n%s%*s", print_rtx_head, indent * 2, "");
130 print_rtx_head, indent * 2, "");
313 fprintf (outfile, "\n%s%*s -> ", print_rtx_head, indent * 2, "");
336 indent += 2;
340 indent -= 2;
347 indent += 2;
351 print_rtx_head, indent * 2, "");
362 indent -= 2;
367 indent
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/
H A Dbug237.go11 var indent uint = 10 var
16 i := 2 * indent
/haiku-buildtools/legacy/gcc/gcc/f/
H A Dfini.c230 void testname (bool nested, int indent, name first, name last);
231 void testnames (bool nested, int indent, int len, name first, name last);
631 testname (bool nested, int indent, name first, name last) argument
638 assert (!nested || indent >= 2);
639 assert (((size_t) indent) + 4 < ARRAY_SIZE (xspaces));
657 xspaces[indent - 2]);
664 xspaces[indent], nhalf->name_uc, nhalf->name_lc, nhalf->name_ic,
665 xspaces[indent + 2], prefix, nhalf->kwname, postfix);
673 xspaces[indent]);
680 xspaces[indent
705 testnames(bool nested, int indent, int len, name first, name last) argument
[all...]
/haiku-buildtools/cloog/osl/source/extensions/
H A Dcoordinates.c125 fprintf(file, "Indentation: %d\n", coordinates->indent);
173 sprintf(buffer, "# Indentation\n%d\n", coordinates->indent);
220 coordinates->indent = osl_util_read_int(NULL, input);
246 coordinates->indent = OSL_UNDEFINED;
288 clone->indent = coordinates->indent;
319 if (c1->indent != c2->indent) {
/haiku-buildtools/cloog/osl/include/osl/extensions/
H A Dcoordinates.h88 int indent; /**< Indentation (number of spaces starting each line). */ member in struct:osl_coordinates
/haiku-buildtools/cloog/source/
H A Dpprint.c80 static void pprint_guard(struct cloogoptions *options, FILE *dst, int indent,
82 static void pprint_for(struct cloogoptions *options, FILE *dst, int indent,
84 static void pprint_stmt_list(struct cloogoptions *options, FILE *dst, int indent,
368 void pprint_guard(struct cloogoptions *options, FILE *dst, int indent, argument
396 pprint_stmt_list(options, dst, indent + INDENT_STEP, g->then);
398 fprintf(dst, "%*s", indent, "");
405 void pprint_for(struct cloogoptions *options, FILE *dst, int indent, argument
416 fprintf(dst, "%*s", indent, "");
428 fprintf(dst, "%*s", indent, "");
438 fprintf(dst, "%*s", indent, "");
534 pprint_stmt_list(struct cloogoptions *options, FILE *dst, int indent, struct clast_stmt *s) argument
569 clast_pprint(FILE *foo, struct clast_stmt *root, int indent, CloogOptions *options) argument
[all...]
/haiku-buildtools/gcc/gcc/config/arm/
H A Darm-ldmstm.ml74 let indent = " " in
75 Printf.printf "%s" (if first then " [" else indent);
77 Printf.printf "%s (mem:SI " indent;
80 begin if offset != 0 then Printf.printf "\n%s (const_int %d))" indent offset end;
84 let indent = " " in
85 Printf.printf "%s" (if first then " [" else indent);
90 Printf.printf ")\n%s (match_operand:SI %d \"%s\" \"\"))" indent opnr (reg_predicate thumb)
93 let indent = " " ^ extra_indent in
94 Printf.printf "%s" (if first then extra_indent ^ " [" else indent);
96 Printf.printf "%s (match_operand:SI %d \"memory_operand\" \"\"))" indent (nreg
[all...]

Completed in 162 milliseconds

12345