HomeSort by relevance Sort by last modified time
    Searched refs:engine (Results 151 - 175 of 760) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
OAEPEncoding.java 23 private AsymmetricBlockCipher engine; field in class:OAEPEncoding
56 this.engine = cipher;
72 return engine;
90 engine.init(forEncryption, param);
97 int baseBlockSize = engine.getInputBlockSize();
111 int baseBlockSize = engine.getOutputBlockSize();
199 return engine.processBlock(block, 0, block.length);
212 byte[] data = engine.processBlock(in, inOff, inLen);
220 if (data.length < engine.getOutputBlockSize())
222 block = new byte[engine.getOutputBlockSize()]
    [all...]
  /external/openssl/crypto/evp/
digest.c 117 #include <openssl/engine.h>
145 int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl)
150 * so this context may already have an ENGINE! Try to avoid releasing
151 * the previous handle, re-querying for an ENGINE, and having a
153 if (ctx->engine && ctx->digest && (!type ||
158 /* Ensure an ENGINE left lying around from last time is cleared
160 * ENGINE and EVP_MD could be used). */
161 if(ctx->engine)
162 ENGINE_finish(ctx->engine);
172 /* Ask if an ENGINE is reserved for this job *
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmpplogintask_unittest.cc 39 XmppEngine* engine() { return engine_.get(); } function in class:XmppLoginTaskTest
234 engine()->HandleInput(input.c_str(), input.length());
247 engine()->HandleInput(input.c_str(), input.length());
257 engine()->HandleInput(input.c_str(), input.length());
273 engine()->HandleInput(input.c_str(), input.length());
293 engine()->HandleInput(input.c_str(), input.length());
311 engine()->HandleInput(input.c_str(), input.length());
333 engine()->HandleInput(input.c_str(), input.length());
354 engine()->HandleInput(input.c_str(), input.length());
376 engine()->HandleInput(input.c_str(), input.length())
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
display-profiler-output 84 def topExecutionCount(engine)
88 if value.engine == engine
109 def bottomExecutionCount(engine)
113 if compilation.engine == engine
218 def maxTopExecutionCount(engine)
222 max = [max, bytecode.topExecutionCount(engine)].max
236 def maxBottomExecutionCount(engine)
240 max = [max, bytecode.bottomExecutionCount(engine)].ma
    [all...]
  /external/chromium_org/third_party/icu/source/test/letest/
cletest.c 41 le_engine *engine = le_create(font, arabScriptCode, -1, 0, &status); local
55 glyphCount = le_getGlyphCount(engine, &status);
64 le_getGlyphs(engine, NULL, &status);
71 le_getGlyphs(engine, glyphs, &status);
78 le_getCharIndices(engine, NULL, &status);
85 le_getCharIndices(engine, indices, &status);
92 le_getCharIndicesWithBase(engine, NULL, 1024, &status);
99 le_getCharIndicesWithBase(engine, indices, 1024, &status);
106 le_getGlyphPositions(engine, NULL, &status);
113 le_getGlyphPositions(engine, positions, &status)
190 le_engine *engine = NULL; local
213 le_engine *engine =le_create(font, arabScriptCode, -1, 0, &status); local
449 le_engine *engine; local
    [all...]
  /external/icu/icu4c/source/test/letest/
cletest.c 41 le_engine *engine = le_create(font, arabScriptCode, -1, 0, &status); local
55 glyphCount = le_getGlyphCount(engine, &status);
64 le_getGlyphs(engine, NULL, &status);
71 le_getGlyphs(engine, glyphs, &status);
78 le_getCharIndices(engine, NULL, &status);
85 le_getCharIndices(engine, indices, &status);
92 le_getCharIndicesWithBase(engine, NULL, 1024, &status);
99 le_getCharIndicesWithBase(engine, indices, 1024, &status);
106 le_getGlyphPositions(engine, NULL, &status);
113 le_getGlyphPositions(engine, positions, &status)
190 le_engine *engine = NULL; local
213 le_engine *engine =le_create(font, arabScriptCode, -1, 0, &status); local
449 le_engine *engine; local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
common_decoder.h 100 // Sets the engine, to get shared memory buffers from, and to set the token
102 void set_engine(CommandBufferEngine* engine) {
103 engine_ = engine;
105 CommandBufferEngine* engine() const { return engine_; } function in class:gpu::CommonDecoder
  /external/openssl/apps/
pkeyparam.c 77 char *engine=NULL; local
111 else if (strcmp(*args,"-engine") == 0)
114 engine= *(++args);
137 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
143 setup_engine(bio_err, engine, 0);
  /frameworks/ex/variablespeed/jni/
jni_entry.cc 84 AudioEngine *engine = new AudioEngine(targetFrames, local
87 if (!AudioEngine::CompareAndSetEngine(NULL, engine)) {
88 delete engine;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
KeyPairGeneratorSpi.java 28 DHBasicKeyPairGenerator engine = new DHBasicKeyPairGenerator(); field in class:KeyPairGeneratorSpi
60 engine.init(param);
107 engine.init(param);
112 AsymmetricCipherKeyPair pair = engine.generateKeyPair();
  /external/chromium_org/third_party/icu/source/samples/layout/
gnomeglue.h 31 fm_fontMap *fm_gnomeFontMapOpen(FT_Library engine, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status);
  /external/chromium_org/third_party/icu/source/test/perf/leperf/
leperf.cpp 36 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, params->script, -1, status); local
42 glyphCount = engine->layoutChars(chars, 0, params->charLen, params->charLen, TRUE, 0.0, 0.0, status);
46 engine->getGlyphs(glyphs, status);
53 delete engine;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_init.h 42 LLVMExecutionEngineRef engine; member in struct:gallivm_state
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
OriginalEngineKey.java 1 package com.bumptech.glide.load.engine;
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/
NullDecoder.java 4 import com.bumptech.glide.load.engine.Resource;
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
GifDataBytesTranscoder.java 3 import com.bumptech.glide.load.engine.Resource;
GifDataDrawableTranscoder.java 3 import com.bumptech.glide.load.engine.Resource;
  /external/icu/icu4c/source/samples/layout/
gnomeglue.h 31 fm_fontMap *fm_gnomeFontMapOpen(FT_Library engine, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status);
  /external/icu/icu4c/source/test/perf/leperf/
leperf.cpp 36 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, params->script, -1, status); local
42 glyphCount = engine->layoutChars(chars, 0, params->charLen, params->charLen, TRUE, 0.0, 0.0, status);
46 engine->getGlyphs(glyphs, status);
53 delete engine;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_init.h 42 LLVMExecutionEngineRef engine; member in struct:gallivm_state
  /external/openssl/crypto/asn1/
d2i_pr.c 65 #include <openssl/engine.h>
88 if (ret->engine)
90 ENGINE_finish(ret->engine);
91 ret->engine = NULL;
  /external/openssl/crypto/conf/
conf_sap.c 67 #include <openssl/engine.h>
  /external/openssl/crypto/ecdh/
ech_locl.h 90 ENGINE *engine; member in struct:ecdh_data_st
  /external/openssl/crypto/ecdsa/
ecs_vrf.c 61 #include <openssl/engine.h>
  /external/openssl/crypto/store/
str_locl.h 114 /* functional reference if 'meth' is ENGINE-provided */
115 ENGINE *engine; member in struct:store_st

Completed in 888 milliseconds

1 2 3 4 5 67 8 91011>>