| /openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-shell/ |
| H A D | redirects.txt | 3 # RUN: echo "not-present" > %t.stdout-write 4 # RUN: echo "is-present" > %t.stdout-write 7 # STDOUT-WRITE-NOT: not-present 8 # STDOUT-WRITE: is-present 13 # STDOUT-APPEND: is-present 19 # RUN: echo "not-present" > %t.stderr-write 23 # STDERR-WRITE-NOT: not-present 35 # RUN: echo "not-present" > %t.combined 39 # COMBINED-WRITE-NOT: not-present
|
| /openbsd-src/gnu/usr.bin/perl/ext/Hash-Util-FieldHash/t/ |
| H A D | 11_hashassign.t | 24 is ($comma{"k" . $key}, "value", 'is key present? (unoptimised)'); 26 is ($comma{key}, "value", 'is key present? (maybe optimised)'); 29 is ($comma{$temp[0]}, "value", 'is key present? (using LHS of =>)'); 43 is ($temp{'k' . $key}, "value", 'is key present? (unoptimised)'); 45 is ($temp{key}, "value", 'is key present? (maybe optimised)'); 47 is ($comma{$temp[0]}, "value", 'is key present? (using LHS of =>)'); 65 is ($arrow{"K" . $key}, "Value", 'is key present? (unoptimised)'); 67 is ($arrow{Key}, "Value", 'is key present? (maybe optimised)'); 70 is ($arrow{$temp[0]}, "Value", 'is key present? (using LHS of =>)'); 84 is ($temp{'K' . $key}, "Value", 'is key present? (unoptimised)'); [all …]
|
| /openbsd-src/lib/libcrypto/bytestring/ |
| H A D | bs_cbs.c | 549 int present; in CBS_get_optional_asn1_octet_string() local 551 if (!CBS_get_optional_asn1(cbs, &child, &present, tag)) in CBS_get_optional_asn1_octet_string() 554 if (present) { in CBS_get_optional_asn1_octet_string() 562 *out_present = present; in CBS_get_optional_asn1_octet_string() 572 int present; in CBS_get_optional_asn1_uint64() local 574 if (!CBS_get_optional_asn1(cbs, &child, &present, tag)) in CBS_get_optional_asn1_uint64() 577 if (present) { in CBS_get_optional_asn1_uint64() 592 int present; in CBS_get_optional_asn1_bool() local 594 if (!CBS_get_optional_asn1(cbs, &child, &present, tag)) in CBS_get_optional_asn1_bool() 597 if (present) { in CBS_get_optional_asn1_bool()
|
| /openbsd-src/lib/libssl/ |
| H A D | bs_cbs.c | 549 int present; in CBS_get_optional_asn1_octet_string() local 551 if (!CBS_get_optional_asn1(cbs, &child, &present, tag)) in CBS_get_optional_asn1_octet_string() 554 if (present) { in CBS_get_optional_asn1_octet_string() 562 *out_present = present; in CBS_get_optional_asn1_octet_string() 572 int present; in CBS_get_optional_asn1_uint64() local 574 if (!CBS_get_optional_asn1(cbs, &child, &present, tag)) in CBS_get_optional_asn1_uint64() 577 if (present) { in CBS_get_optional_asn1_uint64() 592 int present; in CBS_get_optional_asn1_bool() local 594 if (!CBS_get_optional_asn1(cbs, &child, &present, tag)) in CBS_get_optional_asn1_bool() 597 if (present) { in CBS_get_optional_asn1_bool()
|
| H A D | ssl_asn1.c | 247 int present; in d2i_SSL_SESSION() 322 if (!CBS_get_optional_asn1(&session, &peer_cert, &present, in d2i_SSL_SESSION() 325 if (present) { in d2i_SSL_SESSION() 337 if (!CBS_get_optional_asn1_octet_string(&session, &session_id, &present, in d2i_SSL_SESSION() 340 if (present) { in d2i_SSL_SESSION() 358 if (!CBS_get_optional_asn1_octet_string(&session, &hostname, &present, in d2i_SSL_SESSION() 361 if (present) { in d2i_SSL_SESSION() 384 if (!CBS_get_optional_asn1_octet_string(&session, &ticket, &present, in d2i_SSL_SESSION() 387 if (present) { in d2i_SSL_SESSION() 253 int present; d2i_SSL_SESSION() local
|
| /openbsd-src/regress/sys/kern/pledge/generic/ |
| H A D | tests.out | 3 test(test_inet): pledge=("",NULL) status=134 signal=6 coredump=present pledged_syscall=97 5 test(test_inet): pledge=("stdio",NULL) status=134 signal=6 coredump=present pledged_syscall=97 6 test(test_inet): pledge=("inet",NULL) status=134 signal=6 coredump=present pledged_syscall=6 8 test(test_kill): pledge=("fattr",NULL) status=134 signal=6 coredump=present pledged_syscall=122
|
| /openbsd-src/usr.bin/ssh/ |
| H A D | gss-serv.c | 79 ssh_gssapi_test_oid_supported(OM_uint32 *ms, gss_OID member, int *present) in ssh_gssapi_test_oid_supported() argument 83 return gss_test_oid_set_member(ms, member, supported_oids, present); in ssh_gssapi_test_oid_supported() 145 int present; in ssh_gssapi_supported_oids() local 153 &supported_mechs[i]->oid, supported, &present))) in ssh_gssapi_supported_oids() 154 present = 0; in ssh_gssapi_supported_oids() 155 if (present) in ssh_gssapi_supported_oids()
|
| H A D | PROTOCOL.sshsig | 4 At present, only detached and armored signatures are supported. 15 The header MUST be present at the start of every signature. 17 Likewise, the footer MUST be present at the end of every 59 The reserved value is present to encode future information 93 The reserved value is present to encode future information
|
| H A D | auth2-gss.c | 66 int r, present; in userauth_gssapi() local 89 present = 0; in userauth_gssapi() 97 ssh_gssapi_test_oid_supported(&ms, &goid, &present); in userauth_gssapi() 101 } while (mechs > 0 && !present); in userauth_gssapi() 103 if (!present) { in userauth_gssapi()
|
| /openbsd-src/gnu/usr.bin/perl/t/lib/warnings/ |
| H A D | pp_sys | 271 # flock not present 303 # send not present 304 # bind not present 305 # connect not present 306 # accept not present 307 # shutdown not present 308 # setsockopt not present 309 # getsockopt not present 310 # getsockname not present 311 # getpeername not present [all …]
|
| /openbsd-src/regress/lib/libssl/bytestring/ |
| H A D | bytestringtest.c | 195 int present; in test_get_asn1() local 233 CHECK(CBS_get_optional_asn1(&data, &contents, &present, 0xa0)); in test_get_asn1() 234 CHECK(!present); in test_get_asn1() 235 CHECK(CBS_get_optional_asn1_octet_string(&data, &contents, &present, in test_get_asn1() 237 CHECK(!present); in test_get_asn1() 246 CHECK(CBS_get_optional_asn1(&data, &contents, &present, 0xa0)); in test_get_asn1() 247 CHECK(!present); in test_get_asn1() 248 CHECK(CBS_get_optional_asn1(&data, &contents, &present, 0xa1)); in test_get_asn1() 249 CHECK(present); in test_get_asn1() 255 CHECK(CBS_get_optional_asn1_octet_string(&data, &contents, &present, in test_get_asn1() [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | CFIVerify.rst | 19 schemes are still present in the final binary. 24 This tool will be present as a part of the LLVM toolchain, and will reside in 28 - Unit tests to validate code sections, present in 30 - Integration tests, present in "/llvm/tools/clang/test/LLVMCFIVerify". These 41 present in linker or compiler do not subvert CFI protections in the final 51 type). This type of directive has no security implications, but may present 87 present in these sections has already violated the control flow integrity.
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | __node_handle | 18 using value_type = see below; // not present for map containers 19 using key_type = see below; // not present for set containers 20 using mapped_type = see below; // not present for set containers 41 value_type& value() const; // not present for map containers 42 key_type& key() const; // not present for set containers 43 mapped_type& mapped() const; // not present for set containers
|
| /openbsd-src/gnu/usr.bin/perl/dist/Module-CoreList/t/ |
| H A D | utils.t | 17 is_deeply( \@foo, \@expected, '5.001 utils all present and correct' ); 21 is_deeply( \@foo, \@expected, '5.001 utils all present and correct' );
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Locale-Maketext-Simple/t/ |
| H A D | 1-basic.t | 25 ok(loc("Error %tense(%1,present)", 'uninstall'), "Error uninstalling"); 26 ok(loc("Error %tense(uninstall,present)"), "Error uninstalling");
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/f/ |
| H A D | std.c | 3682 if (next->u.R1003D.R1004.present) in ffestd_R1001dump_() 3711 assert (!f->u.R1005.R1007_or_R1008.present); in ffestd_R1001dump_1005_1_() 3712 assert (!f->u.R1005.R1009.present); in ffestd_R1001dump_1005_1_() 3714 if (f->u.R1005.R1004.present) in ffestd_R1001dump_1005_1_() 3724 if (f->u.R1005.R1006.present) in ffestd_R1001dump_1005_1_() 3743 assert (!f->u.R1005.R1007_or_R1008.present); in ffestd_R1001dump_1005_2_() 3744 assert (!f->u.R1005.R1009.present); in ffestd_R1001dump_1005_2_() 3745 assert (f->u.R1005.R1006.present); in ffestd_R1001dump_1005_2_() 3747 if (f->u.R1005.R1004.present) in ffestd_R1001dump_1005_2_() 3773 assert (!f->u.R1005.R1009.present); in ffestd_R1001dump_1005_3_() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/binutils/ |
| H A D | ieee.c | 493 bfd_boolean present; in ieee_read_expression() local 498 if (! ieee_read_optional_number (info, pp, &val, &present)) in ieee_read_expression() 501 if (present) in ieee_read_expression() 1065 bfd_boolean present; in parse_ieee_bb() local 1067 if (! ieee_read_optional_number (info, pp, &ignore, &present)) in parse_ieee_bb() 1069 if (! present) in parse_ieee_bb() 1152 bfd_boolean present; in parse_ieee_bb() local 1167 || ! ieee_read_optional_id (info, pp, &vstr, &vstrlen, &present)) in parse_ieee_bb() 1173 if (! ieee_read_optional_number (info, pp, &ignore, &present)) in parse_ieee_bb() 1175 if (! present) in parse_ieee_bb() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/binutils/ |
| H A D | ieee.c | 494 bfd_boolean present; in ieee_read_expression() local 499 if (! ieee_read_optional_number (info, pp, &val, &present)) in ieee_read_expression() 502 if (present) in ieee_read_expression() 1066 bfd_boolean present; in parse_ieee_bb() local 1068 if (! ieee_read_optional_number (info, pp, &ignore, &present)) in parse_ieee_bb() 1070 if (! present) in parse_ieee_bb() 1153 bfd_boolean present; in parse_ieee_bb() local 1168 || ! ieee_read_optional_id (info, pp, &vstr, &vstrlen, &present)) in parse_ieee_bb() 1174 if (! ieee_read_optional_number (info, pp, &ignore, &present)) in parse_ieee_bb() 1176 if (! present) in parse_ieee_bb() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/lib/DBM_Filter/t/ |
| H A D | 01error.t | 83 like $@, qr/^Filter_Push: no parameters present/, 162 "croak if neither fetch or store is present"; 176 "croak if store is present but fetch isn't"; 190 "croak if fetch is present but store isn't";
|
| /openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | llvm-remark-size-diff.rst | 79 Which of OLD and NEW the ``function_name`` is present in. 163 Functions present in both files. 166 Functions only present in the first file. 169 Functions only present in the second file.
|
| /openbsd-src/sys/dev/onewire/ |
| H A D | onewire.c | 428 int present; in onewire_scan() local 463 present = 0; in onewire_scan() 467 present = 1; in onewire_scan() 471 if (!present) { in onewire_scan()
|
| /openbsd-src/gnu/usr.bin/perl/ext/POSIX/t/ |
| H A D | wrappers.t | 158 my $present = POSIX::time(); 161 cmp_ok($past, '<=', $present, 'time'); 162 cmp_ok($present, '<=', $future, 'time');
|
| /openbsd-src/sbin/isakmpd/ |
| H A D | exchange_num.cst | 34 # Special type signifying PAYLOAD_HASH or PAYLOAD_SIG must be present. 36 # Special type signifying PAYLOAD_NOTIFY or PAYLOAD_DELETE must be present.
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | OpenMPKinds.def | 113 OPENMP_DEFAULTMAP_MODIFIER(present) 158 OPENMP_MAP_MODIFIER_KIND(present) 164 OPENMP_MOTION_MODIFIER_KIND(present)
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-lipo/ |
| H A D | LipoOpts.td | 25 "Verify that the specified arch_types are present in the input file">; 29 HelpText<"Display the arch_types present in the input file">;
|