/freebsd/crypto/openssl/doc/man7/ |
H A D | life_cycle-pkey.pod | 200 <table style="border:1px solid; border-collapse:collapse"> 201 <tr><th style="border:1px solid" align="left">Function Call</th> 202 <th style="border:1px solid" colspan="13">Current State</th></tr> 203 <tr><th style="border:1px solid"></th> 204 <th style="border:1px solid" align="center">start</th> 205 <th style="border:1px solid" align="center">newed</th> 206 <th style="border:1px solid" align="center">digest<br>sign</th> 207 <th style="border:1px solid" align="center">verify</th> 208 <th style="border:1px solid" align="center">verify<br>recover</th> 209 <th style="border:1px solid" align="center">encrypt</th> [all …]
|
H A D | life_cycle-cipher.pod | 158 <table style="border:1px solid; border-collapse:collapse"> 159 <tr><th style="border:1px solid" align="left">Function Call</th> 160 <th style="border:1px solid" colspan="10">Current State</th></tr> 161 <tr><th style="border:1px solid"></th> 162 <th style="border:1px solid" align="center">start</th> 163 <th style="border:1px solid" align="center">newed</th> 164 <th style="border:1px solid" align="center">initialised</th> 165 <th style="border:1px solid" align="center">updated</th> 166 <th style="border:1px solid" align="center">finaled</th> 167 <th style="border:1px solid" align="center">initialised<br>decryption</th> [all …]
|
H A D | life_cycle-digest.pod | 112 <table style="border:1px solid; border-collapse:collapse"> 113 <tr><th style="border:1px solid" align="left">Function Call</th> 114 <th style="border:1px solid" colspan="6">Current State</th></tr> 115 <tr><th style="border:1px solid"></th> 116 <th style="border:1px solid" align="center">start</th> 117 <th style="border:1px solid" align="center">newed</th> 118 <th style="border:1px solid" align="center">initialised</th> 119 <th style="border:1px solid" align="center">updated</th> 120 <th style="border:1px solid" align="center">finaled</th> 121 <th style="border:1px solid" align="center">freed</th></tr> [all …]
|
H A D | life_cycle-mac.pod | 112 <table style="border:1px solid; border-collapse:collapse"> 113 <tr><th style="border:1px solid" align="left">Function Call</th> 114 <th style="border:1px solid" colspan="6">Current State</th></tr> 115 <tr><th style="border:1px solid"></th> 116 <th style="border:1px solid" align="center">start</th> 117 <th style="border:1px solid" align="center">newed</th> 118 <th style="border:1px solid" align="center">initialised</th> 119 <th style="border:1px solid" align="center">updated</th> 120 <th style="border:1px solid" align="center">finaled</th> 121 <th style="border:1px solid" align="center">freed</th></tr> [all …]
|
H A D | life_cycle-rand.pod | 104 <table style="border:1px solid; border-collapse:collapse"> 105 <tr><th style="border:1px solid" align="left">Function Call</th> 106 <th style="border:1px solid" colspan="5">Current State</th></tr> 107 <tr><th style="border:1px solid"></th> 108 <th style="border:1px solid" align="center">start</th> 109 <th style="border:1px solid" align="center">newed</th> 110 <th style="border:1px solid" align="center">instantiated</th> 111 <th style="border:1px solid" align="center">uninstantiated</th> 112 <th style="border:1px solid" align="center">freed</th></tr> 113 <tr><th style="border:1px solid" align="left">EVP_RAND_CTX_new</th> [all …]
|
H A D | life_cycle-kdf.pod | 91 <table style="border:1px solid; border-collapse:collapse"> 92 <tr><th style="border:1px solid" align="left">Function Call</th> 93 <th style="border:1px solid" colspan="4">Current State</th></tr> 94 <tr><th style="border:1px solid"></th> 95 <th style="border:1px solid" align="center">start</th> 96 <th style="border:1px solid" align="center">newed</th> 97 <th style="border:1px solid" align="center">deriving</th> 98 <th style="border:1px solid" align="center">freed</th></tr> 99 <tr><th style="border:1px solid" align="left">EVP_KDF_CTX_new</th> 100 <td style="border:1px solid" align="center">newed</td> [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Path.h | 27 enum class Style { enum 36 constexpr bool is_style_posix(Style S) { in is_style_posix() 37 if (S == Style::posix) in is_style_posix() 39 if (S != Style::native) in is_style_posix() 49 constexpr bool is_style_windows(Style S) { return !is_style_posix(S); } in is_style_windows() 79 Style S = Style::native; ///< The path style to use. 82 friend const_iterator begin(StringRef path, Style style); 105 Style S = Style::native; ///< The path style to use. 107 friend reverse_iterator rbegin(StringRef path, Style style); 122 const_iterator begin(StringRef path, Style style = Style::native); [all …]
|
H A D | FormatProviders.h | 94 static size_t consumeNumHexDigits(StringRef &Str, HexPrintStyle Style, in consumeNumHexDigits() argument 97 if (isPrefixedHexStyle(Style)) in consumeNumHexDigits() 109 /// integer_options :: [style][digits] 110 /// style :: <see table below> 114 /// | style | Meaning | Example | Digits Meaning | 134 static void format(const T &V, llvm::raw_ostream &Stream, StringRef Style) { 136 if (std::optional<HexPrintStyle> HS = consumeHexStyle(Style)) { 137 Digits = consumeNumHexDigits(Style, *HS, 0); 143 if (Style.consume_front("N") || Style.consume_front("n")) 145 else if (Style.consume_front("D") || Style.consume_front("d")) [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Path.cpp | 39 using llvm::sys::path::Style; 41 inline Style real_style(Style style) { in real_style() argument 42 if (style != Style::native) in real_style() 43 return style; in real_style() 44 if (is_style_posix(style)) in real_style() 45 return Style::posix; in real_style() 46 return LLVM_WINDOWS_PREFER_FORWARD_SLASH ? Style::windows_slash in real_style() 47 : Style::windows_backslash; in real_style() 50 inline const char *separators(Style style) { in separators() argument 51 if (is_style_windows(style)) in separators() [all …]
|
H A D | NativeFormatting.cpp | 57 IntegerStyle Style, bool IsNegative) { in write_unsigned_impl() argument 66 if (Len < MinDigits && Style != IntegerStyle::Number) { in write_unsigned_impl() 71 if (Style == IntegerStyle::Number) { in write_unsigned_impl() 80 IntegerStyle Style, bool IsNegative = false) { in write_unsigned() argument 83 write_unsigned_impl(S, static_cast<uint32_t>(N), MinDigits, Style, in write_unsigned() 86 write_unsigned_impl(S, N, MinDigits, Style, IsNegative); in write_unsigned() 91 IntegerStyle Style) { in write_signed() argument 97 write_unsigned(S, static_cast<UnsignedT>(N), MinDigits, Style); in write_signed() 102 write_unsigned(S, UN, MinDigits, Style, true); in write_signed() 106 IntegerStyle Style) { in write_integer() argument [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | Format.cpp | 809 static void mapping(IO &IO, FormatStyle &Style) { in mapping() 811 IO.mapOptional("Language", Style.Language); in mapping() 819 if (getPredefinedStyle(StyleName, Style.Language, &PredefinedStyle) && in mapping() 820 Style == PredefinedStyle) { in mapping() 828 FormatStyle::LanguageKind OldLanguage = Style.Language; in mapping() 831 if (!getPredefinedStyle(BasedOnStyle, Language, &Style)) { in mapping() 835 Style.Language = OldLanguage; in mapping() 868 IO.mapOptional("AlignEscapedNewlinesLeft", Style.AlignEscapedNewlines); in mapping() 870 IO.mapOptional("AlwaysBreakAfterReturnType", Style.BreakAfterReturnType); in mapping() 872 Style.BreakTemplateDeclarations); in mapping() [all …]
|
H A D | ContinuationIndenter.cpp | 34 static bool shouldIndentWrappedSelectorName(const FormatStyle &Style, in shouldIndentWrappedSelectorName() argument 36 return Style.IndentWrappedFunctionNames || LineType == LT_ObjCMethodDecl; in shouldIndentWrappedSelectorName() 40 // the style permits it. 133 const FormatStyle &Style) { in startsNextParameter() argument 136 Style.BreakConstructorInitializers == FormatStyle::BCIS_BeforeComma) { in startsNextParameter() 139 if (Style.Language == FormatStyle::LK_Proto && Current.is(TT_SelectorName)) in startsNextParameter() 143 Style.BreakConstructorInitializers != in startsNextParameter() 146 Style.BreakInheritanceList != FormatStyle::BILS_BeforeComma)); in startsNextParameter() 150 const FormatStyle &Style) { in opensProtoMessageField() argument 153 return Style.Language == FormatStyle::LK_TextProto || in opensProtoMessageField() [all …]
|
H A D | UnwrappedLineFormatter.cpp | 46 LevelIndentTracker(const FormatStyle &Style, in LevelIndentTracker() argument 49 : Style(Style), Keywords(Keywords), AdditionalIndent(AdditionalIndent) { in LevelIndentTracker() 51 IndentForLevel.push_back(Style.IndentWidth * i + AdditionalIndent); in LevelIndentTracker() 65 if (Style.IndentPPDirectives != FormatStyle::PPDIS_None && in nextLine() 67 (Style.IndentPPDirectives == FormatStyle::PPDIS_BeforeHash && in nextLine() 70 (Style.PPIndentWidth >= 0) ? Style.PPIndentWidth : Style.IndentWidth; in nextLine() 73 (Line.Level - Line.PPLevel) * Style.IndentWidth in nextLine() 89 Indent = Line.Level * Style.IndentWidth + Style.ContinuationIndentWidth; in nextLine() 115 if (Style.Language == FormatStyle::LK_Java || Style.isJavaScript() || in getIndentOffset() 116 Style.isCSharp()) { in getIndentOffset() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | FormatUtil.cpp | 131 #define PUSH_CHARACTERISTIC_FLAG(Enum, TheOpt, Value, Style, Descriptive) \ 133 ((Style == CharacteristicStyle::HeaderDefinition) ? #TheOpt \ 136 #define PUSH_MASKED_CHARACTERISTIC_FLAG(Enum, Mask, TheOpt, Value, Style, \ 139 ((Style == CharacteristicStyle::HeaderDefinition) \ 147 CharacteristicStyle Style) { in formatSectionCharacteristics() 154 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_TYPE_NOLOAD, C, Style, "noload"); in formatSectionCharacteristics() 155 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_TYPE_NO_PAD, C, Style, "no padding"); in formatSectionCharacteristics() 156 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_CODE, C, Style, "code"); in formatSectionCharacteristics() 157 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_INITIALIZED_DATA, C, Style, in formatSectionCharacteristics() 159 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_UNINITIALIZED_DATA, C, Style, in formatSectionCharacteristics() 132 PUSH_CHARACTERISTIC_FLAG(Enum,TheOpt,Value,Style,Descriptive) global() argument 137 PUSH_MASKED_CHARACTERISTIC_FLAG(Enum,Mask,TheOpt,Value,Style,Descriptive) global() argument 148 formatSectionCharacteristics(uint32_t IndentLevel,uint32_t C,uint32_t FlagsPerLine,StringRef Separator,CharacteristicStyle Style) formatSectionCharacteristics() argument [all...] |
/freebsd/crypto/openssl/doc/ |
H A D | openssl-c-indent.el | 1 ;;; This Emacs Lisp file defines a C indentation style for OpenSSL. 11 ;;; To activate this indentation style, visit a C file, type 12 ;;; M-x c-set-style <RET> (or C-c . for short), and enter "eay". 16 ;;; to have this style be permanent in your OpenSSL development 19 ;;; M-x add-dir-local-variable <RET> c-mode <RET> c-file-style <RET> 29 ;; Note, it could be easy to inherit from the "gnu" style... however, 30 ;; one never knows if that style will change somewhere in the future, 31 ;; so I've chosen to copy the "gnu" style values explicitly instead 35 (c-add-style "OpenSSL-II" 40 (c-comment-only-line-offset 0 . 0) ; From "gnu" style [all …]
|
/freebsd/contrib/lyaml/spec/ |
H A D | ext_yaml_emitter_spec.yaml | 86 {type = "MAPPING_START", style = "notexists"}, 88 to_raise "invalid mapping style 'notexists'" 89 - it understands block style: ' 91 {type = "MAPPING_START", style = "BLOCK"}, 95 - it understands flow style: ' 97 {type = "MAPPING_START", style = "FLOW"}, 104 {type = "MAPPING_START", style = "FLOW", 131 {type = "SEQUENCE_START", style = "notexists"}, 133 to_raise "invalid sequence style 'notexists'" 134 - it understands block style: [all …]
|
/freebsd/contrib/tcp_wrappers/ |
H A D | Makefile | 16 @echo " make REAL_DAEMON_DIR=/foo/bar STYLE=-DPROCESS_OPTIONS sys-type" 94 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \ 100 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \ 106 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \ 112 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \ 118 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \ 124 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \ 130 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \ 136 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \ 141 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \ [all …]
|
/freebsd/crypto/krb5/src/windows/leash/htmlhelp/html/ |
H A D | Renew_Tickets2.html | 18 …style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2"><tbody><tr><td s… 22 …style="font-weight: bold; width: 181px; background-color: rgb(204, 255, 255);" align="undefined" v… 26 …style="font-weight: bold; width: 181px; background-color: rgb(204, 255, 255);" align="undefined" v… 29 …style="font-weight: bold; width: 181px; background-color: rgb(204, 255, 255);" align="undefined" v…
|
/freebsd/crypto/openssl/doc/life-cycles/ |
H A D | cipher.dot | 4 begin [label=start, color="#deeaee", style="filled"]; 5 newed [fontcolor="#c94c4c", style="solid"]; 10 end [label="freed", color="#deeaee", style="filled"]; 20 style=dashed]; 25 style=dashed]; 29 style=dashed]; 35 style=dashed]; 39 most -> newed [label="EVP_CIPHER_CTX_reset", style=dashed, 41 most [label="any of the initialised\nupdated or finaled states", style=dashed, 49 begin [label=start, color="#deeaee", style="filled"]; [all …]
|
/freebsd/share/man/man9/ |
H A D | altq.9 | 250 ##old-style## ##new-style## 269 ##old-style## ##new-style## 292 In the new style, 345 The new style 349 ##old-style## ##new-style## 387 is already converted to the new style. 400 ##old-style## ##new-style## 432 ##old-style## ##new-style## 449 ##old-style## ##new-style## 487 ##old-style## ##new-style## [all …]
|
/freebsd/contrib/mandoc/ |
H A D | mandoc.css | 3 * Standard style sheet for mandoc(1) -Thtml and man.cgi(8). 23 /* Some browsers set border-color in a browser style for tbody, 101 .Bl-bullet { list-style-type: disc; 104 .Bl-dash { list-style-type: none; 108 .Bl-item { list-style-type: none; 121 font-style: normal; 166 .Rs { font-style: normal; 169 .RsB { font-style: italic; 173 .RsI { font-style: italic; 175 .RsJ { font-style: italic; [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | FileSpec.cpp | 39 static constexpr FileSpec::Style GetNativeStyle() { in GetNativeStyle() 41 return FileSpec::Style::windows; in GetNativeStyle() 43 return FileSpec::Style::posix; in GetNativeStyle() 47 bool PathStyleIsPosix(FileSpec::Style style) { in PathStyleIsPosix() argument 48 return llvm::sys::path::is_style_posix(style); in PathStyleIsPosix() 51 const char *GetPathSeparators(FileSpec::Style style) { in GetPathSeparators() argument 52 return llvm::sys::path::get_separator(style).data(); in GetPathSeparators() 55 char GetPreferredPathSeparator(FileSpec::Style styl argument 59 Denormalize(llvm::SmallVectorImpl<char> & path,FileSpec::Style style) Denormalize() argument 71 FileSpec(llvm::StringRef path,Style style) FileSpec() argument 174 SetFile(llvm::StringRef pathname,Style style) SetFile() argument 537 format(const FileSpec & F,raw_ostream & Stream,StringRef Style) format() argument [all...] |
/freebsd/contrib/elftoolchain/libelftc/ |
H A D | elftc_demangle.c | 39 is_mangled(const char *s, unsigned int style) in is_mangled() argument 42 switch (style) { in is_mangled() 43 case ELFTC_DEM_ARM: return (is_cpp_mangled_ARM(s) ? style : 0); in is_mangled() 44 case ELFTC_DEM_GNU2: return (is_cpp_mangled_gnu2(s) ? style : 0); in is_mangled() 45 case ELFTC_DEM_GNU3: return (is_cpp_mangled_gnu3(s) ? style : 0); in is_mangled() 48 /* No style or invalid style spcified, try to guess. */ in is_mangled() 61 demangle(const char *s, unsigned int style, unsigned int rc) in demangle() argument 65 switch (style) { in demangle() 79 unsigned int style, rc; in elftc_demangle() local 82 style = flags & 0xFFFF; in elftc_demangle() [all …]
|
/freebsd/crypto/heimdal/doc/doxyout/gssapi/html/ |
H A D | doxygen.css | 144 font-style: italic; 168 font-style: italic; 205 font-style: italic; 216 font-style: italic; 235 border-top-style: solid; 236 border-right-style: none; 237 border-bottom-style: none; 238 border-left-style: none; 253 border-top-style: solid; 254 border-right-style: none; [all …]
|
/freebsd/crypto/heimdal/doc/doxyout/hcrypto/html/ |
H A D | doxygen.css | 144 font-style: italic; 168 font-style: italic; 205 font-style: italic; 216 font-style: italic; 235 border-top-style: solid; 236 border-right-style: none; 237 border-bottom-style: none; 238 border-left-style: none; 253 border-top-style: solid; 254 border-right-style: none; [all …]
|