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

12

/freebsd-12-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-12-stable/crypto/openssl/apps/
H A DCA.pl.in30 my $CA = "$openssl ca $OPENSSL_CONFIG";
116 print STDERR "usage: CA.pl -newcert | -newreq | -newreq-nodes | -xsign | -sign | -signCA | -signcert | -crl | -newca [-extra-cmd extra-params]\n";
117 print STDERR " CA.pl -pkcs12 [-extra-pkcs12 extra-params] [certname]\n";
118 print STDERR " CA.pl -verify [-extra-verify extra-params] certfile ...\n";
119 print STDERR " CA.pl -revoke [-extra-ca extra-params] certfile [reason]\n";
146 # ask user for existing CA certificate
147 print "CA certificate filename (or enter to create)\n";
154 print "Making CA certificate ...\n";
158 $RET = run("$CA -create_serial"
163 print "CA certificat
[all...]
/freebsd-12-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-12-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-12-stable/share/i18n/csmapper/ISO646/
H A DMakefile11 FILES+= ISO646-BASIC@1983%UCS.646 ISO646-CA%UCS.646 ISO646-CA2%UCS.646 \
/freebsd-12-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-12-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-12-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-12-stable/libexec/rc/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-12-stable/crypto/openssh/regress/unittests/authopt/testdata/
H A Dmktestdata.sh9 ssh-keygen -q -f ca_key -t ed25519 -C CA -N ''
/freebsd-12-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-12-stable/secure/usr.bin/openssl/
H A DMakefile.man2 MAN+= CA.pl.1
/freebsd-12-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-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAlignment.h107 constexpr Align(LogValue CA) : ShiftValue(CA.Log) {}
/freebsd-12-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-12-stable/crypto/openssh/regress/
H A Dkeygen-knownhosts.sh82 # find CA key
84 expect_key host-c host-c host-c 8 CA
85 check_find host-c "find CA key"
132 # Find CA key and hash
134 expect_key host-c host-c host-c "" CA
135 # CA key output is not hashed.
169 # Remove CA key
172 # CA key should not be removed.
173 diff $OBJ/kh.hosts $OBJ/kh.hosts.orig || fail "remove CA"
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.h37 MAP(CA, 74) \
/freebsd-12-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) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2401 if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) {
2404 assert(CA->getNumOperands() != 0 && "Should be a CAZ");
2405 Constant *Op0 = CA->getOperand(0);
2411 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i)
2412 if (CA->getOperand(i) != Op0)
2464 const ConstantArray *CA, AsmPrinter &AP,
2468 int Value = isRepeatedByteSequence(CA, DL);
2471 uint64_t Bytes = DL.getTypeAllocSize(CA->getType());
2475 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) {
2476 emitGlobalConstantImpl(DL, CA
2463 emitGlobalConstantArray(const DataLayout &DL, const ConstantArray *CA, AsmPrinter &AP, const Constant *BaseCV, uint64_t Offset) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp320 if (auto *CA = dyn_cast<llvm::ConstantAggregate>(C)) {
322 llvm::map_range(llvm::seq(0u, CA->getNumOperands()),
323 [&](unsigned Op) { return CA->getOperand(Op); }));
324 if (auto *Seq = dyn_cast<llvm::SequentialType>(CA->getType())) {
329 llvm::map_range(llvm::seq(0u, CA->getNumOperands()),
333 auto *ST = cast<llvm::StructType>(CA->getType());
338 llvm::seq(0u, CA->getNumOperands()), [&](unsigned Op) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFLiveness.cpp191 MachineInstr *CA = NodeAddr<StmtNode*>(OA).Addr->getCode();
194 if (CA == CB)
196 return MDT.dominates(CB, CA);

Completed in 414 milliseconds

12