Lines Matching defs:indent
163 #define DUMP_LINE_MAX 100 /* Does not include indent amount */
867 * is prefixed by the number of spaces given by indent. On each
868 * recursion, the indent amount is increased by 2. This causes nodes
870 * with a greater indent.
873 unsigned int indent)
886 fprintf(stream, "%*s---- %s nodep: %p\n", indent, "", node_type, nodep);
887 fprintf(stream, "%*s parent: %p left: %p right: %p\n", indent, "",
890 indent, "", nodep->idx, nodep->mask, nodep->num_after);
894 dump_nodes(stream, nodep->left, indent + 2);
898 dump_nodes(stream, nodep->right, indent + 2);
919 * of spaces given by indent. The output is completely implementation
926 unsigned int indent)
929 fprintf(stream, "%*sroot: %p\n", indent, "", s->root);
930 fprintf(stream, "%*snum_set: 0x%lx\n", indent, "", s->num_set);
933 dump_nodes(stream, s->root, indent);
1576 * spaces given by indent. The length of each line is implementation
1577 * dependent and does not depend on the indent amount. The following
1588 unsigned int indent)
1597 /* Display initial indent */
1598 fprintf(stream, "%*s", indent, "");
1629 * a newline plus the indent of the next
1634 fprintf(stream, "%*s", indent, "");
1663 * a newline plus the indent of the next
1668 fprintf(stream, "%*s", indent, "");