HomeSort by relevance Sort by last modified time
    Searched defs:ec (Results 151 - 175 of 542) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
re.h 102 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB); local
103 if (ec != 0) {
105 size_t needed = regerror(ec, &re_, nullptr, 0);
107 regerror(ec, &re_, errbuf, needed);
  /system/update_engine/
omaha_response_handler_action.cc 169 auto ec = ErrorCode::kSuccess; local
171 &Policy::UpdateCanBeApplied, &ec, &install_plan_);
172 completer.set_code(ec);
  /system/update_engine/update_manager/
update_manager-inl.h 33 EvaluationContext* ec,
42 if (ec->is_expired()) {
44 << ec->DumpContext();
45 ec->ResetExpiration();
49 ec->ResetEvaluation();
56 EvalStatus status = (policy_.get()->*policy_method)(ec, state_.get(), &error,
61 << "\nEvaluation context: " << ec->DumpContext();
63 status = (default_policy_.*policy_method)(ec, state_.get(), &error, result,
81 scoped_refptr<EvaluationContext> ec,
89 EvalStatus status = EvaluatePolicy(ec.get(), policy_method, &result, args...)
143 scoped_refptr<EvaluationContext> ec = local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/
key.c 86 EC_KEY *ec; local
88 ec = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
89 if (ec == NULL) {
90 printf("Cannot create EC key\n");
93 if (!EC_KEY_generate_key(ec)) {
94 printf("Cannot generate EC key\n");
97 EC_KEY_set_flags(ec, EC_PKEY_NO_PARAMETERS);
98 EC_KEY_set_asn1_flag(ec, OPENSSL_EC_NAMED_CURVE);
99 if (!EVP_PKEY_assign_EC_KEY(key->key, ec)) {
100 printf("Cannot assign EC key\n")
    [all...]
  /external/boringssl/src/crypto/evp/
p_ec.c 63 #include <openssl/ec.h>
72 #include "../fipsmodule/ec/internal.h"
120 EC_KEY *ec = ctx->pkey->pkey.ec; local
123 *siglen = ECDSA_size(ec);
125 } else if (*siglen < (size_t)ECDSA_size(ec)) {
130 if (!ECDSA_sign(0, tbs, tbslen, sig, &sltmp, ec)) {
139 return ECDSA_verify(0, tbs, tbslen, sig, siglen, ctx->pkey->pkey.ec);
154 eckey = ctx->pkey->pkey.ec;
162 pubkey = EC_KEY_get0_public_key(ctx->peerkey->pkey.ec);
213 EC_KEY *ec = EC_KEY_new(); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
PrivateKeyFactory.java 26 import org.bouncycastle.crypto.ec.CustomNamedCurves;
155 ECPrivateKey ec = ECPrivateKey.getInstance(keyInfo.parsePrivateKey()); local
156 BigInteger d = ec.getKey();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
ECUtils.java 1 package org.bouncycastle.jcajce.provider.asymmetric.ec;
17 import org.bouncycastle.math.ec.ECCurve;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
FixedPointCombMultiplier.java 1 package org.bouncycastle.math.ec;
WNafL2RMultiplier.java 1 package org.bouncycastle.math.ec;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192K1Curve.java 1 package org.bouncycastle.math.ec.custom.sec;
5 import org.bouncycastle.math.ec.ECConstants;
6 import org.bouncycastle.math.ec.ECCurve;
7 import org.bouncycastle.math.ec.ECFieldElement;
8 import org.bouncycastle.math.ec.ECPoint;
SecP192R1Curve.java 1 package org.bouncycastle.math.ec.custom.sec;
5 import org.bouncycastle.math.ec.ECCurve;
6 import org.bouncycastle.math.ec.ECFieldElement;
7 import org.bouncycastle.math.ec.ECPoint;
SecP224K1Curve.java 1 package org.bouncycastle.math.ec.custom.sec;
5 import org.bouncycastle.math.ec.ECConstants;
6 import org.bouncycastle.math.ec.ECCurve;
7 import org.bouncycastle.math.ec.ECFieldElement;
8 import org.bouncycastle.math.ec.ECPoint;
SecP224R1Curve.java 1 package org.bouncycastle.math.ec.custom.sec;
5 import org.bouncycastle.math.ec.ECCurve;
6 import org.bouncycastle.math.ec.ECFieldElement;
7 import org.bouncycastle.math.ec.ECPoint;
SecP256K1Curve.java 1 package org.bouncycastle.math.ec.custom.sec;
5 import org.bouncycastle.math.ec.ECConstants;
6 import org.bouncycastle.math.ec.ECCurve;
7 import org.bouncycastle.math.ec.ECFieldElement;
8 import org.bouncycastle.math.ec.ECPoint;
SecP256R1Curve.java 1 package org.bouncycastle.math.ec.custom.sec;
5 import org.bouncycastle.math.ec.ECCurve;
6 import org.bouncycastle.math.ec.ECFieldElement;
7 import org.bouncycastle.math.ec.ECPoint;
SecP384R1Curve.java 1 package org.bouncycastle.math.ec.custom.sec;
5 import org.bouncycastle.math.ec.ECCurve;
6 import org.bouncycastle.math.ec.ECFieldElement;
7 import org.bouncycastle.math.ec.ECPoint;
SecP521R1Curve.java 1 package org.bouncycastle.math.ec.custom.sec;
5 import org.bouncycastle.math.ec.ECCurve;
6 import org.bouncycastle.math.ec.ECFieldElement;
7 import org.bouncycastle.math.ec.ECPoint;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/
GLVTypeBEndomorphism.java 1 package org.bouncycastle.math.ec.endo;
5 import org.bouncycastle.math.ec.ECConstants;
6 import org.bouncycastle.math.ec.ECCurve;
7 import org.bouncycastle.math.ec.ECPointMap;
8 import org.bouncycastle.math.ec.ScaleXPointMap;
  /external/icu/icu4c/source/common/
uvectr64.cpp 73 void UVector64::assign(const UVector64& other, UErrorCode &ec) {
74 if (ensureCapacity(other.count, ec)) {
202 UErrorCode ec = U_ZERO_ERROR; local
203 if (!ensureCapacity(newSize, ec)) {
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.copy_file/
copy_file.pass.cpp 15 // bool copy_file(const path& from, const path& to, error_code& ec) noexcept;
18 // error_code& ec) noexcept;
40 std::error_code ec; ((void)ec); local
43 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, ec)), bool);
44 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts, ec)), bool);
47 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, ec));
48 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, opts, ec));
53 auto checkThrow = [](path const& f, path const& t, const std::error_code& ec)
62 && err.code() == ec;
76 std::error_code ec; local
84 std::error_code ec; local
99 std::error_code ec; local
106 std::error_code ec; local
122 std::error_code ec; local
133 std::error_code ec; local
148 std::error_code ec; local
160 std::error_code ec = GetTestEC(); local
177 std::error_code ec = GetTestEC(); local
184 std::error_code ec = GetTestEC(); local
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.read_symlink/
read_symlink.pass.cpp 15 // path read_symlink(const path& p, error_code& ec);
31 std::error_code ec; ((void)ec); local
33 ASSERT_SAME_TYPE(decltype(fs::read_symlink(p, ec)), fs::path);
37 ASSERT_NOT_NOEXCEPT(fs::read_symlink(p, ec));
42 auto checkThrow = [](path const& f, const std::error_code& ec)
51 && err.code() == ec;
54 ((void)f); ((void)ec);
66 std::error_code ec; local
67 const path ret = fs::read_symlink(p, ec);
94 std::error_code ec = std::make_error_code(std::errc::address_in_use); local
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.rename/
rename.pass.cpp 15 // void rename(const path& old_p, const path& new_p, error_code& ec) noexcept;
31 std::error_code ec; ((void)ec); local
33 ASSERT_SAME_TYPE(decltype(fs::rename(p, p, ec)), void);
36 ASSERT_NOEXCEPT(fs::rename(p, p, ec));
41 auto checkThrow = [](path const& f, path const& t, const std::error_code& ec)
50 && err.code() == ec;
53 ((void)f); ((void)t); ((void)ec);
72 std::error_code ec; local
73 rename(TC.from, TC.to, ec);
88 std::error_code ec = set_ec; local
96 std::error_code ec = set_ec; local
106 std::error_code ec = set_ec; local
117 std::error_code ec = set_ec; local
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.status/
status.pass.cpp 15 // file_status status(const path& p, error_code& ec) noexcept;
30 std::error_code ec; ((void)ec); local
32 ASSERT_NOEXCEPT(status(p, ec));
44 std::error_code ec = std::make_error_code(std::errc::address_in_use); local
46 file_status st = status(p, ec);
47 TEST_CHECK(ec == expect_ec);
84 std::error_code ec = set_ec; local
85 file_status st = status(TC.p, ec);
86 TEST_CHECK(ec == TC.expect_ec)
124 std::error_code ec = std::make_error_code(std::errc::address_in_use); local
145 std::error_code ec; local
155 std::error_code ec = std::make_error_code(std::errc::address_in_use); local
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.symlink_status/
symlink_status.pass.cpp 15 // file_status symlink_status(const path& p, error_code& ec) noexcept;
30 std::error_code ec; ((void)ec); local
32 ASSERT_NOEXCEPT(symlink_status(p, ec));
43 std::error_code ec = std::make_error_code(std::errc::address_in_use); local
45 file_status st = symlink_status(p, ec);
46 TEST_CHECK(ec == expect_ec);
77 std::error_code ec = set_ec; local
78 file_status st = symlink_status(p, ec);
79 TEST_CHECK(ec == expect_ec)
98 std::error_code ec = set_ec; local
132 std::error_code ec = std::make_error_code(std::errc::address_in_use); local
154 std::error_code ec; local
166 std::error_code ec = std::make_error_code(std::errc::address_in_use); local
180 std::error_code ec = std::make_error_code(std::errc::address_in_use); local
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_stream_socket.hpp 236 asio::error_code ec; local
238 this->get_implementation(), buffers, 0, ec);
239 asio::detail::throw_error(ec, "send");
274 asio::error_code ec; local
276 this->get_implementation(), buffers, flags, ec);
277 asio::detail::throw_error(ec, "send");
291 * @param ec Set to indicate what error occurred, if any.
301 socket_base::message_flags flags, asio::error_code& ec)
304 this->get_implementation(), buffers, flags, ec);
441 asio::error_code ec; local
482 asio::error_code ec; local
650 asio::error_code ec; local
760 asio::error_code ec; local
    [all...]

Completed in 319 milliseconds

1 2 3 4 5 67 8 91011>>