Home
last modified time | relevance | path

Searched refs:indent (Results 1 – 25 of 468) sorted by relevance

12345678910>>...19

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DMacroFusionPredicatorEmitter.cpp108 OS.indent(4) << "const TargetInstrInfo &TII,\n"; in emitMacroFusionImpl()
109 OS.indent(4) << "const TargetSubtargetInfo &STI,\n"; in emitMacroFusionImpl()
110 OS.indent(4) << "const MachineInstr *FirstMI,\n"; in emitMacroFusionImpl()
111 OS.indent(4) << "const MachineInstr &SecondMI) {\n"; in emitMacroFusionImpl()
112 OS.indent(2) in emitMacroFusionImpl()
117 OS.indent(2) << "return true;\n"; in emitMacroFusionImpl()
147 OS.indent(2) << "if (!FirstMI)\n"; in emitFirstPredicate()
148 OS.indent(2) << " return " in emitFirstPredicate()
152 OS.indent(2) << "{\n"; in emitFirstPredicate()
153 OS.indent(4) << "Register FirstDest = FirstMI->getOperand(0).getReg();\n"; in emitFirstPredicate()
[all …]
H A DCompressInstEmitter.cpp580 OS.indent(2) << "case " << I + 1 << ": {\n"; in printPredicates()
581 OS.indent(4) << "// " << Predicates[I]->getName() << "\n"; in printPredicates()
582 OS.indent(4) << Pred << "\n"; in printPredicates()
583 OS.indent(2) << "}\n"; in printPredicates()
591 CombinedStream.indent(4) << "if (" << CondStr << ") {\n"; in mergeCondAndCode()
593 CombinedStream.indent(4) << " return true;\n"; in mergeCondAndCode()
594 CombinedStream.indent(4) << "} // if\n"; in mergeCondAndCode()
643 FuncH.indent(25) << "const MCInst &MI,\n"; in emitCompressInstEmitter()
644 FuncH.indent(25) << "const MCSubtargetInfo &STI) {\n"; in emitCompressInstEmitter()
647 FuncH.indent(27) << "const MCInst &MI,\n"; in emitCompressInstEmitter()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp103 void ReportMacroExpansions(raw_ostream &o, unsigned indent);
107 unsigned indent, unsigned depth, bool includeControlFlow, in ReportPiece() argument
112 ReportControlFlow(o, cast<PathDiagnosticControlFlowPiece>(P), indent); in ReportPiece()
115 ReportCall(o, cast<PathDiagnosticCallPiece>(P), indent, in ReportPiece()
119 ReportEvent(o, cast<PathDiagnosticEventPiece>(P), indent, depth, in ReportPiece()
123 ReportMacroSubPieces(o, cast<PathDiagnosticMacroPiece>(P), indent, in ReportPiece()
127 ReportNote(o, cast<PathDiagnosticNotePiece>(P), indent); in ReportPiece()
130 ReportPopUp(o, cast<PathDiagnosticPopUpPiece>(P), indent); in ReportPiece()
136 unsigned indent);
137 void EmitMessage(raw_ostream &o, StringRef Message, unsigned indent);
[all …]
/freebsd/crypto/openssl/ssl/
H A Dt1_trce.c27 #define ssl_trace_list(bio, indent, msg, msglen, value, table) \ argument
28 do_ssl_trace_list(bio, indent, msg, msglen, value, \
43 static int do_ssl_trace_list(BIO *bio, int indent, in do_ssl_trace_list() argument
55 BIO_indent(bio, indent, 80); in do_ssl_trace_list()
664 static void ssl_print_hex(BIO *bio, int indent, const char *name, in ssl_print_hex() argument
669 BIO_indent(bio, indent, 80); in ssl_print_hex()
676 static int ssl_print_hexbuf(BIO *bio, int indent, const char *name, size_t nlen, in ssl_print_hexbuf() argument
690 ssl_print_hex(bio, indent, name, p, blen); in ssl_print_hexbuf()
696 static int ssl_print_version(BIO *bio, int indent, const char *name, in ssl_print_version() argument
707 BIO_indent(bio, indent, 80); in ssl_print_version()
[all …]
/freebsd/crypto/openssl/crypto/x509/
H A Dv3_ac_tgt.c24 BIO *out, int indent);
27 BIO *out, int indent);
30 BIO *out, int indent);
33 BIO *out, int indent);
36 BIO *out, int indent);
78 BIO *out, int indent)
81 BIO_printf(out, "%*sIssuer Names:\n", indent, "");
82 OSSL_GENERAL_NAMES_print(out, iss->issuer, indent);
85 BIO_printf(out, "%*sIssuer Names: <none>\n", indent, "");
87 BIO_printf(out, "%*sIssuer Serial: ", indent, "");
[all …]
H A Dv3_attrdesc.c51 BIO *out, int indent)
53 if (BIO_printf(out, "%*sAlgorithm: ", indent, "") <= 0)
60 if (BIO_printf(out, "%*sParameter: ", indent, "") <= 0)
63 indent + 4)
69 if (BIO_printf(out, "%*sHash Value: ", indent, "") <= 0)
78 BIO *out, int indent) in i2r_INFO_SYNTAX_POINTER() argument
80 if (BIO_printf(out, "%*sNames:\n", indent, "") <= 0) in i2r_INFO_SYNTAX_POINTER()
82 if (OSSL_GENERAL_NAMES_print(out, pointer->name, indent) <= 0) in i2r_INFO_SYNTAX_POINTER()
87 if (BIO_printf(out, "%*sHash:\n", indent, "") <= 0) in i2r_INFO_SYNTAX_POINTER()
89 if (i2r_HASH(method, pointer->hash, out, indent + 4) <= 0) in i2r_INFO_SYNTAX_POINTER()
[all …]
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, in X509V3_EXT_val_prn() argument
32 BIO_printf(out, "%*s", indent, ""); in X509V3_EXT_val_prn()
40 BIO_printf(out, "%*s", indent, ""); in X509V3_EXT_val_prn()
70 int indent) in X509V3_EXT_print() argument
86 return unknown_ext_print(out, p, extlen, flag, indent, 0); in X509V3_EXT_print()
93 return unknown_ext_print(out, p, extlen, flag, indent, 1); in X509V3_EXT_print()
101 BIO_printf(out, "%*s%s", indent, "", value); in X509V3_EXT_print()
110 BIO_printf(out, "%*s%s", indent, "", tmp); in X509V3_EXT_print()
120 X509V3_EXT_val_prn(out, nval, indent, in X509V3_EXT_print()
[all …]
H A Dx_attrib.c79 int indent) in ossl_print_attribute_value() argument
90 return BIO_printf(out, "%*sTRUE", indent, "") >= 4; in ossl_print_attribute_value()
92 return BIO_printf(out, "%*sFALSE", indent, "") >= 5; in ossl_print_attribute_value()
97 if (BIO_printf(out, "%*s", indent, "") < 0) in ossl_print_attribute_value()
106 if (BIO_printf(out, "%*s", indent, "") < 0) in ossl_print_attribute_value()
113 if (BIO_printf(out, "%*s", indent, "") < 0) in ossl_print_attribute_value()
119 return BIO_printf(out, "%*sNULL", indent, "") >= 4; in ossl_print_attribute_value()
122 if (BIO_printf(out, "%*s", indent, "") < 0) in ossl_print_attribute_value()
134 return BIO_printf(out, "%*s%.*s", indent, "", in ossl_print_attribute_value()
143 return BIO_printf(out, "%*s%.*s", indent, "", in ossl_print_attribute_value()
[all …]
H A Dv3_authattid.c26 BIO *out, int indent) in ASN1_ITEM_TEMPLATE()
29 BIO_printf(out, "%*sIssuer Names:\n", indent, ""); in ASN1_ITEM_TEMPLATE()
30 OSSL_GENERAL_NAMES_print(out, iss->issuer, indent); in ASN1_ITEM_TEMPLATE()
33 BIO_printf(out, "%*sIssuer Names: <none>\n", indent, ""); in ASN1_ITEM_TEMPLATE()
35 BIO_printf(out, "%*sIssuer Serial: ", indent, ""); in ASN1_ITEM_TEMPLATE()
40 BIO_printf(out, "%*sIssuer UID: ", indent, ""); in ASN1_ITEM_TEMPLATE()
45 BIO_printf(out, "%*sIssuer UID: <none>\n", indent, ""); in ASN1_ITEM_TEMPLATE()
52 BIO *out, int indent) in i2r_auth_attr_id() argument
58 if (BIO_printf(out, "%*sIssuer-Serials:\n", indent, "") <= 0) in i2r_auth_attr_id()
61 if (i2r_ISSUER_SERIAL(method, aid, out, indent + 4) <= 0) in i2r_auth_attr_id()
H A Dv3_rolespec.c32 BIO *out, int indent)
34 if (BIO_printf(out, "%*sRole Name: ", indent, "") <= 0)
40 if (BIO_printf(out, "%*sRole Certificate Issuer: ", indent, "") <= 0)
47 if (BIO_printf(out, "%*sRole Certificate Serial Number:", indent, "") <= 0)
49 if (ossl_serial_number_print(out, rscid->roleCertSerialNumber, indent) != 0)
55 if (BIO_printf(out, "%*sRole Certificate Locator:\n", indent, "") <= 0)
57 if (OSSL_GENERAL_NAMES_print(out, rscid->roleCertLocator, indent) <= 0)
65 BIO *out, int indent) in i2r_OSSL_ROLE_SPEC_CERT_ID_SYNTAX() argument
75 indent, "", i + 1) in i2r_OSSL_ROLE_SPEC_CERT_ID_SYNTAX()
79 if (i2r_OSSL_ROLE_SPEC_CERT_ID(method, rscid, out, indent + 4) != 1) in i2r_OSSL_ROLE_SPEC_CERT_ID_SYNTAX()
H A Dv3_aaa.c40 BIO *out, int indent)
49 if (BIO_printf(out, "%*sAttribute Type: ", indent, "") <= 0)
58 if (BIO_printf(out, "%*sAttribute Values: ", indent, "") <= 0)
66 if (ossl_print_attribute_value(out, attr_nid, av, indent + 4) <= 0)
80 BIO *out, int indent) in i2r_ALLOWED_ATTRIBUTES_ITEM() argument
86 if (BIO_printf(out, "%*sAllowed Attribute Type or Values:\n", indent, "") <= 0) in i2r_ALLOWED_ATTRIBUTES_ITEM()
89 if (i2r_ALLOWED_ATTRIBUTES_CHOICE(method, a, out, indent + 4) <= 0) in i2r_ALLOWED_ATTRIBUTES_ITEM()
92 if (BIO_printf(out, "%*sHolder Domain: ", indent, "") <= 0) in i2r_ALLOWED_ATTRIBUTES_ITEM()
103 BIO *out, int indent) in i2r_ALLOWED_ATTRIBUTES_SYNTAX() argument
109 if (BIO_printf(out, "%*sAllowed Attributes:\n", indent, "") <= 0) in i2r_ALLOWED_ATTRIBUTES_SYNTAX()
[all …]
H A Dv3_timespec.c129 BIO *out, int indent)
160 BIO *out, int indent) in i2r_OSSL_DAY_TIME() argument
179 BIO *out, int indent) in i2r_OSSL_DAY_TIME_BAND() argument
182 if (!i2r_OSSL_DAY_TIME(method, band->startDayTime, out, indent)) in i2r_OSSL_DAY_TIME_BAND()
190 if (!i2r_OSSL_DAY_TIME(method, band->endDayTime, out, indent)) in i2r_OSSL_DAY_TIME_BAND()
340 BIO *out, int indent) in i2r_OSSL_PERIOD() argument
348 if (BIO_printf(out, "%*sPeriod:\n", indent, "") <= 0) in i2r_OSSL_PERIOD()
351 if (BIO_printf(out, "%*sDaytime bands:\n", indent + 4, "") <= 0) in i2r_OSSL_PERIOD()
355 if (BIO_printf(out, "%*s", indent + 8, "") <= 0) in i2r_OSSL_PERIOD()
357 if (!i2r_OSSL_DAY_TIME_BAND(method, band, out, indent + 8)) in i2r_OSSL_PERIOD()
[all …]
/freebsd/sys/kern/
H A Duipc_debug.c218 db_print_indent(int indent) in db_print_indent() argument
222 for (i = 0; i < indent; i++) in db_print_indent()
227 db_print_domain(struct domain *d, const char *domain_name, int indent) in db_print_domain() argument
230 db_print_indent(indent); in db_print_domain()
233 indent += 2; in db_print_domain()
235 db_print_indent(indent); in db_print_domain()
239 db_print_indent(indent); in db_print_domain()
243 db_print_indent(indent); in db_print_domain()
276 db_print_protosw(struct protosw *pr, const char *prname, int indent) in db_print_protosw() argument
279 db_print_indent(indent); in db_print_protosw()
[all …]
/freebsd/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;
208 $out .= $item."\n".$indent;
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DDAGISelMatcher.cpp22 void Matcher::print(raw_ostream &OS, indent Indent) const { in print()
28 void Matcher::printOne(raw_ostream &OS) const { printImpl(OS, indent(0)); } in printOne()
114 void ScopeMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
124 void RecordMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
128 void RecordChildMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
132 void RecordMemRefMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
136 void CaptureGlueInputMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
140 void MoveChildMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
144 void MoveSiblingMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
148 void MoveParentMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
[all …]
/freebsd/contrib/tcpdump/
H A Dprint-rsvp.c677 const char *indent, u_int tlen, in rsvp_obj_print() argument
708 ND_PRINT("%sERROR: object header size %u not a multiple of 4", indent, rsvp_obj_len); in rsvp_obj_print()
712 ND_PRINT("%sERROR: object header too short %u < %zu", indent, rsvp_obj_len, in rsvp_obj_print()
719 indent, in rsvp_obj_print()
737 ND_PRINT("%sERROR: object goes past end of objects TLV", indent); in rsvp_obj_print()
755 indent, in rsvp_obj_print()
759 indent, in rsvp_obj_print()
769 indent, in rsvp_obj_print()
773 indent, in rsvp_obj_print()
784 indent, in rsvp_obj_print()
[all …]
H A Dprint-forces.c67 uint16_t op_msk, int indent);
233 uint16_t op_msk, int indent);
237 uint16_t op_msk, int indent);
239 uint16_t op_msk, int indent);
241 uint16_t op_msk, int indent);
294 indent_pr(int indent, int nlpref) in indent_pr() argument
299 if (indent > (IND_SIZE - 1)) in indent_pr()
300 indent = IND_SIZE - 1; in indent_pr()
305 indent--; in indent_pr()
308 while (--indent >= 0) in indent_pr()
[all …]
H A Dprint-rpki-rtr.c128 indent_string (u_int indent) in indent_string() argument
139 if (sizeof(buf) < ((indent/8) + (indent %8) + 2)) { in indent_string()
149 while (indent >= 8) { in indent_string()
152 indent -= 8; in indent_string()
155 while (indent > 0) { in indent_string()
158 indent--; in indent_string()
174 const u_char recurse, const u_int indent) in rpki_rtr_pdu_print() argument
225 indent_string(indent+2), in rpki_rtr_pdu_print()
249 indent_string(indent+2), in rpki_rtr_pdu_print()
261 indent_string(indent+2), in rpki_rtr_pdu_print()
[all …]
/freebsd/crypto/openssl/crypto/asn1/
H A Dtasn_prn.c102 static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent,
107 static int asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent,
111 const ASN1_ITEM *it, int indent,
115 static int asn1_print_fsname(BIO *out, int indent,
119 int ASN1_item_print(BIO *out, const ASN1_VALUE *ifld, int indent, in ASN1_item_print() argument
129 return asn1_item_print_ctx(out, &ifld, indent, it, NULL, sname, 0, pctx); in ASN1_item_print()
132 static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, in asn1_item_print_ctx() argument
146 parg.indent = indent; in asn1_item_print_ctx()
156 if (!nohdr && !asn1_print_fsname(out, indent, fname, sname, pctx)) in asn1_item_print_ctx()
167 if (!asn1_template_print_ctx(out, fld, indent, in asn1_item_print_ctx()
[all …]
/freebsd/crypto/openssl/crypto/ct/
H A Dct_prn.c70 void SCT_print(const SCT *sct, BIO *out, int indent, in SCT_print() argument
80 BIO_printf(out, "%*sSigned Certificate Timestamp:", indent, ""); in SCT_print()
81 BIO_printf(out, "\n%*sVersion : ", indent + 4, ""); in SCT_print()
84 BIO_printf(out, "unknown\n%*s", indent + 16, ""); in SCT_print()
85 BIO_hex_string(out, indent + 16, 16, sct->sct, sct->sct_len); in SCT_print()
92 BIO_printf(out, "\n%*sLog : %s", indent + 4, "", in SCT_print()
96 BIO_printf(out, "\n%*sLog ID : ", indent + 4, ""); in SCT_print()
97 BIO_hex_string(out, indent + 16, 16, sct->log_id, sct->log_id_len); in SCT_print()
99 BIO_printf(out, "\n%*sTimestamp : ", indent + 4, ""); in SCT_print()
102 BIO_printf(out, "\n%*sExtensions: ", indent + 4, ""); in SCT_print()
[all …]
/freebsd/usr.bin/rpcgen/
H A Drpc_cout.c160 print_ifopen(int indent, const char *name) in print_ifopen() argument
162 tabify(fout, indent); in print_ifopen()
173 print_ifsizeof(int indent, const char *prefix, const char *type) in print_ifsizeof() argument
175 if (indent) { in print_ifsizeof()
177 tabify(fout, indent); in print_ifsizeof()
193 print_ifclose(int indent, int brace) in print_ifclose() argument
196 tabify(fout, indent); in print_ifclose()
203 print_ifstat(int indent, const char *prefix, const char *type, relation rel, in print_ifstat() argument
214 print_ifopen(indent, "pointer"); in print_ifstat()
226 print_ifopen(indent, alt); in print_ifstat()
[all …]
/freebsd/contrib/mtree/
H A Dcreate.c103 int indent = 0; in cwalk() local
127 indent = p->fts_level * 4; in cwalk()
143 statf(fp, indent, p); in cwalk()
148 fprintf(fp, "%*s# %s\n", indent, "", in cwalk()
151 fprintf(fp, "%*s..\n", indent, ""); in cwalk()
164 statf(fp, indent, p); in cwalk()
177 dosum(FILE *fp, int indent, FTSENT *p, int *offset, int flag, in dosum() argument
187 output(fp, indent, offset, "%s=%s", key, digestbuf); in dosum()
225 statf(FILE *fp, int indent, FTSENT *p) in statf() argument
230 offset = fprintf(fp, "%*s%s%s", indent, "", in statf()
[all …]
/freebsd/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); in dbg_dump_hex()
106 indent++; in dbg_dump_hex()
115 indent--; in dbg_dump_hex()
133 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)sb, comment); in dbg_dump_fs()
134 indent++; in dbg_dump_fs()
336 indent--; in dbg_dump_fs()
354 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment); in dbg_dump_cg()
355 indent++; in dbg_dump_cg()
389 indent in dbg_dump_cg()
[all...]
/freebsd/crypto/openssl/crypto/bio/
H A Dbio_dump.c29 void *u, const void *v, int len, int indent) in BIO_dump_indent_cb() argument
38 if (indent < 0) in BIO_dump_indent_cb()
39 indent = 0; in BIO_dump_indent_cb()
40 else if (indent > 64) in BIO_dump_indent_cb()
41 indent = 64; in BIO_dump_indent_cb()
43 dump_width = DUMP_WIDTH_LESS_INDENT(indent); in BIO_dump_indent_cb()
48 n = BIO_snprintf(buf, sizeof(buf), "%*s%04x - ", indent, "", in BIO_dump_indent_cb()
110 int BIO_dump_indent_fp(FILE *fp, const void *s, int len, int indent) in BIO_dump_indent_fp() argument
112 return BIO_dump_indent_cb(write_fp, fp, s, len, indent); in BIO_dump_indent_fp()
126 int BIO_dump_indent(BIO *bp, const void *s, int len, int indent) in BIO_dump_indent() argument
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DPlistSupport.h53 inline raw_ostream &Indent(raw_ostream &o, const unsigned indent) { in Indent() argument
54 for (unsigned i = 0; i < indent; ++i) in Indent()
104 SourceLocation L, const FIDMap &FM, unsigned indent) { in EmitLocation() argument
109 Indent(o, indent) << "<dict>\n"; in EmitLocation()
110 Indent(o, indent) << " <key>line</key>"; in EmitLocation()
112 Indent(o, indent) << " <key>col</key>"; in EmitLocation()
114 Indent(o, indent) << " <key>file</key>"; in EmitLocation()
116 Indent(o, indent) << "</dict>\n"; in EmitLocation()
120 CharSourceRange R, const FIDMap &FM, unsigned indent) { in EmitRange() argument
124 Indent(o, indent) << "<array>\n"; in EmitRange()
[all …]

12345678910>>...19