Searched refs:CA (Results 1 - 25 of 53) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp38 Constant *CA = ConstantArray::get(ATy, CAList); local
41 if (CA->getType() == OldCA->getType()) {
42 GCL->setInitializer(CA);
48 new GlobalVariable(CA->getType(), GCL->isConstant(), GCL->getLinkage(),
49 CA, "", GCL->getThreadLocalMode());
68 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
70 Result.reserve(CA->getNumOperands());
71 for (auto &V : CA->operands()) {
92 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
94 for (auto &V : CA
[all...]
H A DModuleUtils.cpp77 auto *CA = cast<ConstantArray>(GV->getInitializer()); local
78 for (auto &Op : CA->operands()) {
/freebsd-11-stable/crypto/openssl/apps/
H A DCA.pl.in3 # CA - wrapper around ca to make it easier to use ... basically ca requires
7 # CA -newca ... will setup the right stuff
8 # CA -newreq[-nodes] ... will generate a certificate request
9 # CA -sign ... will sign the generated request and output
16 # 12-Jan-96 tjh Added more things ... including CA -signcert which
30 # 27-Apr-98 snh Translation into perl, fix existing CA bug.
51 $CA="$openssl ca $SSLEAY_CONFIG";
67 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-signcert|-verify\n";
102 print "CA certificate filename (or enter to create)\n";
107 # ask user for existing CA certificat
[all...]
H A DCA.sh3 # CA - wrapper around ca to make it easier to use ... basically ca requires
7 # CA -newca ... will setup the right stuff
8 # CA -newreq ... will generate a certificate request
9 # CA -sign ... will sign the generated request and output
16 # 12-Jan-96 tjh Added more things ... including CA -signcert which
66 CA="$OPENSSL ca $SSLEAY_CONFIG"
116 echo "CA certificate filename (or enter to create)"
119 # ask user for existing CA certificate
129 echo "Making CA certificate ..."
132 $CA
[all...]
H A DCA.pl3 # CA - wrapper around ca to make it easier to use ... basically ca requires
7 # CA -newca ... will setup the right stuff
8 # CA -newreq[-nodes] ... will generate a certificate request
9 # CA -sign ... will sign the generated request and output
16 # 12-Jan-96 tjh Added more things ... including CA -signcert which
30 # 27-Apr-98 snh Translation into perl, fix existing CA bug.
51 $CA="$openssl ca $SSLEAY_CONFIG";
67 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-signcert|-verify\n";
102 print "CA certificate filename (or enter to create)\n";
107 # ask user for existing CA certificat
[all...]
/freebsd-11-stable/crypto/openssl/util/
H A Dmkcerts.sh55 echo creating $CAbits bit CA cert request
65 Test CA (1024 bit)
72 echo problems generating CA request
78 echo signing CA
82 -CA pca-cert.pem -CAkey pca-key.pem \
86 echo problems signing CA cert
119 -CA ca-cert.pem -CAkey ca-key.pem \
156 -CA ca-cert.pem -CAkey ca-key.pem \
193 -CA ca-cert.pem -CAkey ca-key.pem \
/freebsd-11-stable/contrib/unbound/smallapp/
H A Dunbound-control-setup.sh.in134 basicConstraints=critical,CA:TRUE,pathlen:0
170 basicConstraints=critical,CA:FALSE
189 -CA "${SVR_BASE}_trust.pem" \
H A Dunbound-control-setup.sh139 openssl req -key $CTL_BASE.key -config request.cfg -new | openssl x509 -req -days $DAYS -CA $SVR_BASE"_trust.pem" -CAkey $SVR_BASE.key -CAcreateserial -$HASH -out $CTL_BASE.pem
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h487 static bool classof(const CallEvent *CA) { argument
488 return CA->getKind() >= CE_BEG_FUNCTION_CALLS &&
489 CA->getKind() <= CE_END_FUNCTION_CALLS;
524 static bool classof(const CallEvent *CA) { argument
525 return CA->getKind() == CE_Function;
631 static bool classof(const CallEvent *CA) { argument
632 return CA->getKind() == CE_Block;
665 static bool classof(const CallEvent *CA) { argument
666 return CA->getKind() >= CE_BEG_CXX_INSTANCE_CALLS &&
667 CA
706 classof(const CallEvent *CA) argument
745 classof(const CallEvent *CA) argument
809 classof(const CallEvent *CA) argument
864 classof(const CallEvent *CA) argument
1043 classof(const CallEvent *CA) argument
[all...]
/freebsd-11-stable/share/i18n/csmapper/ISO646/
H A DMakefile11 FILES+= ISO646-BASIC@1983%UCS.646 ISO646-CA%UCS.646 ISO646-CA2%UCS.646 \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFISelDAGToDAG.cpp88 bool fillConstantArray(const DataLayout &DL, const ConstantArray *CA,
360 else if (const ConstantArray *CA = dyn_cast<ConstantArray>(Init))
361 total_size = DL.getTypeAllocSize(CA->getType()->getElementType()) *
362 CA->getNumOperands();
419 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV))
420 return fillConstantArray(DL, CA, Vals, Offset);
442 const ConstantArray *CA,
444 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) {
445 if (fillGenericConstant(DL, CA->getOperand(i), Vals, Offset) == false)
447 Offset += DL.getTypeAllocSize(CA
441 fillConstantArray(const DataLayout &DL, const ConstantArray *CA, val_vec_type &Vals, int Offset) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroElide.cpp121 for (auto *CA : CoroAllocs) {
122 CA->replaceAllUsesWith(False);
123 CA->eraseFromParent();
203 else if (auto *CA = dyn_cast<CoroAllocInst>(U))
204 CoroAllocs.push_back(CA);
H A DCoroInstr.h86 if (auto *CA = dyn_cast<CoroAllocInst>(U))
87 return CA;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp188 if (auto CA = dyn_cast<ConstantDataArray>(Init)) {
189 if (CA->isString())
190 Str = CA->getAsCString();
256 ConstantDataArray *CA = dyn_cast<ConstantDataArray>(Init); local
257 if (Init->isZeroValue() || CA->isString()) {
260 : (strlen(CA->getAsCString().data()) + 1);
442 ConstantDataArray *CA = dyn_cast<ConstantDataArray>(Init); local
443 if (Init->isZeroValue() || CA->isString()) {
444 S = Init->isZeroValue() ? "" : CA->getAsCString().data();
/freebsd-11-stable/etc/rc.d/
H A Dsendmail77 certificate = \$dir/cacert.pem # The CA certificate
116 basicConstraints=CA:FALSE
121 basicConstraints = CA:FALSE
126 basicConstraints = CA:true
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp459 InlineCostCallAnalyzer CA(TTI, GetAssumptionCache, GetBFI, PSI, ORE, *F,
461 if (CA.analyze()) {
464 Cost -= std::max(0, CA.getThreshold() - CA.getCost());
2178 InlineCostCallAnalyzer CA(CalleeTTI, GetAssumptionCache, GetBFI, PSI, ORE,
2180 InlineResult ShouldInline = CA.analyze();
2182 LLVM_DEBUG(CA.dump());
2185 if (!ShouldInline && CA.getCost() < CA.getThreshold())
2187 if (ShouldInline && CA
[all...]
H A DMemorySSA.cpp435 ClobberAlias CA = local
437 if (CA.IsClobber) {
439 // Not used: CA.AR;
581 ClobberAlias CA =
583 if (CA.IsClobber)
584 return {MD, true, CA.AR};
1450 ClobberAlias CA = instructionClobbersQuery(MD, MU, UseMLOC, *AA); local
1451 if (CA.IsClobber) {
1453 LocInfo.AR = CA.AR;
/freebsd-11-stable/secure/usr.bin/openssl/
H A DMakefile.man3 MAN+= CA.pl.1
/freebsd-11-stable/contrib/ntp/scripts/update-leap/
H A Dupdate-leap.in402 -C Absolute path to CA Cert (see SSL/TLS Considerations)
453 The perl modules can usually locate the CA certificate used to verify
460 The -C or -D options are available to pass in a location if no CA cert
/freebsd-11-stable/crypto/openssh/regress/
H A Dkeygen-knownhosts.sh71 # find CA key
73 expect_key host-c host-c host-c 8 CA
74 check_find host-c "find CA key"
109 # Find CA key and hash
111 expect_key host-c host-c host-c "" CA
112 # CA key output is not hashed.
146 # Remove CA key
149 # CA key should not be removed.
150 diff $OBJ/kh.hosts $OBJ/kh.hosts.orig || fail "remove CA"
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_qos_parser_l.l84 #define START_NODE_TYPE {in_node_type = TRUE;} /* comma-separated list of node types (ROUTER,CA,...) */
185 CA [Cc][Aa]
272 {CA} { SAVE_POS; if (in_node_type) return TK_NODE_TYPE_CA; yylval = strdup(yytext); return TK_TEXT; }
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/
H A Dppc-mont.pl273 addic $ovf,$ovf,-1 ; move upmost overflow to XER[CA]
286 subfc $j,$j,$j ; j=0 and "clear" XER[CA]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAlignment.h107 constexpr Align(LogValue CA) : ShiftValue(CA.Log) {}
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.h37 MAP(CA, 74) \
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp87 } else if (auto CA = dyn_cast<CompoundAssignOperator>(Parent)) {
88 if (CA->getLHS()->IgnoreParenCasts() == E) {

Completed in 164 milliseconds

123