Home
last modified time | relevance | path

Searched refs:style (Results 1 – 25 of 635) sorted by relevance

12345678910>>...26

/freebsd/crypto/openssl/doc/man7/
H A Dlife_cycle-pkey.pod200 <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 Dlife_cycle-cipher.pod158 <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 Dlife_cycle-digest.pod140 <table style="border:1px solid; border-collapse:collapse">
141 <tr><th style="border:1px solid" align="left">Function Call</th>
142 <th style="border:1px solid" colspan="6">Current State</th></tr>
143 <tr><th style="border:1px solid"></th>
144 <th style="border:1px solid" align="center">start</th>
145 <th style="border:1px solid" align="center">newed</th>
146 <th style="border:1px solid" align="center">initialised</th>
147 <th style="border:1px solid" align="center">updated</th>
148 <th style="border:1px solid" align="center">finaled</th>
149 <th style="border:1px solid" align="center">squeezed</th>
[all …]
H A Dlife_cycle-mac.pod112 <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 Dlife_cycle-rand.pod104 <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 Dlife_cycle-kdf.pod91 <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 DPath.h82 friend const_iterator begin(StringRef path, Style style);
107 friend reverse_iterator rbegin(StringRef path, Style style);
122 const_iterator begin(StringRef path, Style style = Style::native);
132 reverse_iterator rbegin(StringRef path, Style style = Style::native);
155 void remove_filename(SmallVectorImpl<char> &path, Style style = Style::native);
170 Style style = Style::native);
196 Style style = Style::native);
202 StringRef remove_leading_dotslash(StringRef path, Style style = Style::native);
211 Style style = Style::native);
228 void append(SmallVectorImpl<char> &path, Style style, const Twine &a,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp41 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()
50 inline const char *separators(Style style) { in separators() argument
51 if (is_style_windows(style)) in separators()
56 inline char preferred_separator(Style style) { in preferred_separator() argument
57 if (real_style(style) == Style::windows) in preferred_separator()
62 StringRef find_first_component(StringRef path, Style style) { in find_first_component() argument
72 if (is_style_windows(style)) { in find_first_component()
[all …]
/freebsd/contrib/elftoolchain/libelftc/
H A Delftc_demangle.c39 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()
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()
86 ((style = is_mangled(mangledname, style)) == 0)) { in elftc_demangle()
[all …]
/freebsd/usr.bin/tail/
H A Dtail.c80 enum STYLE style; in main() local
99 if (style) \ in main()
110 style = (forward); \ in main()
116 style = (backward); \ in main()
122 style = NOTSET; in main()
185 if (style == FBYTES) in main()
186 style = RBYTES; in main()
187 else if (style == FLINES) in main()
188 style = RLINES; in main()
195 if (style == NOTSET) { in main()
[all …]
/freebsd/crypto/openssl/doc/life-cycles/
H A Dcipher.dot4 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 …]
H A Ddigest.dot4 begin [label=start, color="#deeaee", style="filled"];
5 newed [label=newed, fontcolor="#c94c4c", style="solid"];
10 end [label="freed", color="#deeaee", style="filled"];
21 finaled -> newed [label="EVP_MD_CTX_reset", style=dashed,
23 updated -> newed [label="EVP_MD_CTX_reset", style=dashed,
25 updated -> initialised [label="EVP_DigestInit", style=dashed,
27 finaled -> initialised [label="EVP_DigestInit", style=dashed,
31 squeezed -> newed [label="EVP_MD_CTX_reset", style=dashed,
33 squeezed -> initialised [label="EVP_DigestInit", style=dashed,
/freebsd/contrib/libyaml/tests/
H A Drun-emitter-test-suite.c11 void get_value(char *line, char *value, int *style);
88 int style; in main() local
105 style = YAML_BLOCK_MAPPING_STYLE; in main()
107 style = YAML_FLOW_MAPPING_STYLE; in main()
109 style = YAML_FLOW_MAPPING_STYLE; in main()
112 get_tag(line, tag), 0, style); in main()
118 style = YAML_BLOCK_SEQUENCE_STYLE; in main()
120 style = YAML_FLOW_MAPPING_STYLE; in main()
122 style = YAML_FLOW_SEQUENCE_STYLE; in main()
125 get_tag(line, tag), 0, style); in main()
[all …]
/freebsd/contrib/mandoc/
H A Dmandoc.css3 * 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
[all...]
/freebsd/contrib/lyaml/ext/yaml/
H A Demitter.c171 const char *style = NULL; in emit_MAPPING_START() local
173 RAWGET_STRDUP (style); lua_pop (L, 1); in emit_MAPPING_START()
175 #define MENTRY(_s) (STREQ (style, #_s)) { yaml_style = YAML_##_s##_MAPPING_STYLE; } in emit_MAPPING_START()
176 if (style == NULL) { yaml_style = YAML_ANY_MAPPING_STYLE; } else in emit_MAPPING_START()
183 "invalid mapping style '%s'", style)); in emit_MAPPING_START()
187 if (style) free ((void *) style); in emit_MAPPING_START()
216 const char *style = NULL; in emit_SEQUENCE_START() local
218 RAWGET_STRDUP (style); lua_pop (L, 1); in emit_SEQUENCE_START()
220 #define MENTRY(_s) (STREQ (style, #_s)) { yaml_style = YAML_##_s##_SEQUENCE_STYLE; } in emit_SEQUENCE_START()
221 if (style == NULL) { yaml_style = YAML_ANY_SEQUENCE_STYLE; } else in emit_SEQUENCE_START()
[all …]
/freebsd/contrib/llvm-project/lld/docs/
H A Dpartitions.dot5 main [style=filled,fillcolor=lightblue];
6 f1 [style=filled,fillcolor=lightsalmon];
7 f2 [style=filled,fillcolor=palegreen];
8 f3 [style=filled,fillcolor=lightblue];
9 f4 [style=filled,fillcolor=lightsalmon];
10 f5 [style=filled,fillcolor=lightblue];
11 f6 [style=filled,fillcolor=palegreen];
/freebsd/
H A D.git-blame-ignore-revs2 # This includes whitespace, style(9), comment typos, etc. Changes that affect
11 # asmc style cleanup
13 # sys/bus.h style fixes
15 # sys/efi.h style(9) tweaks
17 # sys/cpu.h style(9) fixes
19 # witness white space cleanup and style(9) tweeks
21 # style fixes for device_if.m
23 # iflib style tweaks
37 # style fixes for iflib
41 # style an
[all...]
/freebsd/crypto/heimdal/doc/doxyout/gssapi/html/
H A Ddoxygen.css144 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 …]
H A Dgraph_legend.dot5 …",fontsize=10,height=0.2,width=0.4,fontname="FreeSans",fillcolor="grey75",style="filled" fontcolor…
6 Node10 -> Node9 [dir=back,color="midnightblue",fontsize=10,style="solid",fontname="FreeSans"];
8 Node11 -> Node10 [dir=back,color="midnightblue",fontsize=10,style="solid",fontname="FreeSans"];
10 Node13 -> Node9 [dir=back,color="darkgreen",fontsize=10,style="solid",fontname="FreeSans"];
12 Node14 -> Node9 [dir=back,color="firebrick4",fontsize=10,style="solid",fontname="FreeSans"];
14 Node15 -> Node9 [dir=back,color="midnightblue",fontsize=10,style="solid",fontname="FreeSans"];
16 Node16 -> Node9 [dir=back,color="midnightblue",fontsize=10,style="solid",fontname="FreeSans"];
18 …Node17 -> Node16 [dir=back,color="orange",fontsize=10,style="dashed",label="< int >",fontname="Fre…
20 …Node18 -> Node9 [dir=back,color="darkorchid3",fontsize=10,style="dashed",label="m_usedClass",fontn…
/freebsd/crypto/heimdal/doc/doxyout/hcrypto/html/
H A Ddoxygen.css144 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/hdb/html/
H A Ddoxygen.css144 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/hx509/html/
H A Ddoxygen.css144 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/krb5/html/
H A Ddoxygen.css144 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/ntlm/html/
H A Ddoxygen.css144 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/wind/html/
H A Ddoxygen.css144 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 …]

12345678910>>...26