Home
last modified time | relevance | path

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

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp38 Constant *CA = ConstantArray::get(ATy, CAList); in removeGlobalCtors() local
41 if (CA->getType() == OldCA->getType()) { in removeGlobalCtors()
42 GCL->setInitializer(CA); in removeGlobalCtors()
48 new GlobalVariable(CA->getType(), GCL->isConstant(), GCL->getLinkage(), in removeGlobalCtors()
49 CA, "", GCL->getThreadLocalMode()); in removeGlobalCtors()
68 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer()); in parseGlobalCtors()
70 Result.reserve(CA->getNumOperands()); in parseGlobalCtors()
71 for (auto &V : CA->operands()) { in parseGlobalCtors()
92 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer()); in findGlobalCtors()
94 for (auto &V : CA in findGlobalCtors()
[all...]
H A DModuleUtils.cpp77 auto *CA = cast<ConstantArray>(GV->getInitializer()); in appendToUsedList() local
78 for (auto &Op : CA->operands()) { in appendToUsedList()
/third_party/openssl/test/certs/
H A Dmkcert.sh103 local bcon="basicConstraints = critical,CA:true"
138 local bcon="basicConstraints = critical,CA:true"
156 cert "$cert" "$exts" -CA "${cacert}.pem" -CAkey "${cakey}.pem" \
177 cert "$cert" "$exts" -CA "${cacert}.pem" -CAkey "${cakey}.pem" \
195 "basicConstraints = CA:false" \
199 cert "$cert" "$exts" -CA "${ca}.pem" -CAkey "${cakey}.pem" \
213 "basicConstraints = CA:false"; \
216 cert "$cert" "$exts" -CA "${ca}.pem" -CAkey "${cakey}.pem" \
261 "basicConstraints = CA:false" \
266 cert "$cert" "$exts" -CA "
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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)) in getConstantFieldValue()
361 total_size = DL.getTypeAllocSize(CA->getType()->getElementType()) * in getConstantFieldValue()
362 CA->getNumOperands(); in getConstantFieldValue()
419 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) in fillGenericConstant()
420 return fillConstantArray(DL, CA, Vals, Offset); in fillGenericConstant()
442 const ConstantArray *CA, in fillConstantArray()
444 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) { in fillConstantArray()
445 if (fillGenericConstant(DL, CA->getOperand(i), Vals, Offset) == false) in fillConstantArray()
447 Offset += DL.getTypeAllocSize(CA in fillConstantArray()
441 fillConstantArray(const DataLayout &DL, const ConstantArray *CA, val_vec_type &Vals, int Offset) fillConstantArray() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp188 if (auto CA = dyn_cast<ConstantDataArray>(Init)) { in lowerPrintfForGpu()
189 if (CA->isString()) in lowerPrintfForGpu()
190 Str = CA->getAsCString(); in lowerPrintfForGpu()
256 ConstantDataArray *CA = dyn_cast<ConstantDataArray>(Init); in lowerPrintfForGpu() local
257 if (Init->isZeroValue() || CA->isString()) { in lowerPrintfForGpu()
260 : (strlen(CA->getAsCString().data()) + 1); in lowerPrintfForGpu()
442 ConstantDataArray *CA = dyn_cast<ConstantDataArray>(Init); in lowerPrintfForGpu() local
443 if (Init->isZeroValue() || CA->isString()) { in lowerPrintfForGpu()
444 S = Init->isZeroValue() ? "" : CA->getAsCString().data(); in lowerPrintfForGpu()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
H A DCoroElide.cpp121 for (auto *CA : CoroAllocs) { in elideHeapAllocations()
122 CA->replaceAllUsesWith(False); in elideHeapAllocations()
123 CA->eraseFromParent(); in elideHeapAllocations()
203 else if (auto *CA = dyn_cast<CoroAllocInst>(U)) in processCoroId()
204 CoroAllocs.push_back(CA); in processCoroId()
H A DCoroInstr.h86 if (auto *CA = dyn_cast<CoroAllocInst>(U)) in getCoroAlloc()
87 return CA; in getCoroAlloc()
/third_party/typescript/tests/baselines/reference/
H A DintersectionReduction.js136 declare class CA { kind: 'a'; a: string; x: number };
139 function bar<T extends CA | CB>(x: T & CA) {
/third_party/skia/third_party/externals/icu/scripts/
H A Dbig5_gen.sh88 <U00CA><U0304> \x88\x62 |3 000CA
89 <U00CA><U030C> \x88\x64 |3 000CA
/third_party/node/test/parallel/
H A Dtest-crypto-x509.js36 ST=CA
44 ST=CA
52 CA Issuers - URI:http://ca.nodejs.org/ca.cert`;
260 ST: 'CA',
269 ST: 'CA',
278 'CA Issuers - URI': ['http://ca.nodejs.org/ca.cert']
298 '51:62:18:39:E2:E2:77:F5:86:11:E8:C0:CA:54:43:7C:76:83:19:05:D0:03:' +
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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, in getInlineCost()
2180 InlineResult ShouldInline = CA.analyze(); in getInlineCost()
2182 LLVM_DEBUG(CA.dump()); in getInlineCost()
2185 if (!ShouldInline && CA.getCost() < CA.getThreshold()) in getInlineCost()
2187 if (ShouldInline && CA in getInlineCost()
[all...]
H A DMemorySSA.cpp435 ClobberAlias CA = in checkClobberSanity() local
437 if (CA.IsClobber) { in checkClobberSanity()
439 // Not used: CA.AR; in checkClobberSanity()
581 ClobberAlias CA = in walkToPhiOrClobber()
583 if (CA.IsClobber) in walkToPhiOrClobber()
584 return {MD, true, CA.AR}; in walkToPhiOrClobber()
1450 ClobberAlias CA = instructionClobbersQuery(MD, MU, UseMLOC, *AA); in optimizeUsesInBlock() local
1451 if (CA.IsClobber) { in optimizeUsesInBlock()
1453 LocInfo.AR = CA.AR; in optimizeUsesInBlock()
/third_party/libphonenumber/javascript/i18n/phonenumbers/
H A Dregioncodefortesting.js45 CA: 'CA',
H A Dshortnumberinfo_test.js452 assertFalse(shortInfo.isEmergencyNumber('211', RegionCode.CA));
456 phoneUtil.parse('211', RegionCode.CA), RegionCode.CA));
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/
H A DRegionCode.java36 static final String CA = "CA"; field in RegionCode
H A DShortNumberInfoTest.java349 assertFalse(shortInfo.isEmergencyNumber("211", RegionCode.CA)); in testOverlappingNANPANumber()
351 shortInfo.getExpectedCostForRegion(parse("211", RegionCode.CA), RegionCode.CA)); in testOverlappingNANPANumber()
/third_party/libphonenumber/cpp/test/phonenumbers/
H A Dtest_util.h96 static const char* CA() { in CA() function in i18n::phonenumbers::RegionCode
97 return "CA"; in CA()
H A Dshortnumberinfo_test.cc487 EXPECT_FALSE(short_info_.IsEmergencyNumber("211", RegionCode::CA())); in TEST_F()
491 ParseNumberForTesting("211", RegionCode::CA()), RegionCode::CA())); in TEST_F()
/third_party/mbedtls/tests/data_files/
H A DMakefile52 $(MBEDTLS_CERT_REQ) output_file=$@ filename=$(test_ca_key_file_rsa) password=$(test_ca_pwd_rsa) subject_name="C=NL,O=PolarSSL,CN=PolarSSL Test CA" md=SHA256
56 $(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 request_file=test-ca.req.sha256 selfsign=1 issuer_name="C=NL,O=PolarSSL,CN=PolarSSL Test CA" issuer_key=$(test_ca_key_file_rsa) issuer_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA1 version=3 output_file=$@
75 $(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 request_file=test-ca.req.sha256 selfsign=1 issuer_name="C=NL,O=PolarSSL,CN=PolarSSL Test CA" issuer_key=$(test_ca_key_file_rsa) issuer_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA1 version=3 output_file=$@
83 $(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 request_file=test-ca.req.sha256 selfsign=1 issuer_name="C=NL,O=PolarSSL,CN=PolarSSL Test CA" issuer_key=$(test_ca_key_file_rsa) issuer_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA256 version=3 output_file=$@
91 $(OPENSSL) req -x509 -new -nodes -key $(test_ca_key_file_rsa) -passin "pass:$(test_ca_pwd_rsa)" -set_serial 3 -config $(test_ca_config_file) -sha1 -days 3653 -utf8 -subj "/C=NL/O=PolarSSL/CN=PolarSSL Test CA" -out $@
95 $(OPENSSL) req -x509 -new -nodes -key $(test_ca_key_file_rsa) -passin "pass:$(test_ca_pwd_rsa)" -set_serial 3 -config $(test_ca_config_file) -sha1 -days 3653 -subj "/C=NL/O=PolarSSL/CN=PolarSSL Test CA" -out $@
99 $(OPENSSL) req -x509 -new -nodes -key $(test_ca_key_file_rsa) -passin "pass:$(test_ca_pwd_rsa)" -set_serial 3 -config $(test_ca_config_file) -sha1 -days 3653 -subj "/C=NL/O=PolarSSL/CN=PolarSSL Test CA" -out $@
108 $(OPENSSL) x509 -req -CA $(test_ca_crt) -CAkey $(test_ca_key_file_rsa) \
118 $(OPENSSL) x509 -req -CA test-ca_nocn.crt -CAkey $(test_ca_key_file_rsa) \
171 $(OPENSSL) x509 -req -CA
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DAlignment.h107 constexpr Align(LogValue CA) : ShiftValue(CA.Log) {}
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2401 if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) { in isRepeatedByteSequence()
2404 assert(CA->getNumOperands() != 0 && "Should be a CAZ"); in isRepeatedByteSequence()
2405 Constant *Op0 = CA->getOperand(0); in isRepeatedByteSequence()
2411 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) in isRepeatedByteSequence()
2412 if (CA->getOperand(i) != Op0) in isRepeatedByteSequence()
2464 const ConstantArray *CA, AsmPrinter &AP, in emitGlobalConstantArray()
2468 int Value = isRepeatedByteSequence(CA, DL); in emitGlobalConstantArray()
2471 uint64_t Bytes = DL.getTypeAllocSize(CA->getType()); in emitGlobalConstantArray()
2475 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) { in emitGlobalConstantArray()
2476 emitGlobalConstantImpl(DL, CA in emitGlobalConstantArray()
2463 emitGlobalConstantArray(const DataLayout &DL, const ConstantArray *CA, AsmPrinter &AP, const Constant *BaseCV, uint64_t Offset) emitGlobalConstantArray() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp1672 APInt A, CA; in evaluateCLBr()
1675 evaluateCLBi(A, Zeros, Ones, CA); in evaluateCLBr()
1678 const Constant *C = intToConst(CA); in evaluateCLBr()
1707 APInt A, CA; in evaluateCTBr()
1710 evaluateCTBi(A, Zeros, Ones, CA); in evaluateCTBr()
1713 const Constant *C = intToConst(CA); in evaluateCTBr()
1753 APInt A, CA; in evaluateEXTRACTr() local
1756 evaluateEXTRACTi(A, Bits, Offset, Signed, CA); in evaluateEXTRACTr()
1759 const Constant *C = intToConst(CA); in evaluateEXTRACTr()
H A DRDFLiveness.cpp191 MachineInstr *CA = NodeAddr<StmtNode*>(OA).Addr->getCode(); in getAllReachingDefs()
194 if (CA == CB) in getAllReachingDefs()
196 return MDT.dominates(CB, CA); in getAllReachingDefs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DAsmWriter.cpp1400 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) { in WriteConstantInternal()
1401 Type *ETy = CA->getType()->getElementType(); in WriteConstantInternal()
1405 WriteAsOperandInternal(Out, CA->getOperand(0), in WriteConstantInternal()
1408 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) { in WriteConstantInternal()
1412 WriteAsOperandInternal(Out, CA->getOperand(i), &TypePrinter, Machine, in WriteConstantInternal()
1419 if (const ConstantDataArray *CA = dyn_cast<ConstantDataArray>(CV)) { in WriteConstantInternal()
1422 if (CA->isString()) { in WriteConstantInternal()
1424 printEscapedString(CA->getAsString(), Out); in WriteConstantInternal()
1429 Type *ETy = CA->getType()->getElementType(); in WriteConstantInternal()
1433 WriteAsOperandInternal(Out, CA in WriteConstantInternal()
[all...]
/third_party/mbedtls/library/
H A Daes.c123 V(45, CA, CA, 8F), V(9D, 82, 82, 1F), V(40, C9, C9, 89), V(87, 7D, 7D, FA), \
157 V(CA, 46, 46, 8C), V(29, EE, EE, C7), V(D3, B8, B8, 6B), V(3C, 14, 14, 28), \
166 V(AF, 65, 65, CA), V(8E, 7A, 7A, F4), V(E9, AE, AE, 47), V(18, 08, 08, 10), \
281 V(CA, DC, 31, D7), V(10, 85, 63, 42), V(40, 22, 97, 13), V(20, 11, C6, 84), \
286 V(C7, 4E, 49, 87), V(C1, D1, 38, D9), V(FE, A2, CA, 8C), V(36, 0B, D4, 98), \
296 V(37, BC, 4E, 74), V(A6, CA, 82, FC), V(B0, D0, 90, E0), V(15, D8, A7, 33), \
306 V(81, F3, AF, CA), V(3E, C4, 68, B9), V(2C, 34, 24, 38), V(5F, 40, A3, C2), \

Completed in 46 milliseconds

123