| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| D | UnicodeCaseFold.cpp | 16 int llvm::sys::unicode::foldCharSimple(int C) { in foldCharSimple() argument 17 if (C < 0x0041) in foldCharSimple() 18 return C; in foldCharSimple() 20 if (C <= 0x005a) in foldCharSimple() 21 return C + 32; in foldCharSimple() 23 if (C == 0x00b5) in foldCharSimple() 25 if (C < 0x00c0) in foldCharSimple() 26 return C; in foldCharSimple() 28 if (C <= 0x00d6) in foldCharSimple() 29 return C + 32; in foldCharSimple() [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/src/ |
| D | locale-inst.cc | 38 #ifndef C 39 # define C char macro 46 template class moneypunct<C, false>; 47 template class moneypunct<C, true>; 48 template struct __moneypunct_cache<C, false>; 49 template struct __moneypunct_cache<C, true>; 50 template class moneypunct_byname<C, false>; 51 template class moneypunct_byname<C, true>; 53 template class money_get<C, istreambuf_iterator<C> >; 54 template class money_put<C, ostreambuf_iterator<C> >; [all …]
|
| D | compatibility-ldbl.cc | 41 #define C char macro 42 template class num_get<C, istreambuf_iterator<C> >; 43 template class num_put<C, ostreambuf_iterator<C> >; 44 template class money_get<C, istreambuf_iterator<C> >; 45 template class money_put<C, ostreambuf_iterator<C> >; 46 template const num_put<C>& use_facet<num_put<C> >(const locale&); 47 template const num_get<C>& use_facet<num_get<C> >(const locale&); 48 template const money_put<C>& use_facet<money_put<C> >(const locale&); 49 template const money_get<C>& use_facet<money_get<C> >(const locale&); 50 template bool has_facet<num_put<C> >(const locale&); [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/MIRParser/ |
| D | MILexer.cpp | 50 StringRef upto(Cursor C) const { in upto() 51 assert(C.Ptr >= Ptr && C.Ptr <= End); in upto() 52 return StringRef(Ptr, C.Ptr - Ptr); in upto() 85 static Cursor skipWhitespace(Cursor C) { in skipWhitespace() argument 86 while (isblank(C.peek())) in skipWhitespace() 87 C.advance(); in skipWhitespace() 88 return C; in skipWhitespace() 91 static bool isNewlineChar(char C) { return C == '\n' || C == '\r'; } in isNewlineChar() argument 94 static Cursor skipComment(Cursor C) { in skipComment() argument 95 if (C.peek() != ';') in skipComment() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/lib/unicore/ |
| D | CaseFolding.txt | 39 # C: common case folding, common mappings shared by both simple and full mappings. 49 # A. To do a simple case folding, use the mappings with status C + S. 50 # B. To do a full case folding, use the mappings with status C + F. 60 # have the value C for the status field, and the code point itself for the mapping field. 63 0041; C; 0061; # LATIN CAPITAL LETTER A 64 0042; C; 0062; # LATIN CAPITAL LETTER B 65 0043; C; 0063; # LATIN CAPITAL LETTER C 66 0044; C; 0064; # LATIN CAPITAL LETTER D 67 0045; C; 0065; # LATIN CAPITAL LETTER E 68 0046; C; 0066; # LATIN CAPITAL LETTER F [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/man/ |
| D | guesswork-no-quoting | 11 C<"foo">, 12 C<'foo'>, 13 C<`foo`>, 14 C<`foo'>, 17 C<$#f>, 18 C<$foo[4]>, 19 C<$foo{bar}>, 20 C<%foo>, 21 C<@foo>, 22 C<&foo>, [all …]
|
| /openbsd/src/gnu/usr.bin/perl/ext/POSIX/lib/ |
| D | POSIX.pod | 35 The notation C<[C99]> indicates functions that were added in the ISO/IEC 36 9899:1999 version of the C language standard. Some may not be available 45 You should either prevent the exporting (by saying S<C<use POSIX ();>>, 46 as usual) and then use fully qualified names (e.g. C<POSIX::SEEK_END>), 48 If you do neither and opt for the default (as in S<C<use POSIX;>>), you 51 A few functions are not implemented because they are C specific. If you 54 exist. For example, trying to access the C<setjmp()> call will elicit the 55 message "C<setjmp() is C-specific: use eval {} instead>". 59 For example, one vendor may not define C<EDEADLK>, or the semantics of the 60 errno values set by C<open(2)> might not be quite right. Perl does not [all …]
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | c.opt | 1 ; Options for the C, ObjC, C++ and ObjC++ front ends. 2 ; Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 26 C 32 C++ 38 C ObjC C++ ObjC++ Joined Separate 41 C ObjC C++ ObjC++ Joined Separate 44 C 45 C ObjC C++ ObjC++ 49 C ObjC C++ ObjC++ 53 C ObjC C++ ObjC++ Joined Separate [all …]
|
| /openbsd/src/regress/lib/libcrypto/wycheproof/ |
| D | wycheproof.go | 591 "brainpoolP224r1": C.NID_brainpoolP224r1, 592 "brainpoolP256r1": C.NID_brainpoolP256r1, 593 "brainpoolP320r1": C.NID_brainpoolP320r1, 594 "brainpoolP384r1": C.NID_brainpoolP384r1, 595 "brainpoolP512r1": C.NID_brainpoolP512r1, 596 "brainpoolP224t1": C.NID_brainpoolP224t1, 597 "brainpoolP256t1": C.NID_brainpoolP256t1, 598 "brainpoolP320t1": C.NID_brainpoolP320t1, 599 "brainpoolP384t1": C.NID_brainpoolP384t1, 600 "brainpoolP512t1": C.NID_brainpoolP512t1, [all …]
|
| /openbsd/src/regress/sbin/ipsecctl/ |
| D | ike61.ok | 3 C set [Phase 1]:1.1.1.1=peer-1.1.1.1 force 4 C set [peer-1.1.1.1]:Phase=1 force 5 C set [peer-1.1.1.1]:Address=1.1.1.1 force 6 C set [peer-1.1.1.1]:Configuration=phase1-peer-1.1.1.1 force 7 C set [phase1-peer-1.1.1.1]:EXCHANGE_TYPE=ID_PROT force 8 C add [phase1-peer-1.1.1.1]:Transforms=phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072 f… 9 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:AUTHENTICATION_METHOD=RSA_SIG fo… 10 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:HASH_ALGORITHM=SHA force 11 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:ENCRYPTION_ALGORITHM=AES_CBC for… 12 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:KEY_LENGTH=128,128:256 force [all …]
|
| D | ike14.ok | 3 C set [Phase 1]:1.1.1.1=peer-1.1.1.1 force 4 C set [peer-1.1.1.1]:Phase=1 force 5 C set [peer-1.1.1.1]:Address=1.1.1.1 force 6 C set [peer-1.1.1.1]:Configuration=phase1-peer-1.1.1.1 force 7 C set [phase1-peer-1.1.1.1]:EXCHANGE_TYPE=ID_PROT force 8 C add [phase1-peer-1.1.1.1]:Transforms=phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072 f… 9 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:AUTHENTICATION_METHOD=RSA_SIG fo… 10 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:HASH_ALGORITHM=SHA force 11 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:ENCRYPTION_ALGORITHM=AES_CBC for… 12 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:KEY_LENGTH=128,128:256 force [all …]
|
| D | ike57.ok | 1 C set [Phase 1]:192.168.0.1=peer-192.168.0.1 force 2 C set [peer-192.168.0.1]:Phase=1 force 3 C set [peer-192.168.0.1]:Address=192.168.0.1 force 4 C set [peer-192.168.0.1]:Configuration=phase1-peer-192.168.0.1 force 5 C set [phase1-peer-192.168.0.1]:EXCHANGE_TYPE=ID_PROT force 6 C add [phase1-peer-192.168.0.1]:Transforms=phase1-transform-peer-192.168.0.1-RSA_SIG-SHA-AES128-MOD… 7 C set [phase1-transform-peer-192.168.0.1-RSA_SIG-SHA-AES128-MODP_3072]:AUTHENTICATION_METHOD=RSA_SI… 8 C set [phase1-transform-peer-192.168.0.1-RSA_SIG-SHA-AES128-MODP_3072]:HASH_ALGORITHM=SHA force 9 C set [phase1-transform-peer-192.168.0.1-RSA_SIG-SHA-AES128-MODP_3072]:ENCRYPTION_ALGORITHM=AES_CBC… 10 C set [phase1-transform-peer-192.168.0.1-RSA_SIG-SHA-AES128-MODP_3072]:KEY_LENGTH=128,128:256 force [all …]
|
| D | ikefail14.ok | 10 C set [Phase 1]:Default=peer-default force 11 C set [peer-default]:Phase=1 force 12 C set [peer-default]:Local-address=1.1.1.1 force 13 C set [peer-default]:Authentication=secret force 14 C set [peer-default]:Configuration=phase1-peer-default force 15 C set [phase1-peer-default]:EXCHANGE_TYPE=ID_PROT force 16 C add [phase1-peer-default]:Transforms=phase1-transform-peer-default-PRE_SHARED-SHA-AES128-MODP_307… 17 C set [phase1-transform-peer-default-PRE_SHARED-SHA-AES128-MODP_3072]:AUTHENTICATION_METHOD=PRE_SHA… 18 C set [phase1-transform-peer-default-PRE_SHARED-SHA-AES128-MODP_3072]:HASH_ALGORITHM=SHA force 19 C set [phase1-transform-peer-default-PRE_SHARED-SHA-AES128-MODP_3072]:ENCRYPTION_ALGORITHM=AES_CBC … [all …]
|
| D | ike13.ok | 2 C set [Phase 1]:1.1.1.1=peer-1.1.1.1 force 3 C set [peer-1.1.1.1]:Phase=1 force 4 C set [peer-1.1.1.1]:Address=1.1.1.1 force 5 C set [peer-1.1.1.1]:Configuration=phase1-peer-1.1.1.1 force 6 C set [phase1-peer-1.1.1.1]:EXCHANGE_TYPE=ID_PROT force 7 C add [phase1-peer-1.1.1.1]:Transforms=phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072 f… 8 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:AUTHENTICATION_METHOD=RSA_SIG fo… 9 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:HASH_ALGORITHM=SHA force 10 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:ENCRYPTION_ALGORITHM=AES_CBC for… 11 C set [phase1-transform-peer-1.1.1.1-RSA_SIG-SHA-AES128-MODP_3072]:KEY_LENGTH=128,128:256 force [all …]
|
| D | ike12.ok | 2 C set [Phase 1]:5.5.5.5=peer-5.5.5.5 force 3 C set [peer-5.5.5.5]:Phase=1 force 4 C set [peer-5.5.5.5]:Address=5.5.5.5 force 5 C set [peer-5.5.5.5]:Configuration=phase1-peer-5.5.5.5 force 6 C set [phase1-peer-5.5.5.5]:EXCHANGE_TYPE=ID_PROT force 7 C add [phase1-peer-5.5.5.5]:Transforms=phase1-transform-peer-5.5.5.5-RSA_SIG-SHA-AES128-MODP_3072 f… 8 C set [phase1-transform-peer-5.5.5.5-RSA_SIG-SHA-AES128-MODP_3072]:AUTHENTICATION_METHOD=RSA_SIG fo… 9 C set [phase1-transform-peer-5.5.5.5-RSA_SIG-SHA-AES128-MODP_3072]:HASH_ALGORITHM=SHA force 10 C set [phase1-transform-peer-5.5.5.5-RSA_SIG-SHA-AES128-MODP_3072]:ENCRYPTION_ALGORITHM=AES_CBC for… 11 C set [phase1-transform-peer-5.5.5.5-RSA_SIG-SHA-AES128-MODP_3072]:KEY_LENGTH=128,128:256 force [all …]
|
| D | ike62.ok | 1 C set [Phase 1]:2.2.2.2=peer-2.2.2.2 force 2 C set [peer-2.2.2.2]:Phase=1 force 3 C set [peer-2.2.2.2]:Address=2.2.2.2 force 4 C set [peer-2.2.2.2]:Configuration=phase1-peer-2.2.2.2 force 5 C set [phase1-peer-2.2.2.2]:EXCHANGE_TYPE=ID_PROT force 6 C add [phase1-peer-2.2.2.2]:Transforms=phase1-transform-peer-2.2.2.2-RSA_SIG-SHA-AES128-MODP_3072 f… 7 C set [phase1-transform-peer-2.2.2.2-RSA_SIG-SHA-AES128-MODP_3072]:AUTHENTICATION_METHOD=RSA_SIG fo… 8 C set [phase1-transform-peer-2.2.2.2-RSA_SIG-SHA-AES128-MODP_3072]:HASH_ALGORITHM=SHA force 9 C set [phase1-transform-peer-2.2.2.2-RSA_SIG-SHA-AES128-MODP_3072]:ENCRYPTION_ALGORITHM=AES_CBC for… 10 C set [phase1-transform-peer-2.2.2.2-RSA_SIG-SHA-AES128-MODP_3072]:KEY_LENGTH=128,128:256 force [all …]
|
| /openbsd/src/gnu/usr.bin/perl/lib/ |
| D | CORE.pod | 20 The C<CORE> namespace gives access to the original built-in functions of 21 Perl. The C<CORE> package is built into 28 For all Perl keywords, a C<CORE::> prefix will force the built-in function 36 use ampersand syntax (C<&foo>) or call them through references. See the 37 C<shove> example above. These subroutines exist for all keywords except the following: 39 C<__DATA__>, C<__END__>, C<and>, C<cmp>, C<default>, C<do>, C<dump>, 40 C<else>, C<elsif>, C<eq>, C<eval>, C<for>, C<foreach>, C<format>, C<ge>, 41 C<given>, C<goto>, C<grep>, C<gt>, C<if>, C<last>, C<le>, C<local>, C<lt>, 42 C<m>, C<map>, C<my>, C<ne>, C<next>, C<no>, C<or>, C<our>, C<package>, 43 C<print>, C<printf>, C<q>, C<qq>, C<qr>, C<qw>, C<qx>, C<redo>, C<require>, [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| D | ExprInspectionChecker.cpp | 38 void analyzerEval(const CallExpr *CE, CheckerContext &C) const; 39 void analyzerCheckInlined(const CallExpr *CE, CheckerContext &C) const; 40 void analyzerWarnIfReached(const CallExpr *CE, CheckerContext &C) const; 41 void analyzerNumTimesReached(const CallExpr *CE, CheckerContext &C) const; 42 void analyzerCrash(const CallExpr *CE, CheckerContext &C) const; 43 void analyzerWarnOnDeadSymbol(const CallExpr *CE, CheckerContext &C) const; 44 void analyzerValue(const CallExpr *CE, CheckerContext &C) const; 45 void analyzerDumpSValType(const CallExpr *CE, CheckerContext &C) const; 46 void analyzerDump(const CallExpr *CE, CheckerContext &C) const; 47 void analyzerExplain(const CallExpr *CE, CheckerContext &C) const; [all …]
|
| D | ErrnoTesterChecker.cpp | 30 bool evalCall(const CallEvent &Call, CheckerContext &C) const; 35 static void evalSetErrno(CheckerContext &C, const CallEvent &Call); 38 static void evalGetErrno(CheckerContext &C, const CallEvent &Call); 44 static void evalSetErrnoIfError(CheckerContext &C, const CallEvent &Call); 48 static void evalSetErrnoIfErrorRange(CheckerContext &C, 69 static void evalSetErrnoCheckState(CheckerContext &C, const CallEvent &Call); 85 void ErrnoTesterChecker::evalSetErrno(CheckerContext &C, in evalSetErrno() argument 87 C.addTransition(setErrnoValue(C.getState(), C.getLocationContext(), in evalSetErrno() 91 void ErrnoTesterChecker::evalGetErrno(CheckerContext &C, in evalGetErrno() argument 93 ProgramStateRef State = C.getState(); in evalGetErrno() [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/Index/ |
| D | CommentToXML.cpp | 84 FullCommentParts(const FullComment *C, 97 FullCommentParts::FullCommentParts(const FullComment *C, in FullCommentParts() argument 100 for (Comment::child_iterator I = C->child_begin(), E = C->child_end(); in FullCommentParts() 197 void printHTMLStartTagComment(const HTMLStartTagComment *C, in printHTMLStartTagComment() argument 199 Result << "<" << C->getTagName(); in printHTMLStartTagComment() 201 if (C->getNumAttrs() != 0) { in printHTMLStartTagComment() 202 for (unsigned i = 0, e = C->getNumAttrs(); i != e; i++) { in printHTMLStartTagComment() 204 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i); in printHTMLStartTagComment() 211 if (!C->isSelfClosing()) in printHTMLStartTagComment() 228 void visitTextComment(const TextComment *C); [all …]
|
| /openbsd/src/regress/lib/libtls/gotls/ |
| D | tls.go | 40 ProtocolTLSv10 ProtocolVersion = C.TLS_PROTOCOL_TLSv1_0 41 ProtocolTLSv11 ProtocolVersion = C.TLS_PROTOCOL_TLSv1_1 42 ProtocolTLSv12 ProtocolVersion = C.TLS_PROTOCOL_TLSv1_2 43 ProtocolTLSv13 ProtocolVersion = C.TLS_PROTOCOL_TLSv1_3 44 ProtocolsAll ProtocolVersion = C.TLS_PROTOCOLS_ALL 67 tlsCfg *C.struct_tls_config 73 ctx *C.struct_tls 78 if C.tls_init() != 0 { 86 cfg := C.tls_config_new() 97 if msg := C.tls_config_error(c.tlsCfg); msg != nil { [all …]
|
| /openbsd/src/lib/libcrypto/md5/ |
| D | md5_amd64_generic.S | 32 #define C %ecx macro 144 movl CC, C 147 md5_round1(A, B, C, D, 0, 0xd76aa478L, 7); 148 md5_round1(D, A, B, C, 1, 0xe8c7b756L, 12); 149 md5_round1(C, D, A, B, 2, 0x242070dbL, 17); 150 md5_round1(B, C, D, A, 3, 0xc1bdceeeL, 22); 151 md5_round1(A, B, C, D, 4, 0xf57c0fafL, 7); 152 md5_round1(D, A, B, C, 5, 0x4787c62aL, 12); 153 md5_round1(C, D, A, B, 6, 0xa8304613L, 17); 154 md5_round1(B, C, D, A, 7, 0xfd469501L, 22); [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Unicode-Collate/t/ |
| D | loc_lkt.t | 38 ok($objLkt->lt("c", "c\x{30C}")); 39 ok($objLkt->lt("cz","c\x{30C}")); 40 ok($objLkt->gt("d", "c\x{30C}")); 41 ok($objLkt->lt("g", "g\x{30C}")); 42 ok($objLkt->lt("gz","g\x{30C}")); 43 ok($objLkt->gt("h", "g\x{30C}")); 44 ok($objLkt->lt("h", "h\x{30C}")); 45 ok($objLkt->lt("hz","h\x{30C}")); 46 ok($objLkt->gt("i", "h\x{30C}")); 47 ok($objLkt->lt("s", "s\x{30C}")); [all …]
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/testsuite/25_algorithms/ |
| D | binary_search.cc | 27 const int C[] = {8, 5, 3, 3, 3, 2, 1}; variable 64 const int* t = lower_bound(C, C + N, 3, gt()); in test01() 65 VERIFY(t == C + 2); in test01() 67 const int* u = lower_bound(C, C + N, first, gt()); in test01() 68 VERIFY(u == C + N - 1); in test01() 70 const int* v = lower_bound(C, C + N, last, gt()); in test01() 71 VERIFY(v == C + 0); in test01() 73 const int* w = lower_bound(C, C + N, 4, gt()); in test01() 74 VERIFY(w == C + 2); in test01() 98 const int* t = upper_bound(C, C + N, 3, gt()); in test02() [all …]
|
| /openbsd/src/lib/libcrypto/ripemd/ |
| D | ripemd.c | 132 unsigned int A, B, C, D, E; in ripemd160_block_data_order() local 140 C = ctx->C; in ripemd160_block_data_order() 184 RIP1(A, B, C, D, E, X0, 11); in ripemd160_block_data_order() 185 RIP1(E, A, B, C, D, X1, 14); in ripemd160_block_data_order() 186 RIP1(D, E, A, B, C, X2, 15); in ripemd160_block_data_order() 187 RIP1(C, D, E, A, B, X3, 12); in ripemd160_block_data_order() 188 RIP1(B, C, D, E, A, X4, 5); in ripemd160_block_data_order() 189 RIP1(A, B, C, D, E, X5, 8); in ripemd160_block_data_order() 190 RIP1(E, A, B, C, D, X6, 7); in ripemd160_block_data_order() 191 RIP1(D, E, A, B, C, X7, 9); in ripemd160_block_data_order() [all …]
|