HomeSort by relevance Sort by last modified time
    Searched defs:ec (Results 126 - 150 of 357) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
BCECPrivateKey.java 1 package org.bouncycastle.jcajce.provider.asymmetric.ec;
40 import org.bouncycastle.math.ec.ECCurve;
47 private String algorithm = "EC";
284 org.bouncycastle.asn1.sec.ECPrivateKey ec = org.bouncycastle.asn1.sec.ECPrivateKey.getInstance(privKey); local
286 this.d = ec.getKey();
287 this.publicKey = ec.getPublicKey();
457 buf.append("EC Private Key").append(nl);
KeyPairGeneratorSpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.ec;
31 import org.bouncycastle.math.ec.ECCurve;
32 import org.bouncycastle.math.ec.ECPoint;
43 public static class EC
70 public EC()
72 super("EC");
73 this.algorithm = "EC";
77 public EC(
284 extends EC
293 extends EC
    [all...]
  /device/generic/goldfish/camera/
EmulatedCamera3.cpp 214 EmulatedCamera3* ec = getInstance(d); local
215 return ec->initializeDevice(callback_ops);
220 EmulatedCamera3* ec = getInstance(d); local
221 return ec->configureStreams(stream_list);
227 EmulatedCamera3* ec = getInstance(d); local
228 return ec->registerStreamBuffers(buffer_set);
234 EmulatedCamera3* ec = getInstance(d); local
235 return ec->processCaptureRequest(request);
240 EmulatedCamera3* ec = getInstance(d); local
241 return ec->constructDefaultRequestSettings(type)
254 EmulatedCamera3* ec = static_cast<const TagOps*>(v)->parent; local
261 EmulatedCamera3* ec = static_cast<const TagOps*>(v)->parent; local
268 EmulatedCamera3* ec = static_cast<const TagOps*>(v)->parent; local
273 EmulatedCamera3* ec = getInstance(d); local
278 EmulatedCamera3* ec = local
    [all...]
  /external/aac/libAACenc/src/
bit_cnt.cpp 455 INT bc11,ec,sc; local
460 ec=0;
472 ec+=5;
474 ec+=2;
478 ec+=5;
480 ec+=2;
487 bitCount[11]=bc11+sc+ec;
  /external/aac/libMpegTPDec/src/
tpdec_asc.cpp 325 int cc = 0, fc = 0, sc = 0, bc = 0, lc = 0, ec = 0; /* Channel and element counters */ local
343 *elMapping = ec;
346 ec++;
364 *elMapping = ec;
367 ec++;
385 *elMapping = ec;
388 ec++;
400 ec = pPce->NumFrontChannelElements+ pPce->NumSideChannelElements + pPce->NumBackChannelElements;
405 *elMapping = ec;
410 ec++
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
SimpleBigDecimal.java 1 package org.bouncycastle.math.ec;
  /external/icu4c/common/
uvectr32.cpp 74 void UVector32::assign(const UVector32& other, UErrorCode &ec) {
75 if (ensureCapacity(other.count, ec)) {
279 UErrorCode ec = U_ZERO_ERROR; local
280 if (!ensureCapacity(newSize, ec)) {
298 void UVector32::sortedInsert(int32_t tok, UErrorCode& ec) {
316 if (ensureCapacity(count + 1, ec)) {
  /external/icu4c/i18n/
datefmt.cpp 199 UErrorCode ec = U_ZERO_ERROR; local
200 calClone->setTime(date, ec);
201 if (U_SUCCESS(ec)) {
253 UErrorCode ec = U_ZERO_ERROR; local
254 d = calClone->getTime(ec);
255 if (U_FAILURE(ec)) {
  /external/icu4c/test/intltest/
windttst.cpp 82 int32_t ec = TimeZone::countEquivalentIDs(zoneID); local
84 for (int z = 0; z < ec; z += 1) {
  /external/llvm/lib/Object/
Object.cpp 46 error_code ec; local
47 unwrap(SI)->increment(ec);
48 if (ec) report_fatal_error("LLVMMoveToNextSection failed: " + ec.message());
53 if (error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect)))
54 report_fatal_error(ec.message());
73 error_code ec; local
74 unwrap(SI)->increment(ec);
75 if (ec) report_fatal_error("LLVMMoveToNextSymbol failed: " + ec.message())
131 error_code ec; local
    [all...]
  /external/llvm/tools/llvm-prof/
llvm-prof.cpp 268 error_code ec; local
270 if (!(ec = MemoryBuffer::getFileOrSTDIN(BitcodeFile, Buffer))) {
273 ErrorMessage = ec.message();
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 96 static void checkError(error_code ec, const char *msg) {
97 if (ec)
98 report_fatal_error(std::string(msg) + ": " + ec.message());
202 error_code ec; local
207 it.increment(ec);
208 if (ec)
226 error_code ec; local
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 133 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFileList[i],
135 return Error("unable to read input: '" + ec.message() + "'");
149 error_code ec; local
152 I != E && !ec;
153 I.increment(ec)) {
193 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFileList[i],
195 return Error("unable to read input: '" + ec.message() + "'");
  /external/llvm/tools/llvm-size/
llvm-size.cpp 70 /// @brief If ec is not success, print the error and return true.
71 static bool error(error_code ec) {
72 if (!ec) return false;
74 outs() << ToolName << ": error reading file: " << ec.message() << ".\n";
114 error_code ec; local
117 i.increment(ec)) {
118 if (error(ec))
159 i.increment(ec)) {
160 if (error(ec))
192 error_code ec; local
    [all...]
  /external/openssl/crypto/pkcs7/
pk7_lib.c 594 PKCS7_ENC_CONTENT *ec; local
600 ec=p7->d.signed_and_enveloped->enc_data;
603 ec=p7->d.enveloped->enc_data;
617 ec->cipher = cipher;
  /external/webkit/Source/WebCore/bindings/js/
JSLocationCustom.cpp 191 ExceptionCode ec = 0;
192 impl()->setProtocol(ustringToString(protocol), activeDOMWindow(exec), firstDOMWindow(exec), ec); local
193 setDOMException(exec, ec);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8LocationCustom.cpp 132 ExceptionCode ec = 0; local
133 impl->setProtocol(protocol, state->activeWindow(), state->firstWindow(), ec);
134 if (UNLIKELY(ec))
135 V8Proxy::setDOMException(ec);
  /external/webkit/Source/WebCore/dom/
XMLDocumentParser.cpp 200 ExceptionCode ec = 0;
201 static_cast<Text*>(m_currentNode)->appendData(toString(m_bufferedText.data(), m_bufferedText.size()), ec); local
267 ExceptionCode ec = 0; local
269 reportElement->appendChild(h3.get(), ec);
270 h3->appendChild(doc->createTextNode("This page contains the following errors:"), ec);
273 reportElement->appendChild(fixed.get(), ec);
275 fixed->appendChild(doc->createTextNode(errorMessages), ec);
278 reportElement->appendChild(h3.get(), ec);
279 h3->appendChild(doc->createTextNode("Below is a rendering of the page up to the first error."), ec);
295 ExceptionCode ec = 0
    [all...]
  /external/webkit/Source/WebCore/editing/
DeleteButtonController.cpp 156 ExceptionCode ec = 0;
157 Node* container = range->commonAncestorContainer(ec);
159 ASSERT(ec == 0);
221 ExceptionCode ec = 0; local
222 container->appendChild(outline.get(), ec);
223 ASSERT(ec == 0);
224 if (ec)
249 container->appendChild(button.get(), ec);
250 ASSERT(ec == 0);
251 if (ec)
282 ExceptionCode ec = 0; local
306 ExceptionCode ec = 0; local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLMeterElement.cpp 90 void HTMLMeterElement::setMin(double min, ExceptionCode& ec)
93 ec = NOT_SUPPORTED_ERR;
106 void HTMLMeterElement::setMax(double max, ExceptionCode& ec)
109 ec = NOT_SUPPORTED_ERR;
122 void HTMLMeterElement::setValue(double value, ExceptionCode& ec)
125 ec = NOT_SUPPORTED_ERR;
138 void HTMLMeterElement::setLow(double low, ExceptionCode& ec)
141 ec = NOT_SUPPORTED_ERR;
154 void HTMLMeterElement::setHigh(double high, ExceptionCode& ec)
157 ec = NOT_SUPPORTED_ERR
232 ExceptionCode ec = 0; local
    [all...]
HTMLScriptElement.cpp 124 ExceptionCode ec = 0; local
128 static_cast<Text*>(firstChild())->setData(value, ec);
135 appendChild(document()->createTextNode(value.impl()), ec);
  /external/webkit/Source/WebCore/inspector/
InspectorPageAgent.cpp 180 ExceptionCode ec = 0; local
181 stringCookiesList += document->cookie(ec);
184 ASSERT(!ec);
  /external/webkit/Source/WebCore/platform/win/
PasteboardWin.cpp 123 ExceptionCode ec = 0; local
126 selectedRange->startContainer(ec)->document()->url().string(), data);
  /external/webkit/Source/WebCore/platform/wince/
PasteboardWinCE.cpp 117 ExceptionCode ec = 0; local
119 markupToCF_HTML(createMarkup(selectedRange, 0, AnnotateForInterchange), selectedRange->startContainer(ec)->document()->url(), data);
  /external/webkit/Source/WebCore/storage/
IDBDatabaseBackendImpl.cpp 100 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendImpl::createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec)
105 ec = IDBDatabaseException::CONSTRAINT_ERR;
116 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
142 void IDBDatabaseBackendImpl::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec)
146 ec = IDBDatabaseException::NOT_FOUND_ERR;
153 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
165 void IDBDatabaseBackendImpl::setVersion(const String& version, PassRefPtr<IDBCallbacks> prpCallbacks, PassRefPtr<IDBDatabaseCallbacks> prpDatabaseCallbacks, ExceptionCode& ec)
189 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
206 PassRefPtr<IDBTransactionBackendInterface> IDBDatabaseBackendImpl::transaction(DOMStringList* objectStoreNames, unsigned short mode, ExceptionCode& ec)
210 ec = IDBDatabaseException::NOT_FOUND_ERR
233 ExceptionCode ec = 0; local
    [all...]

Completed in 644 milliseconds

1 2 3 4 56 7 8 91011>>