Home
last modified time | relevance | path

Searched refs:desc (Results 1 – 25 of 1739) sorted by relevance

12345678910>>...70

/openbsd/src/gnu/usr.bin/perl/t/perf/
Dbenchmarks116 desc => 'function call with no args or body',
121 desc => '&foo function call with no args or body',
126 desc => 'function call with 3 local lexical vars',
131 desc => 'function call with 2 local lex vars and 1 return value',
136 desc => 'function call with 2 local lex vars and 1 return TEMP value',
141 desc => 'function call with 3 local lex vars and 3 return values',
146 desc => 'function call with 3 local lex vars and 3 string return values',
151 desc => 'function call with 3 local lex vars and 3 TEMP return values',
156 desc => 'basic recursive function call',
162 desc => 'sub called in scalar context',
[all …]
/openbsd/src/gnu/usr.bin/perl/t/op/
Dtaint.t125 my ($code, $what, $desc) = @_;
126 $desc //= $what;
128 is(eval { $code->(); }, undef, $desc);
267 my ($desc, $s, $res, $res2, $one);
269 $desc = "match with string tainted";
274 is_tainted($s, "$desc: s tainted");
275 isnt_tainted($res, "$desc: res not tainted");
276 isnt_tainted($one, "$desc: \$1 not tainted");
277 is($res, 1, "$desc: res value");
278 is($one, 'abcd', "$desc: \$1 value");
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Win32/
DWin32.pm342 my($desc, $major, $minor, $build, $id, undef, undef, $suitemask, $producttype)
346 ($cached_os, $cached_desc) = _GetOSName($desc, $major, $minor, $build, $id,
354 my($name,$desc) = @_ ? @_ : GetOSName();
356 if ($desc =~ /^Windows Home Server\b/ || $desc =~ /^Windows XP Professional x64 Edition\b/) {
357 ($name, $desc) = ($desc, "");
359 elsif ($desc =~ s/\s*(Windows (.*) Server( \d+)?)//) {
361 $desc =~ s/^\s+//;
368 if ($desc =~ s/\s*(HPC|Small Business|Web) Server//) {
370 $desc =~ s/^\s*//;
377 $name .= " $desc" if length $desc;
[all …]
/openbsd/src/gnu/usr.bin/perl/dist/Tie-File/t/
D43_synopsis.t26 my $desc = 'Tie::File';
31 ? print "ok $N - $desc\n"
32 : print "not ok $N - $desc\n";
35 $desc = "first element in array corresponds to first line of file";
37 ? print "ok $N - $desc\n"
38 : print "not ok $N - $desc\n";
41 $desc = "last element in array corresponds to last line of file";
43 ? print "ok $N - $desc\n"
44 : print "not ok $N - $desc\n";
47 $desc = "got expected amount of records in file";
[all …]
/openbsd/src/gnu/usr.bin/perl/regen/
Dmg_vtable.pl124 desc => 'Special scalar variable' },
129 desc => 'Holds overload table (AMT) on stash' },
132 desc => 'Boyer-Moore (fast string search)' },
134 desc => "Regex match position data\n(\@+ and \@- vars)" },
136 desc => 'Regex match position data element' },
137 env => { char => 'E', vtable => 'env', desc => '%ENV hash' },
139 desc => '%ENV hash element' },
141 readonly_acceptable => 1, desc => "Formline ('compiled' format)" },
143 readonly_acceptable => 1, desc => 'm//g target' },
144 hints => { char => 'H', vtable => 'hints', desc => '%^H hash' },
[all …]
/openbsd/src/regress/lib/libcrypto/asn1/
Dasn1oct.c29 const char *desc; member
35 .desc = "Empty buffer gives empty string",
41 .desc = "all hex digits",
47 .desc = "all hex digits, scrambled",
53 .desc = "Embedded 0 byte",
59 .desc = "All zeroes",
65 .desc = "All bits set",
71 .desc = "negative length",
100 __func__, test->desc, test->want, got); in test_i2s_ASN1_OCTET_STRING()
149 const char *desc; member
[all …]
/openbsd/src/usr.bin/sndioctl/
Dsndioctl.c27 struct sioctl_desc desc; member
126 if (e->desc.node0.unit < 0 || e->desc.node1.unit < 0) in isdiag()
128 return e->desc.node1.unit == e->desc.node0.unit; in isdiag()
138 if ((strcmp(i->desc.node1.name, vstr) == 0) && in vecent()
139 (vunit < 0 || i->desc.node1.unit == vunit)) in vecent()
154 group = i->desc.group; in nextfunc()
155 func = i->desc.func; in nextfunc()
156 str = i->desc.node0.name; in nextfunc()
158 if (strcmp(i->desc.group, group) != 0 || in nextfunc()
159 strcmp(i->desc.node0.name, str) != 0 || in nextfunc()
[all …]
/openbsd/src/usr.sbin/relayd/
Drelay_http.c133 struct http_descriptor *desc; in relay_httpdesc_init() local
135 if ((desc = calloc(1, sizeof(*desc))) == NULL) in relay_httpdesc_init()
138 RB_INIT(&desc->http_headers); in relay_httpdesc_init()
139 cre->desc = desc; in relay_httpdesc_init()
145 relay_httpdesc_free(struct http_descriptor *desc) in relay_httpdesc_free() argument
147 if (desc == NULL) in relay_httpdesc_free()
150 free(desc->http_path); in relay_httpdesc_free()
151 desc->http_path = NULL; in relay_httpdesc_free()
152 free(desc->http_query); in relay_httpdesc_free()
153 desc->http_query = NULL; in relay_httpdesc_free()
[all …]
/openbsd/src/usr.sbin/httpd/
Dserver_http.c84 struct http_descriptor *desc; in server_httpdesc_init() local
86 if ((desc = calloc(1, sizeof(*desc))) == NULL) in server_httpdesc_init()
88 RB_INIT(&desc->http_headers); in server_httpdesc_init()
89 clt->clt_descreq = desc; in server_httpdesc_init()
91 if ((desc = calloc(1, sizeof(*desc))) == NULL) { in server_httpdesc_init()
95 RB_INIT(&desc->http_headers); in server_httpdesc_init()
96 clt->clt_descresp = desc; in server_httpdesc_init()
102 server_httpdesc_free(struct http_descriptor *desc) in server_httpdesc_free() argument
104 if (desc == NULL) in server_httpdesc_free()
107 free(desc->http_path); in server_httpdesc_free()
[all …]
/openbsd/src/gnu/usr.bin/perl/dist/Data-Dumper/t/
Dtrailing_comma.t15 desc => 'empty array',
19 desc => 'single-element array, no indent',
24 desc => 'single-element array, indent=1',
29 desc => 'single-element array, indent=2',
34 desc => 'two-element array, no indent',
39 desc => 'two-element array, indent=1',
44 desc => 'two-element array, indent=2',
49 desc => 'empty hash',
53 desc => 'single-element hash, no indent',
58 desc => 'single-element hash, indent=1',
[all …]
/openbsd/src/regress/lib/libcrypto/bn/
Dbn_mul_div.c94 const char *desc; member
103 .desc = "BN_div (64 bit / 64 bit)",
110 .desc = "BN_div (128 bit / 128 bit)",
117 .desc = "BN_div (196 bit / 196 bit)",
124 .desc = "BN_div (256 bit / 256 bit)",
131 .desc = "BN_div (320 bit / 320 bit)",
138 .desc = "BN_div (384 bit / 384 bit)",
145 .desc = "BN_div (384 bit / 128 bit)",
152 .desc = "BN_div (448 bit / 256 bit)",
159 .desc = "BN_div (512 bit / 512 bit)",
[all …]
Dbn_print.c39 const char *desc; member
43 .desc = "zero",
47 .desc = "minus one",
51 .desc = "minus one",
56 .desc = "largest word",
61 .desc = "smallest word",
66 .desc = "largest negative non-word",
71 .desc = "smallest positive non-word",
77 .desc = "largest word",
81 .desc = "smallest word",
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_ioctl_test.cpp72 const ioctl_desc *desc = ioctl_lookup(EVIOCGKEY(16)); in TEST() local
73 EXPECT_NE((void *)0, desc); in TEST()
74 EXPECT_EQ(EVIOCGKEY(0), desc->req); in TEST()
79 ioctl_desc desc; in TEST() local
81 bool res = ioctl_decode(desc_value, &desc); in TEST()
83 EXPECT_EQ(ioctl_desc::WRITE, desc.type); in TEST()
84 EXPECT_EQ(4U, desc.size); in TEST()
88 ioctl_desc desc; in TEST() local
90 bool res = ioctl_decode(desc_value, &desc); in TEST()
92 EXPECT_EQ(ioctl_desc::WRITE, desc.type); in TEST()
[all …]
/openbsd/src/gnu/usr.bin/perl/ext/XS-APItest/t/
Dcall.t95 my $desc = $description . ($keep ? ' G_KEEPERR' : '');
105 "$desc G_EVAL call_sv('d')");
106 is($@, $exp_err, "$desc G_EVAL call_sv('d') - \$@");
107 is($warn, $exp_warn, "$desc G_EVAL call_sv('d') - warning");
113 "$desc G_EVAL call_pv('d')");
114 is($@, $exp_err, "$desc G_EVAL call_pv('d') - \$@");
115 is($warn, $exp_warn, "$desc G_EVAL call_pv('d') - warning");
121 "$desc G_EVAL call_argv('d')");
122 is($@, $exp_err, "$desc G_EVAL call_argv('d') - \$@");
123 is($warn, $exp_warn, "$desc G_EVAL call_argv('d') - warning");
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
Dstatic-mem2.C4 class desc; variable
9 static desc the_desc;
11 virtual desc *get_desc();
14 class desc : public a_desc {
17 static desc the_desc;
19 desc(int);
21 desc *get_desc();
25 desc desc::the_desc(1);
27 desc a_desc::the_desc(0);
/openbsd/src/gnu/gcc/gcc/
Dloop-unroll.c216 struct niter_desc *desc = get_simple_loop_desc (loop); in loop_exit_at_end_p() local
219 if (desc->in_edge->dest != loop->latch) in loop_exit_at_end_p()
347 struct niter_desc *desc; in decide_peel_once_rolling() local
361 desc = get_simple_loop_desc (loop); in decide_peel_once_rolling()
364 if (!desc->simple_p in decide_peel_once_rolling()
365 || desc->assumptions in decide_peel_once_rolling()
366 || desc->infinite in decide_peel_once_rolling()
367 || !desc->const_iter in decide_peel_once_rolling()
368 || desc->niter != 0) in decide_peel_once_rolling()
387 struct niter_desc *desc; in decide_peel_completely() local
[all …]
/openbsd/src/gnu/llvm/llvm/tools/llvm-pdbutil/
Dllvm-pdbutil.cpp160 cl::desc("<input PDB files>"),
163 cl::opt<bool> Native("native", cl::desc("Use native PDB reader instead of DIA"),
167 ShowClassHierarchy("hierarchy", cl::desc("Show lexical and class parents"),
171 cl::desc("Don't show any SymIndexId fields (overrides -hierarchy)"),
176 cl::desc("When dumping a SymIndexId, dump the full details of the "
180 static cl::opt<bool> Enums("enums", cl::desc("Dump enum types"),
182 static cl::opt<bool> Pointers("pointers", cl::desc("Dump enum types"),
184 static cl::opt<bool> UDTs("udts", cl::desc("Dump udt types"),
187 cl::desc("Dump compiland information"),
190 cl::desc("Dump function signature information"),
[all …]
/openbsd/src/gnu/usr.bin/cvs/emx/
Dsavecwd.c54 cwd->desc = -1;
60 cwd->desc = open (".", O_RDONLY);
61 if (cwd->desc < 0)
70 if (fchdir (cwd->desc))
74 close (cwd->desc);
75 cwd->desc = -1;
81 close (cwd->desc);
82 cwd->desc = -1;
115 if (cwd->desc >= 0)
117 if (fchdir (cwd->desc))
[all …]
/openbsd/src/gnu/usr.bin/cvs/lib/
Dsavecwd.c55 cwd->desc = -1;
61 cwd->desc = open (".", O_RDONLY);
62 if (cwd->desc < 0)
71 if (fchdir (cwd->desc))
75 close (cwd->desc);
76 cwd->desc = -1;
82 close (cwd->desc);
83 cwd->desc = -1;
116 if (cwd->desc >= 0)
118 if (fchdir (cwd->desc))
[all …]
/openbsd/src/sys/dev/usb/
Dumidireg.h69 #define NEXT_D(desc) TO_D((caddr_t)(desc)+(desc)->bLength) argument
70 #define TO_IFD(desc) ((usb_interface_descriptor_t *)(desc)) argument
71 #define TO_CSIFD(desc) ((struct umidi_cs_interface_descriptor *)(desc)) argument
72 #define TO_EPD(desc) ((usb_endpoint_descriptor_t *)(desc)) argument
73 #define TO_CSEPD(desc) ((struct umidi_cs_endpoint_descriptor *)(desc)) argument
/openbsd/src/usr.bin/openssl/
Dverify.c106 .desc = "Certificate Authority file",
113 .desc = "Certificate Authority path",
120 .desc = "Certificate Revocation List file",
127 .desc = "Trusted certificates file",
134 .desc = "Untrusted certificates file",
140 .desc = "Verbose",
146 .desc = "",
157 .desc = "Use epoch as the verification time",
161 .desc = "Check the root CA self-signed certificate signature",
165 .desc = "Enable CRL checking for the leaf certificate",
[all …]
Dsmime.c262 .desc = "Encrypt PEM output with CBC AES",
268 .desc = "Encrypt PEM output with CBC AES",
274 .desc = "Encrypt PEM output with CBC AES",
282 .desc = "Encrypt PEM output with CBC Camellia",
288 .desc = "Encrypt PEM output with CBC Camellia",
294 .desc = "Encrypt PEM output with CBC Camellia",
302 .desc = "Encrypt with DES",
308 .desc = "Encrypt with triple DES",
316 .desc = "Encrypt with RC2-40 (default)",
322 .desc = "Encrypt with RC2-64",
[all …]
/openbsd/src/sys/arch/amd64/amd64/
Defi_machdep.c127 EFI_MEMORY_DESCRIPTOR *desc; in efi_map_runtime() local
137 desc = mmap; in efi_map_runtime()
139 if (desc->Attribute & EFI_MEMORY_RUNTIME) { in efi_map_runtime()
140 vaddr_t va = desc->VirtualStart; in efi_map_runtime()
141 paddr_t pa = desc->PhysicalStart; in efi_map_runtime()
142 int npages = desc->NumberOfPages; in efi_map_runtime()
147 desc->Type, desc->PhysicalStart, in efi_map_runtime()
148 desc->VirtualStart, desc->NumberOfPages, in efi_map_runtime()
149 desc->Attribute); in efi_map_runtime()
164 if ((desc->Attribute & EFI_MEMORY_WB) == 0) in efi_map_runtime()
[all …]
/openbsd/src/gnu/llvm/llvm/tools/opt/
Dopt.cpp68 static cl::list<const PassInfo *, bool, PassNameParser> PassList(cl::desc(
73 cl::desc("Enable the new pass manager, translating "
84 cl::desc(
88 cl::desc("Alias for -passes"));
91 cl::desc("Print available passes that can be "
95 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
99 OutputFilename("o", cl::desc("Override output filename"),
103 Force("f", cl::desc("Enable binary output on terminals"));
107 cl::desc("Do not write result bitcode file"), cl::Hidden);
110 OutputAssembly("S", cl::desc("Write output as LLVM assembly"));
[all …]
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DCommandFlags.cpp115 "march", cl::desc("Architecture to generate code for (see --version)")); in CGOPT()
119 "mcpu", cl::desc("Target a specific cpu type (-mcpu=help for details)"), in CGOPT()
125 cl::desc("Target specific attributes (-mattr=help for details)"), in CGOPT()
130 "relocation-model", cl::desc("Choose relocation model"), in CGOPT()
148 "thread-model", cl::desc("Choose threading model"), in CGOPT()
156 "code-model", cl::desc("Choose code model"), in CGOPT()
165 "exception-model", cl::desc("exception model"), in CGOPT()
183 cl::desc( in CGOPT()
195 cl::desc("Specify frame pointer elimination optimization"), in CGOPT()
208 cl::desc("Enable optimizations that may decrease FP precision"), in CGOPT()
[all …]

12345678910>>...70