HomeSort by relevance Sort by last modified time
    Searched refs:EC (Results 1 - 25 of 195) sorted by null

1 2 3 4 5 6 7 8

  /external/llvm/lib/Support/
IntEqClasses.cpp 27 EC.reserve(N);
28 while (EC.size() < N)
29 EC.push_back(EC.size());
34 unsigned eca = EC[a];
35 unsigned ecb = EC[b];
41 EC[b] = eca, b = ecb, ecb = EC[b];
43 EC[a] = ecb, a = eca, eca = EC[a]
    [all...]
FileOutputBuffer.cpp 40 std::error_code EC = sys::fs::status(FilePath, Stat);
52 if (EC)
53 return EC;
59 EC = sys::fs::remove(FilePath);
60 if (EC)
61 return EC;
71 EC = sys::fs::createUniqueFile(Twine(FilePath) + ".tmp%%%%%%%", FD,
73 if (EC)
74 return EC;
77 FD, true, mapped_file_region::readwrite, Size, 0, EC));
    [all...]
LockFileManager.cpp 77 if (std::error_code EC = sys::fs::make_absolute(this->FileName)) {
78 Error = EC;
93 if (std::error_code EC = sys::fs::createUniqueFile(
95 Error = EC;
126 std::error_code EC =
128 if (!EC)
131 if (EC != errc::file_exists) {
132 Error = EC;
152 if ((EC = sys::fs::remove(LockFileName.str()))) {
153 Error = EC;
    [all...]
  /external/clang/test/CXX/expr/expr.post/expr.static.cast/
p9-0x.cpp 4 enum class EC { ec1 };
6 void test0(EC ec) {
7 (void)static_cast<bool>(ec);
8 (void)static_cast<bool>(EC::ec1);
9 (void)static_cast<char>(ec);
10 (void)static_cast<char>(EC::ec1);
11 (void)static_cast<int>(ec);
12 (void)static_cast<int>(EC::ec1);
13 (void)static_cast<unsigned long>(ec);
    [all...]
  /external/llvm/unittests/Support/
LockFileManagerTest.cpp 22 std::error_code EC;
23 EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir);
24 ASSERT_FALSE(EC);
43 EC = sys::fs::remove(StringRef(TmpDir));
44 ASSERT_FALSE(EC);
49 std::error_code EC;
50 EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir);
51 ASSERT_FALSE(EC);
63 EC = sys::fs::openFileForWrite(StringRef(TmpFileLock), FD, sys::fs::F_None);
64 ASSERT_FALSE(EC);
    [all...]
MemoryTest.cpp 60 std::error_code EC;
61 MemoryBlock M1 = Memory::allocateMappedMemory(sizeof(int), nullptr, Flags,EC);
62 EXPECT_EQ(std::error_code(), EC);
71 std::error_code EC;
72 MemoryBlock M1 = Memory::allocateMappedMemory(16, nullptr, Flags, EC);
73 EXPECT_EQ(std::error_code(), EC);
74 MemoryBlock M2 = Memory::allocateMappedMemory(64, nullptr, Flags, EC);
75 EXPECT_EQ(std::error_code(), EC);
76 MemoryBlock M3 = Memory::allocateMappedMemory(32, nullptr, Flags, EC);
77 EXPECT_EQ(std::error_code(), EC);
    [all...]
  /external/llvm/include/llvm/ADT/
IntEqClasses.h 29 /// 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;
52 EC.clear();
78 return EC[a];
  /external/llvm/include/llvm/CodeGen/
EdgeBundles.h 29 /// EC - Each edge bundle is an equivalence class. The keys are:
32 IntEqClasses EC;
43 unsigned getBundle(unsigned N, bool Out) const { return EC[2 * N + Out]; }
46 unsigned getNumBundles() const { return EC.getNumClasses(); }
  /external/llvm/lib/Object/
ELFObjectFile.cpp 27 std::error_code EC;
33 std::move(Obj), EC));
38 std::move(Obj), EC));
45 EC));
50 EC));
57 EC));
62 EC));
69 std::move(Obj), EC));
74 std::move(Obj), EC));
81 if (EC)
    [all...]
COFFObjectFile.cpp 33 // Returns false if size is greater than the buffer size. And sets ec.
34 static bool checkSize(const MemoryBuffer &M, std::error_code &EC,
37 EC = object_error::unexpected_eof;
143 if (std::error_code EC = getSection(Symb->SectionNumber, Section))
144 return EC;
168 if (std::error_code EC = getSection(Symb->SectionNumber, Section))
169 return EC;
213 if (std::error_code EC = getSection(Symb->SectionNumber, Section))
214 return EC;
233 if (std::error_code EC = getSection(Symb->SectionNumber, Sec)
    [all...]
  /external/llvm/tools/obj2yaml/
elf2yaml.cpp 77 if (std::error_code EC = S.getError())
78 return EC;
84 if (std::error_code EC = S.getError())
85 return EC;
92 if (std::error_code EC = S.getError())
93 return EC;
108 if (std::error_code EC = ELFDumper<ELFT>::dumpSymbol(SI, S))
109 return EC;
139 if (std::error_code EC = NameOrErr.getError())
140 return EC;
    [all...]
obj2yaml.cpp 36 if (std::error_code EC = BinaryOrErr.getError())
37 return EC;
56 if (std::error_code EC = dumpInput(InputFilename)) {
57 errs() << "Error: '" << EC.message() << "'\n";
  /external/llvm/lib/IRReader/
IRReader.cpp 38 if (std::error_code EC = ModuleOrErr.getError()) {
40 EC.message());
56 if (std::error_code EC = FileOrErr.getError()) {
58 "Could not open input file: " + EC.message());
73 if (std::error_code EC = ModuleOrErr.getError())
75 EC.message());
91 if (std::error_code EC = FileOrErr.getError()) {
93 "Could not open input file: " + EC.message());
  /bootable/recovery/
verifier.h 31 EC,
37 ECPublicKey* ec; member in struct:__anon1132
  /external/chromium_org/third_party/boringssl/src/crypto/ec/
oct.c 68 #include <openssl/ec.h>
89 OPENSSL_PUT_ERROR(EC, ec_GFp_simple_point2oct, EC_R_INVALID_FORM);
97 OPENSSL_PUT_ERROR(EC, ec_GFp_simple_point2oct, EC_R_BUFFER_TOO_SMALL);
114 OPENSSL_PUT_ERROR(EC, ec_GFp_simple_point2oct, EC_R_BUFFER_TOO_SMALL);
145 OPENSSL_PUT_ERROR(EC, ec_GFp_simple_point2oct, ERR_R_INTERNAL_ERROR);
155 OPENSSL_PUT_ERROR(EC, ec_GFp_simple_point2oct, ERR_R_INTERNAL_ERROR);
163 OPENSSL_PUT_ERROR(EC, ec_GFp_simple_point2oct, ERR_R_INTERNAL_ERROR);
175 OPENSSL_PUT_ERROR(EC, ec_GFp_simple_point2oct, ERR_R_INTERNAL_ERROR);
206 OPENSSL_PUT_ERROR(EC, ec_GFp_simple_oct2point, EC_R_BUFFER_TOO_SMALL);
215 OPENSSL_PUT_ERROR(EC, ec_GFp_simple_oct2point, EC_R_INVALID_ENCODING)
    [all...]
ec_asn1.c 54 #include <openssl/ec.h>
166 OPENSSL_PUT_ERROR(EC, ec_asn1_group2pkparameters, ERR_R_MALLOC_FAILURE);
196 OPENSSL_PUT_ERROR(EC, ec_asn1_pkparameters2group, EC_R_MISSING_PARAMETERS);
222 OPENSSL_PUT_ERROR(EC, ec_asn1_pkparameters2group, EC_R_NON_NAMED_CURVE);
228 OPENSSL_PUT_ERROR(EC, ec_asn1_pkparameters2group,
243 OPENSSL_PUT_ERROR(EC, d2i_ECPKParameters, EC_R_D2I_ECPKPARAMETERS_FAILURE);
250 OPENSSL_PUT_ERROR(EC, d2i_ECPKParameters, EC_R_PKPARAMETERS2GROUP_FAILURE);
270 OPENSSL_PUT_ERROR(EC, i2d_ECPKParameters, EC_R_GROUP2PKPARAMETERS_FAILURE);
275 OPENSSL_PUT_ERROR(EC, i2d_ECPKParameters, EC_R_I2D_ECPKPARAMETERS_FAILURE);
290 OPENSSL_PUT_ERROR(EC, d2i_ECPrivateKey, ERR_R_MALLOC_FAILURE)
    [all...]
wnaf.c 68 #include <openssl/ec.h>
103 OPENSSL_PUT_ERROR(EC, ec_pre_comp_new, ERR_R_MALLOC_FAILURE);
168 OPENSSL_PUT_ERROR(EC, compute_wNAF, ERR_R_MALLOC_FAILURE);
179 OPENSSL_PUT_ERROR(EC, compute_wNAF, ERR_R_INTERNAL_ERROR);
191 OPENSSL_PUT_ERROR(EC, compute_wNAF, ERR_R_INTERNAL_ERROR);
202 OPENSSL_PUT_ERROR(EC, compute_wNAF, ERR_R_MALLOC_FAILURE);
235 OPENSSL_PUT_ERROR(EC, compute_wNAF, ERR_R_INTERNAL_ERROR);
245 OPENSSL_PUT_ERROR(EC, compute_wNAF, ERR_R_INTERNAL_ERROR);
256 OPENSSL_PUT_ERROR(EC, compute_wNAF, ERR_R_INTERNAL_ERROR);
262 OPENSSL_PUT_ERROR(EC, compute_wNAF, ERR_R_INTERNAL_ERROR)
    [all...]
ec.c 68 #include <openssl/ec.h>
231 OPENSSL_PUT_ERROR(EC, ec_group_new, EC_R_SLOT_FULL);
236 OPENSSL_PUT_ERROR(EC, ec_group_new, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
242 OPENSSL_PUT_ERROR(EC, ec_group_new, ERR_R_MALLOC_FAILURE);
271 OPENSSL_PUT_ERROR(EC, ec_group_new_curve_GFp,
294 OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_MALLOC_FAILURE);
305 OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_BN_LIB);
313 OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_EC_LIB);
318 OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_EC_LIB);
324 OPENSSL_PUT_ERROR(EC, ec_group_new_from_data, ERR_R_EC_LIB)
    [all...]
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 91 std::error_code &EC) override {
271 std::error_code EC;
273 EC = llvm::sys::fs::createUniqueDirectory(Name, Path);
276 EC = llvm::sys::fs::create_directory(Twine(Path));
278 if (EC)
280 EXPECT_FALSE(EC);
294 std::error_code EC;
295 vfs::directory_iterator I = FS->dir_begin(Twine(TestDirectory), EC);
296 ASSERT_FALSE(EC);
304 I = FS->dir_begin(Twine(TestDirectory), EC);
    [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 74 if (std::error_code EC = openFileForRead(Name, F))
75 return EC;
77 std::error_code EC =
79 return EC;
114 if (std::error_code EC = sys::fs::status(FD, RealStatus))
115 return EC;
132 if (std::error_code EC = BufferOrErr.getError())
133 return EC;
166 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
172 if (std::error_code EC = sys::fs::status(Path, RealStatus)
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitReader.cpp 35 if (std::error_code EC = ModuleOrErr.getError()) {
37 *OutMessage = strdup(EC.message().c_str());
57 if (std::error_code EC = ModuleOrErr.getError()) {
60 *OutMessage = strdup(EC.message().c_str());
  /external/llvm/lib/CodeGen/
EdgeBundles.cpp 41 EC.clear();
42 EC.grow(2 * MF->getNumBlockIDs());
49 EC.join(OutE, 2 * (*SI)->getNumber());
51 EC.compress();
  /external/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 72 if (std::error_code EC = Buff.getError()) {
73 errs() << Filename << ": " << EC.message() << "\n";
78 if (std::error_code EC = ObjOrErr.getError()) {
79 errs() << Filename << ": " << EC.message() << '\n';
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/
EC.java 8 import org.bouncycastle.jcajce.provider.asymmetric.ec.KeyFactorySpi;
12 public class EC
14 private static final String PREFIX = "org.bouncycastle.jcajce.provider.asymmetric" + ".ec.";
33 registerOid(provider, X9ObjectIdentifiers.id_ecPublicKey, "EC", new KeyFactorySpi.EC());
35 registerOid(provider, X9ObjectIdentifiers.dhSinglePass_stdDH_sha1kdf_scheme, "EC", new KeyFactorySpi.EC());
41 // registerOidAlgorithmParameters(provider, X9ObjectIdentifiers.id_ecPublicKey, "EC");
43 // registerOidAlgorithmParameters(provider, X9ObjectIdentifiers.dhSinglePass_stdDH_sha1kdf_scheme, "EC");
44 // registerOidAlgorithmParameters(provider, X9ObjectIdentifiers.mqvSinglePass_sha1kdf_scheme, "EC");
    [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 100 // We want to add canonical declarations to the EC lists for
402 const EffectiveContext &EC,
404 if (EC.includesClass(Friend))
407 if (EC.isDependent()) {
412 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
424 const EffectiveContext &EC,
427 return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl()));
439 const EffectiveContext &EC,
446 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I)
    [all...]

Completed in 664 milliseconds

1 2 3 4 5 6 7 8