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

12

/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp41 Constant *CA = ConstantArray::get(ATy, CAList); local
44 if (CA->getType() == OldCA->getType()) {
45 GCL->setInitializer(CA);
51 new GlobalVariable(CA->getType(), GCL->isConstant(), GCL->getLinkage(),
52 CA, "", GCL->getThreadLocalMode());
71 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
73 Result.reserve(CA->getNumOperands());
74 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i) {
95 ConstantArray *CA
[all...]
/freebsd-11.0-release/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.0-release/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.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h427 static bool classof(const CallEvent *CA) { argument
428 return CA->getKind() >= CE_BEG_FUNCTION_CALLS &&
429 CA->getKind() <= CE_END_FUNCTION_CALLS;
464 static bool classof(const CallEvent *CA) { argument
465 return CA->getKind() == CE_Function;
571 static bool classof(const CallEvent *CA) { argument
572 return CA->getKind() == CE_Block;
607 static bool classof(const CallEvent *CA) { argument
608 return CA->getKind() >= CE_BEG_CXX_INSTANCE_CALLS &&
609 CA
648 classof(const CallEvent *CA) argument
687 classof(const CallEvent *CA) argument
736 classof(const CallEvent *CA) argument
790 classof(const CallEvent *CA) argument
943 classof(const CallEvent *CA) argument
[all...]
/freebsd-11.0-release/share/i18n/csmapper/ISO646/
H A DMakefile11 FILES+= ISO646-BASIC@1983%UCS.646 ISO646-CA%UCS.646 ISO646-CA2%UCS.646 \
/freebsd-11.0-release/secure/usr.bin/openssl/
H A DMakefile.man3 MAN+= CA.pl.1
/freebsd-11.0-release/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.0-release/contrib/llvm/lib/Analysis/
H A DInlineCost.cpp834 CallAnalyzer CA(TTI, ACT, *F, InlineConstants::IndirectCallThreshold, CS);
835 if (CA.analyzeCall(CS)) {
838 Cost -= std::max(0, CA.getThreshold() - CA.getCost());
1378 CallAnalyzer CA(CalleeTTI, ACT, *Callee, Threshold, CS);
1379 bool ShouldInline = CA.analyzeCall(CS);
1381 DEBUG(CA.dump());
1384 if (!ShouldInline && CA.getCost() < CA.getThreshold())
1386 if (ShouldInline && CA
[all...]
H A DValueTracking.cpp2649 if (ConstantDataSequential *CA = dyn_cast<ConstantDataSequential>(V)) {
2650 Value *Elt = CA->getElementAsConstant(0);
2655 for (unsigned I = 1, E = CA->getNumElements(); I != E; ++I)
2656 if (CA->getElementAsConstant(I) != Elt)
4143 // Match A to (X +_{nuw} CA) and B to (X +_{nuw} CB)
4145 const APInt *&CA, const APInt *&CB) {
4146 if (match(A, m_NUWAdd(m_Value(X), m_APInt(CA))) &&
4151 if (match(A, m_Or(m_Value(X), m_APInt(CA))) &&
4153 unsigned BitWidth = CA->getBitWidth();
4157 if ((KnownZero & *CA)
[all...]
/freebsd-11.0-release/contrib/unbound/smallapp/
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
H A Dunbound-control-setup.sh.in139 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.0-release/contrib/ofed/management/opensm/opensm/
H A Dosm_qos_parser_l.l82 #define START_NODE_TYPE {in_node_type = TRUE;} /* comma-separated list of node types (ROUTER,CA,...) */
181 CA [Cc][Aa]
268 {CA} { SAVE_POS; if (in_node_type) return TK_NODE_TYPE_CA; yylval = strdup(yytext); return TK_TEXT; }
/freebsd-11.0-release/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.0-release/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.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1935 if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) {
1938 assert(CA->getNumOperands() != 0 && "Should be a CAZ");
1939 Constant *Op0 = CA->getOperand(0);
1945 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i)
1946 if (CA->getOperand(i) != Op0)
1998 const ConstantArray *CA, AsmPrinter &AP,
2002 int Value = isRepeatedByteSequence(CA, DL);
2005 uint64_t Bytes = DL.getTypeAllocSize(CA->getType());
2009 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) {
2010 emitGlobalConstantImpl(DL, CA
1997 emitGlobalConstantArray(const DataLayout &DL, const ConstantArray *CA, AsmPrinter &AP, const Constant *BaseCV, uint64_t Offset) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DAsmWriter.cpp1193 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
1194 Type *ETy = CA->getType()->getElementType();
1198 WriteAsOperandInternal(Out, CA->getOperand(0),
1201 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
1205 WriteAsOperandInternal(Out, CA->getOperand(i), &TypePrinter, Machine,
1212 if (const ConstantDataArray *CA = dyn_cast<ConstantDataArray>(CV)) {
1215 if (CA->isString()) {
1217 PrintEscapedString(CA->getAsString(), Out);
1222 Type *ETy = CA->getType()->getElementType();
1226 WriteAsOperandInternal(Out, CA
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DRDFLiveness.cpp157 auto CA = NodeAddr<StmtNode*>(OA).Addr->getCode();
160 if (CA == CB)
162 return MDT.dominates(CB, CA);
H A DRDFGraph.h799 NodeAddr<CodeNode*> CA = NA; local
800 NA = CA.Addr->getFirstMember(G);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DThreadSafety.cpp1129 if (const auto *CA = RD->getAttr<CapabilityAttr>())
1130 return ClassifyDiagnostic(CA);
1133 if (const auto *CA = TD->getAttr<CapabilityAttr>())
1134 return ClassifyDiagnostic(CA);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1200 ConstantInt *BA = nullptr, *CA = nullptr; local
1202 m_ConstantInt(CA))) &&
1203 BA == CA && A->getType() == CI.getType()) {
1206 unsigned ShAmt = CA->getZExtValue()+SrcDstSize-MidSize;
/freebsd-11.0-release/contrib/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp752 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
755 unsigned N = CA->getNumOperands();
757 printConstant(CA->getOperand(i)); // recurse to print operands
759 << getCppName(CA->getOperand(i)) << ");";
/freebsd-11.0-release/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp5176 SectionRef CA = get_section(O, "__OBJC2", "__category_list"); local
5177 if (CA == SectionRef())
5178 CA = get_section(O, "__DATA", "__objc_catlist");
5179 info.S = CA;
5180 walk_pointer_list_64("category", CA, O, &info, print_category64_t);
5260 const SectionRef CA = get_section(O, "__OBJC2", "__category_list"); local
5261 if (CA != SectionRef()) {
5262 info.S = CA;
5263 walk_pointer_list_32("category", CA, O, &info, print_category32_t);
5265 const SectionRef CA local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDecl.cpp1403 if (const CleanupAttr *CA = D.getAttr<CleanupAttr>()) {
1404 const FunctionDecl *FD = CA->getFunctionDecl();

Completed in 425 milliseconds

12