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

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp24 void Matcher::print(raw_ostream &OS, unsigned indent) const {
25 printImpl(OS, indent);
27 return Next->print(OS, indent);
118 void ScopeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
119 OS.indent(indent) << "Scope\n";
122 OS.indent(indent+1) << "NULL POINTER\n";
124 C->print(OS, indent+2);
128 void RecordMatcher::printImpl(raw_ostream &OS, unsigned indent) cons
[all...]
H A DMacroFusionPredicatorEmitter.cpp108 OS.indent(4) << "const TargetInstrInfo &TII,\n";
109 OS.indent(4) << "const TargetSubtargetInfo &STI,\n";
110 OS.indent(4) << "const MachineInstr *FirstMI,\n";
111 OS.indent(4) << "const MachineInstr &SecondMI) {\n";
112 OS.indent(2) << "auto &MRI = SecondMI.getMF()->getRegInfo();\n";
116 OS.indent(2) << "return true;\n";
144 OS.indent(2) << "if (!FirstMI)\n";
145 OS.indent(2) << " return "
149 OS.indent(2) << "{\n";
150 OS.indent(
[all...]
/freebsd-current/crypto/openssl/apps/include/
H A Dapp_params.h12 int print_param_types(const char *thing, const OSSL_PARAM *pdefs, int indent);
13 void print_param_value(const OSSL_PARAM *p, int indent);
/freebsd-current/contrib/bearssl/T0/
H A DBlobWriter.cs42 int indent; field in class:BlobWriter
47 * 'indent' is the number of tab characters at the start of
50 internal BlobWriter(TextWriter w, int maxLineLen, int indent) argument
54 this.indent = indent;
61 for (int i = 0; i < indent; i ++) {
64 lineLen = (indent << 3);
/freebsd-current/crypto/openssl/crypto/ct/
H A Dct_prn.c70 void SCT_print(const SCT *sct, BIO *out, int indent, argument
80 BIO_printf(out, "%*sSigned Certificate Timestamp:", indent, "");
81 BIO_printf(out, "\n%*sVersion : ", indent + 4, "");
84 BIO_printf(out, "unknown\n%*s", indent + 16, "");
85 BIO_hex_string(out, indent + 16, 16, sct->sct, sct->sct_len);
92 BIO_printf(out, "\n%*sLog : %s", indent + 4, "",
96 BIO_printf(out, "\n%*sLog ID : ", indent + 4, "");
97 BIO_hex_string(out, indent + 16, 16, sct->log_id, sct->log_id_len);
99 BIO_printf(out, "\n%*sTimestamp : ", indent + 4, "");
102 BIO_printf(out, "\n%*sExtensions: ", indent
[all...]
/freebsd-current/usr.bin/indent/
H A DMakefile4 PROG= indent
5 SRCS= indent.c io.c lexi.c parse.c pr_comment.c args.c
/freebsd-current/sys/kern/
H A Duipc_debug.c218 db_print_indent(int indent) argument
222 for (i = 0; i < indent; i++)
227 db_print_domain(struct domain *d, const char *domain_name, int indent) argument
230 db_print_indent(indent);
233 indent += 2;
235 db_print_indent(indent);
239 db_print_indent(indent);
242 db_print_indent(indent);
246 db_print_indent(indent);
249 db_print_indent(indent);
283 db_print_protosw(struct protosw *pr, const char *prname, int indent) argument
350 db_print_sockbuf(struct sockbuf *sb, const char *sockbufname, int indent) argument
394 db_print_socket(struct socket *so, const char *socketname, int indent) argument
[all...]
/freebsd-current/crypto/openssl/util/
H A Dsu-filter.pl12 my $indent = 0;
49 $out .= displayData($indent, 0, \@strucdata);
50 $out .= "\n$indent};\n";
56 $indent = $1;
180 my $indent = shift;
193 $item =~ s/\n/\n$indent/g;
195 $out .= $item."\n".$indent;
197 $out .= "\n".$indent.$item."\n".$indent;
199 $currline = $indent;
[all...]
H A Dwithlibctx.pl47 my $indent;
66 $indent = (length $preline) + (length '_ex(');
84 formatparams($indent, @params);
97 my $indent = shift;
102 my $lensofar += $indent + (length $param) + 1;
111 print "\n".(" " x $indent);
113 $lensofar = $indent + (length $param) + 1;
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp97 ReportPiece(o, P, /*indent*/ 4, /*depth*/ 0, /*includeControlFlow*/ true);
106 void ReportMacroExpansions(raw_ostream &o, unsigned indent);
110 unsigned indent, unsigned depth, bool includeControlFlow,
115 ReportControlFlow(o, cast<PathDiagnosticControlFlowPiece>(P), indent);
118 ReportCall(o, cast<PathDiagnosticCallPiece>(P), indent,
122 ReportEvent(o, cast<PathDiagnosticEventPiece>(P), indent, depth,
126 ReportMacroSubPieces(o, cast<PathDiagnosticMacroPiece>(P), indent,
130 ReportNote(o, cast<PathDiagnosticNotePiece>(P), indent);
133 ReportPopUp(o, cast<PathDiagnosticPopUpPiece>(P), indent);
139 unsigned indent);
109 ReportPiece(raw_ostream &o, const PathDiagnosticPiece &P, unsigned indent, unsigned depth, bool includeControlFlow, bool isKeyEvent = false) argument
177 EmitRanges(raw_ostream &o, const ArrayRef<SourceRange> Ranges, unsigned indent) argument
199 EmitMessage(raw_ostream &o, StringRef Message, unsigned indent) argument
214 EmitFixits(raw_ostream &o, ArrayRef<FixItHint> fixits, unsigned indent) argument
241 ReportControlFlow(raw_ostream &o, const PathDiagnosticControlFlowPiece& P, unsigned indent) argument
298 ReportEvent(raw_ostream &o, const PathDiagnosticEventPiece& P, unsigned indent, unsigned depth, bool isKeyEvent) argument
338 ReportCall(raw_ostream &o, const PathDiagnosticCallPiece &P, unsigned indent, unsigned depth) argument
365 ReportMacroSubPieces(raw_ostream &o, const PathDiagnosticMacroPiece& P, unsigned indent, unsigned depth) argument
378 ReportMacroExpansions(raw_ostream &o, unsigned indent) argument
422 ReportNote(raw_ostream &o, const PathDiagnosticNotePiece& P, unsigned indent) argument
451 ReportPopUp(raw_ostream &o, const PathDiagnosticPopUpPiece &P, unsigned indent) argument
[all...]
/freebsd-current/usr.sbin/devinfo/
H A Ddevinfo.c55 int indent; member in struct:indent_arg
80 * If the given indent is 0, return an indicator that a matching
92 if (ia->indent == 0)
94 for (i = 0; i < ia->indent; i++)
109 int indent, i; local
111 indent = ia->indent;
114 ia->indent = 0;
119 for (i = 0; i < indent; i++)
124 ia->indent
155 int i, indent; local
[all...]
/freebsd-current/crypto/openssl/crypto/x509/
H A Dv3_prn.c20 unsigned long flag, int indent, int supported);
24 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, argument
32 BIO_printf(out, "%*s", indent, "");
40 BIO_printf(out, "%*s", indent, "");
71 int indent)
87 return unknown_ext_print(out, p, extlen, flag, indent, 0);
94 return unknown_ext_print(out, p, extlen, flag, indent, 1);
102 BIO_printf(out, "%*s%s", indent, "", value);
111 BIO_printf(out, "%*s%s", indent, "", tmp);
121 X509V3_EXT_val_prn(out, nval, indent,
70 X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) argument
139 X509V3_extensions_print(BIO *bp, const char *title, const STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent) argument
179 unknown_ext_print(BIO *out, const unsigned char *ext, int extlen, unsigned long flag, int indent, int supported) argument
205 X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent) argument
[all...]
H A Dv3_pku.c19 int indent);
38 int indent)
40 BIO_printf(out, "%*s", indent, "");
/freebsd-current/usr.bin/etdump/
H A Doutput_text.c62 const char *indent; local
74 indent = "\t";
77 indent = "\t\t";
80 fprintf(outfile, "%sSystem %s\n", indent,
83 indent, isonum_731(bcse->load_rba), isonum_731(bcse->load_rba),
85 fprintf(outfile, "%sMedia type: %s\n", indent,
/freebsd-current/crypto/openssl/ssl/
H A Dt1_trce.c24 # define ssl_trace_list(bio, indent, msg, msglen, value, table) \
25 do_ssl_trace_list(bio, indent, msg, msglen, value, \
40 static int do_ssl_trace_list(BIO *bio, int indent, argument
52 BIO_indent(bio, indent, 80);
614 static void ssl_print_hex(BIO *bio, int indent, const char *name, argument
619 BIO_indent(bio, indent, 80);
626 static int ssl_print_hexbuf(BIO *bio, int indent, const char *name, size_t nlen, argument
640 ssl_print_hex(bio, indent, name, p, blen);
646 static int ssl_print_version(BIO *bio, int indent, const char *name, argument
657 BIO_indent(bio, indent, 8
665 ssl_print_random(BIO *bio, int indent, const unsigned char **pmsg, size_t *pmsglen) argument
688 ssl_print_signature(BIO *bio, int indent, const SSL *ssl, const unsigned char **pmsg, size_t *pmsglen) argument
706 ssl_print_extension(BIO *bio, int indent, int server, unsigned char mt, int extype, const unsigned char *ext, size_t extlen) argument
895 ssl_print_extensions(BIO *bio, int indent, int server, unsigned char mt, const unsigned char **msgin, size_t *msginlen) argument
948 ssl_print_client_hello(BIO *bio, const SSL *ssl, int indent, const unsigned char *msg, size_t msglen) argument
1005 dtls_print_hello_vfyrequest(BIO *bio, int indent, const unsigned char *msg, size_t msglen) argument
1015 ssl_print_server_hello(BIO *bio, int indent, const unsigned char *msg, size_t msglen) argument
1099 ssl_print_client_keyex(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) argument
1151 ssl_print_server_keyex(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) argument
1219 ssl_print_certificate(BIO *bio, int indent, const unsigned char **pmsg, size_t *pmsglen) argument
1254 ssl_print_certificates(BIO *bio, const SSL *ssl, int server, int indent, const unsigned char *msg, size_t msglen) argument
1284 ssl_print_cert_request(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) argument
1373 ssl_print_ticket(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) argument
1422 ssl_print_handshake(BIO *bio, const SSL *ssl, int server, const unsigned char *msg, size_t msglen, int indent) argument
[all...]
/freebsd-current/crypto/openssl/crypto/bio/
H A Dbio_dump.c29 void *u, const void *v, int len, int indent)
38 if (indent < 0)
39 indent = 0;
40 else if (indent > 64)
41 indent = 64;
43 dump_width = DUMP_WIDTH_LESS_INDENT(indent);
48 n = BIO_snprintf(buf, sizeof(buf), "%*s%04x - ", indent, "",
108 int BIO_dump_indent_fp(FILE *fp, const void *s, int len, int indent) argument
110 return BIO_dump_indent_cb(write_fp, fp, s, len, indent);
124 int BIO_dump_indent(BIO *bp, const void *s, int len, int indent) argument
28 BIO_dump_indent_cb(int (*cb) (const void *data, size_t len, void *u), void *u, const void *v, int len, int indent) argument
129 BIO_hex_string(BIO *out, int indent, int width, const void *data, int datalen) argument
[all...]
/freebsd-current/crypto/openssl/crypto/asn1/
H A Dtasn_prn.c104 static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent,
109 static int asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent,
113 const ASN1_ITEM *it, int indent,
117 static int asn1_print_fsname(BIO *out, int indent,
121 int ASN1_item_print(BIO *out, const ASN1_VALUE *ifld, int indent, argument
131 return asn1_item_print_ctx(out, &ifld, indent, it, NULL, sname, 0, pctx);
134 static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, argument
148 parg.indent = indent;
157 if (!nohdr && !asn1_print_fsname(out, indent, fnam
264 asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx) argument
331 asn1_print_fsname(BIO *out, int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx) argument
419 asn1_print_obstring(BIO *out, const ASN1_STRING *str, int indent) argument
433 asn1_primitive_print(BIO *out, const ASN1_VALUE **fld, const ASN1_ITEM *it, int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx) argument
[all...]
H A Dt_pkey.c18 /* Maximum indent */
21 int ASN1_buf_print(BIO *bp, const unsigned char *buf, size_t buflen, int indent) argument
29 if (!BIO_indent(bp, indent, ASN1_PRINT_MAX_INDENT))
46 unsigned char *ign, int indent)
56 if (!BIO_indent(bp, indent, ASN1_PRINT_MAX_INDENT))
87 if (ASN1_buf_print(bp, tmp, n, indent + 4) == 0)
45 ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, unsigned char *ign, int indent) argument
/freebsd-current/usr.bin/indent/tests/
H A Dfunctional_test.sh34 local indent=$(atf_config_get usr.bin.indent.test_indent /usr/bin/indent)
54 # Make sure we don't implicitly use ~/.indent.pro from the test
59 atf_check -s exit:${tc##*.} ${out_flag} ${indent} ${profile_flag} < input_file.parsed
/freebsd-current/crypto/openssl/apps/lib/
H A Dapp_params.c75 int print_param_types(const char *thing, const OSSL_PARAM *pdefs, int indent) argument
84 BIO_printf(bio_out, "%*sEmpty list of %s (!!!)\n", indent, "", thing);
86 BIO_printf(bio_out, "%*s%s:\n", indent, "", thing);
91 BIO_printf(bio_out, "%*s %s\n", indent, "", buf);
97 void print_param_value(const OSSL_PARAM *p, int indent) argument
102 printf("%*s%s: ", indent, "", p->key);
/freebsd-current/usr.sbin/lpr/filters/
H A Dlpf.c56 static int indent; /* indentation length */ variable
96 indent = atoi(&cp[2]);
111 col = indent;
130 if (--col < indent)
131 col = indent;
135 col = indent;
139 col = ((col - indent) | 07) + indent + 1;
/freebsd-current/contrib/tcpdump/
H A Dprint-rsvp.c679 const char *indent, u_int tlen,
710 ND_PRINT("%sERROR: object header size %u not a multiple of 4", indent, rsvp_obj_len);
714 ND_PRINT("%sERROR: object header too short %u < %zu", indent, rsvp_obj_len,
721 indent,
739 ND_PRINT("%sERROR: object goes past end of objects TLV", indent);
757 indent,
761 indent,
771 indent,
775 indent,
786 indent,
677 rsvp_obj_print(netdissect_options *ndo, const u_char *pptr, u_int plen, const u_char *tptr, const char *indent, u_int tlen, const struct rsvp_common_header *rsvp_com_header) argument
[all...]
H A Dprint-rpki-rtr.c130 indent_string (u_int indent) argument
141 if (sizeof(buf) < ((indent/8) + (indent %8) + 2)) {
151 while (indent >= 8) {
154 indent -= 8;
157 while (indent > 0) {
160 indent--;
176 const u_char recurse, const u_int indent)
227 indent_string(indent+2),
251 indent_string(indent
175 rpki_rtr_pdu_print(netdissect_options *ndo, const u_char *tptr, const u_int len, const u_char recurse, const u_int indent) argument
[all...]
/freebsd-current/usr.bin/rpcgen/
H A Drpc_cout.c160 print_ifopen(int indent, const char *name) argument
162 tabify(fout, indent);
173 print_ifsizeof(int indent, const char *prefix, const char *type) argument
175 if (indent) {
177 tabify(fout, indent);
193 print_ifclose(int indent, int brace) argument
196 tabify(fout, indent);
203 print_ifstat(int indent, const char *prefix, const char *type, relation rel, argument
214 print_ifopen(indent, "pointer");
226 print_ifopen(indent, al
379 int indent = 1; local
610 print_stat(int indent, declaration *dec) argument
630 emit_inline(int indent, declaration *decl, int flag) argument
658 emit_single_in_line(int indent, declaration *decl, int flag, relation rel) argument
[all...]
/freebsd-current/sbin/growfs/
H A Ddebug.c57 static unsigned int indent = 0; variable
105 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)mem, comment);
106 indent++;
115 indent--;
133 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)sb, comment);
134 indent++;
338 indent--;
356 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
357 indent++;
391 indent
[all...]

Completed in 265 milliseconds

1234567891011>>