Searched defs:EC (Results 1 - 18 of 18) sorted by relevance

/external/clang/test/CXX/expr/expr.post/expr.static.cast/
H A Dp9-0x.cpp3 enum class EC { ec1 }; class
5 void test0(EC ec) {
7 (void)static_cast<bool>(EC::ec1);
9 (void)static_cast<char>(EC::ec1);
11 (void)static_cast<int>(EC::ec1);
13 (void)static_cast<unsigned long>(EC::ec1);
15 (void)static_cast<float>(EC::ec1);
17 (void)static_cast<double>(EC::ec1);
/external/llvm/include/llvm/ADT/
H A DIntEqClasses.h29 /// EC - When uncompressed, map each integer to a smaller member of its
33 /// When compressed, EC[i] is the equivalence class of i.
34 SmallVector<unsigned, 8> EC; member in class:llvm::IntEqClasses
52 EC.clear();
78 return EC[a];
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/
H A DEC.java13 public class EC class
28 put("KeyFactory.EC", "org.bouncycastle.jce.provider.asymmetric.ec.KeyFactory$EC");
35 put("Alg.Alias.KeyFactory." + X9ObjectIdentifiers.id_ecPublicKey, "EC");
37 put("Alg.Alias.KeyFactory." + X9ObjectIdentifiers.dhSinglePass_stdDH_sha1kdf_scheme, "EC");
47 put("KeyPairGenerator.EC", "org.bouncycastle.jce.provider.asymmetric.ec.KeyPairGenerator$EC");
56 put("Alg.Alias.KeyPairGenerator." + X9ObjectIdentifiers.dhSinglePass_stdDH_sha1kdf_scheme, "EC");
/external/llvm/include/llvm/CodeGen/
H A DEdgeBundles.h29 /// EC - Each edge bundle is an equivalence class. The keys are:
32 IntEqClasses EC; member in class:llvm::EdgeBundles
43 unsigned getBundle(unsigned N, bool Out) const { return EC[2 * N + Out]; }
46 unsigned getNumBundles() const { return EC.getNumClasses(); }
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/
H A DKeyFactory.java155 public static class EC class in class:KeyFactory
158 public EC() method in class:KeyFactory.EC
160 super("EC");
H A DKeyPairGenerator.java46 public static class EC class in class:KeyPairGenerator
74 public EC() method in class:KeyPairGenerator.EC
76 super("EC");
77 this.algorithm = "EC";
80 public EC( method in class:KeyPairGenerator.EC
268 // throw new IllegalStateException("EC Key Pair Generator not initialised");
307 extends EC
317 // extends EC
327 extends EC
336 extends EC
[all...]
/external/llvm/lib/Support/
H A DLockFileManager.cpp80 if (error_code EC
85 Error = EC;
116 error_code EC local
119 if (EC == errc::success)
143 Error = EC;
/external/clang/lib/Frontend/
H A DFrontendActions.cpp167 llvm::error_code EC; local
170 for (llvm::sys::fs::recursive_directory_iterator Dir(DirNative.str(), EC),
172 Dir != DirEnd && !EC; Dir.increment(EC)) {
/external/clang/lib/Lex/
H A DPPLexerChange.cpp364 llvm::error_code EC; local
365 for (recursive_directory_iterator Entry(Dir->getName(), EC), End;
366 Entry != End && !EC; Entry.increment(EC)) {
H A DHeaderSearch.cpp987 llvm::error_code EC; local
994 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
995 Dir != DirEnd && !EC; Dir.increment(EC)) {
1019 llvm::error_code EC; local
1022 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
1023 Dir != DirEnd && !EC; Dir.increment(EC)) {
H A DModuleMap.cpp334 llvm::error_code EC; local
342 Dir(SubframeworksDirNameNative.str(), EC), DirEnd;
343 Dir != DirEnd && !EC; Dir.increment(EC)) {
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp324 error_code EC = getSectionContents(sec, Res); local
326 return EC;
/external/clang/lib/Sema/
H A DSemaAccess.cpp390 const EffectiveContext &EC,
392 if (EC.includesClass(Friend))
395 if (EC.isDependent()) {
400 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
412 const EffectiveContext &EC,
415 return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl()));
427 const EffectiveContext &EC,
434 I = EC.Records.begin(), E = EC
389 MatchesFriend(Sema &S, const EffectiveContext &EC, const CXXRecordDecl *Friend) argument
411 MatchesFriend(Sema &S, const EffectiveContext &EC, CanQualType Friend) argument
426 MatchesFriend(Sema &S, const EffectiveContext &EC, ClassTemplateDecl *Friend) argument
479 MatchesFriend(Sema &S, const EffectiveContext &EC, FunctionDecl *Friend) argument
498 MatchesFriend(Sema &S, const EffectiveContext &EC, FunctionTemplateDecl *Friend) argument
528 MatchesFriend(Sema &S, const EffectiveContext &EC, FriendDecl *FriendD) argument
557 GetFriendKind(Sema &S, const EffectiveContext &EC, const CXXRecordDecl *Class) argument
590 const EffectiveContext &EC; member in struct:__anon3266::ProtectedFriendContext
598 ProtectedFriendContext(Sema &S, const EffectiveContext &EC, const CXXRecordDecl *InstanceContext, const CXXRecordDecl *NamingClass) argument
703 GetProtectedFriendKind(Sema &S, const EffectiveContext &EC, const CXXRecordDecl *InstanceContext, const CXXRecordDecl *NamingClass) argument
721 HasAccess(Sema &S, const EffectiveContext &EC, const CXXRecordDecl *NamingClass, AccessSpecifier Access, const AccessTarget &Target) argument
919 FindBestPath(Sema &S, const EffectiveContext &EC, AccessTarget &Target, AccessSpecifier FinalAccess, CXXBasePaths &Paths) argument
1011 TryDiagnoseProtectedAccess(Sema &S, const EffectiveContext &EC, AccessTarget &Target) argument
1087 DiagnoseAccessPath(Sema &S, const EffectiveContext &EC, AccessTarget &Entity) argument
1210 DiagnoseBadAccess(Sema &S, SourceLocation Loc, const EffectiveContext &EC, AccessTarget &Entity) argument
1265 IsAccessible(Sema &S, const EffectiveContext &EC, AccessTarget &Entity) argument
1342 DelayDependentAccess(Sema &S, const EffectiveContext &EC, SourceLocation Loc, const AccessTarget &Entity) argument
1360 CheckEffectiveAccess(Sema &S, const EffectiveContext &EC, SourceLocation Loc, AccessTarget &Entity) argument
[all...]
/external/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp303 /// lookupVirtReg - Find the EC leader for VirtReg or null.
335 void mapVirtReg(unsigned VirtReg, UserValue *EC);
429 void LDVImpl::mapVirtReg(unsigned VirtReg, UserValue *EC) { argument
432 Leader = UserValue::merge(Leader, EC);
/external/dropbear/libtomcrypt/
H A Dcrypt.tex3901 \mysection{EC DSA Signatures}
3903 There are also functions to sign and verify messages. They use the ANSI X9.62 EC-DSA algorithm to generate and verify signatures in the
3906 \subsection{EC-DSA Signature Generation}
3920 This function will EC--DSA sign the message digest stored in the array pointed to by \textit{in} of length \textit{inlen} octets. The signature
3924 \subsection{EC-DSA Signature Verification}
3935 This function will verify the EC-DSA signature in the array pointed to by \textit{sig} of length \textit{siglen} octets, against the message digest
3941 The signature code is an implementation of X9.62 EC--DSA, and the output is compliant for GF(p) curves.
6409 The ECC system in LibTomCrypt is based off of the NIST recommended curves over $GF(p)$ and is used to implement EC-DSA and EC-DH. The ECC functions work with
6442 To accelerate EC
[all...]
/external/clang/lib/Driver/
H A DToolChains.cpp1334 llvm::error_code EC; local
1335 for (llvm::sys::fs::directory_iterator LI(LibDir + LibSuffix, EC), LE;
1336 !EC && LI != LE; LI = LI.increment(EC)) {
/external/tcpdump/
H A Dtelnet.h54 #define EC 247 /* erase the current character */ macro
72 "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
223 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/external/clang/lib/Analysis/
H A DCFG.cpp1546 ExprWithCleanups *EC = cast<ExprWithCleanups>(Init); local
1547 if (CFGBlock *newBlock = Visit(EC->getSubExpr()))

Completed in 276 milliseconds