HomeSort by relevance Sort by last modified time
    Searched defs:key (Results 226 - 250 of 6954) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nos/test/system-test-harness/src/test-data/NIST-CAVP/
aes-gcm-cavp.h 11 uint32_t key[8]; member in struct:__anon30766
    [all...]
  /external/oauth/core/src/main/java/net/oauth/signature/
HMAC_SHA1.java 64 SecretKey key = null; local
66 if (this.key == null) {
70 this.key = new SecretKeySpec(keyBytes, MAC_NAME);
72 key = this.key;
75 mac.init(key);
85 private SecretKey key = null; field in class:HMAC_SHA1
90 key = null;
98 key = null;
  /external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
service_registry.hpp 26 asio::io_service::service::key key; local
27 init_key(key, Service::id);
28 first_service_->key_ = key;
41 asio::io_service::service::key key; local
42 init_key(key, Service::id);
44 return *static_cast<Service*>(do_use_service(key, factory));
50 asio::io_service::service::key key; local
58 asio::io_service::service::key key; local
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_allstates.cpp 48 uint32_t key = key_str.GetID(); local
49 switch (key) {
  /external/python/cpython2/Modules/_sqlite/
cache.h 35 PyObject* key; member in struct:_pysqlite_Node
microprotocols.c 57 PyObject* key; local
62 key = Py_BuildValue("(OO)", (PyObject*)type, proto);
63 if (!key) {
67 rc = PyDict_SetItem(psyco_adapters, key, cast);
68 Py_DECREF(key);
78 PyObject *adapter, *key; local
85 key = Py_BuildValue("(OO)", (PyObject*)obj->ob_type, proto);
86 if (!key) {
89 adapter = PyDict_GetItem(psyco_adapters, key);
90 Py_DECREF(key);
    [all...]
  /external/python/cpython3/Modules/_sqlite/
cache.h 35 PyObject* key; member in struct:_pysqlite_Node
microprotocols.c 57 PyObject* key; local
62 key = Py_BuildValue("(OO)", (PyObject*)type, proto);
63 if (!key) {
67 rc = PyDict_SetItem(psyco_adapters, key, cast);
68 Py_DECREF(key);
78 PyObject *adapter, *key; local
85 key = Py_BuildValue("(OO)", (PyObject*)obj->ob_type, proto);
86 if (!key) {
89 adapter = PyDict_GetItem(psyco_adapters, key);
90 Py_DECREF(key);
    [all...]
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
SandboxFactory.java 30 Pair<InstrumentationConfiguration, SdkConfig> key = Pair.create(instrumentationConfig, sdkConfig); local
32 SdkEnvironment sdkEnvironment = sdkToEnvironment.get(key);
39 sdkToEnvironment.put(key, sdkEnvironment);
  /external/selinux/libselinux/utils/
selabel_lookup.c 12 "usage: %s -b backend [-v] [-r] -k key [-t type] [-f file]\n\n"
18 "-k Lookup key - Depends on backend.\n\t"
28 " using key \"X11:ButtonPress\"\n\n",
36 char *validate = NULL, *key = NULL, *context = NULL, *file = NULL; local
78 key = optarg;
100 rc = selabel_lookup_raw(hnd, &context, key, type);
103 rc = selabel_lookup(hnd, &context, key, type);
115 "validate context, or key / type are "
  /external/skia/bench/
GrResourceCacheBench.cpp 31 static void ComputeKey(int i, int keyData32Count, GrUniqueKey* key) {
33 GrUniqueKey::Builder builder(key, kDomain, keyData32Count);
47 GrUniqueKey key; local
48 BenchResource::ComputeKey(i, keyData32Count, &key);
50 resource->resourcePriv().setUniqueKey(key);
146 GrUniqueKey key; variable
147 BenchResource::ComputeKey(k, fKeyData32Count, &key);
148 sk_sp<GrGpuResource> resource(cache->findAndRefUniqueResource(key));
  /external/skia/src/core/
SkColorSpaceXformer.cpp 80 auto key = sk_ref_sp(const_cast<T*>(src)); local
81 if (auto* xformed = cache->find(key)) {
86 cache->set(std::move(key), xformed);
  /external/skia/src/gpu/
GrPrimitiveProcessor.cpp 13 * The key for an individual coord transform is made up of a matrix type, and a bit that indicates
35 uint32_t key = 0; local
38 key |= kGeneral_MatrixType;
40 key |= kNoPersp_MatrixType;
44 key |= kPositionCoords_Flag;
47 key <<= kTransformKeyBits * t;
49 SkASSERT(0 == (totalKey & key)); // keys for each transform ought not to overlap
50 totalKey |= key;
GrXferProcessor.cpp 43 uint32_t key = this->willReadDstColor() ? 0x1 : 0x0; local
44 if (key) {
46 key |= 0x2;
48 key |= 0x4;
52 key |= 0x8;
56 key |= 0x10;
58 b->add32(key);
  /external/skia/src/gpu/vk/
GrVkSampler.cpp 86 uint16_t key = static_cast<uint16_t>(samplerState.filter()); local
89 key |= (static_cast<uint16_t>(samplerState.wrapModeX()) << kTileModeXShift);
92 key |= (static_cast<uint16_t>(samplerState.wrapModeY()) << kTileModeYShift);
95 key |= (maxMipLevel << kMipLevelShift);
97 return key;
  /external/skqp/bench/
GrResourceCacheBench.cpp 31 static void ComputeKey(int i, int keyData32Count, GrUniqueKey* key) {
33 GrUniqueKey::Builder builder(key, kDomain, keyData32Count);
46 GrUniqueKey key; local
47 BenchResource::ComputeKey(i, keyData32Count, &key);
49 resource->resourcePriv().setUniqueKey(key);
145 GrUniqueKey key; variable
146 BenchResource::ComputeKey(k, fKeyData32Count, &key);
147 sk_sp<GrGpuResource> resource(cache->findAndRefUniqueResource(key));
  /external/skqp/src/core/
SkColorSpaceXformer.cpp 80 auto key = sk_ref_sp(const_cast<T*>(src)); local
81 if (auto* xformed = cache->find(key)) {
86 cache->set(std::move(key), xformed);
  /external/skqp/src/gpu/
GrPrimitiveProcessor.cpp 13 * The key for an individual coord transform is made up of a matrix type, and a bit that indicates
35 uint32_t key = 0; local
38 key |= kGeneral_MatrixType;
40 key |= kNoPersp_MatrixType;
44 key |= kPositionCoords_Flag;
47 key <<= kTransformKeyBits * t;
49 SkASSERT(0 == (totalKey & key)); // keys for each transform ought not to overlap
50 totalKey |= key;
GrXferProcessor.cpp 43 uint32_t key = this->willReadDstColor() ? 0x1 : 0x0; local
44 if (key) {
46 key |= 0x2;
48 key |= 0x4;
52 key |= 0x8;
56 key |= 0x10;
58 b->add32(key);
  /external/skqp/src/gpu/effects/
GrRectBlurEffect.h 27 GrUniqueKey key; local
28 GrUniqueKey::Builder builder(&key, kDomain, 1);
33 proxyProvider->findOrCreateProxyByUniqueKey(key, kTopLeft_GrSurfaceOrigin));
50 proxyProvider->assignUniqueKeyToProxy(key, blurProfile.get());
  /external/skqp/src/gpu/vk/
GrVkSampler.cpp 86 uint16_t key = static_cast<uint16_t>(samplerState.filter()); local
89 key |= (static_cast<uint16_t>(samplerState.wrapModeX()) << kTileModeXShift);
92 key |= (static_cast<uint16_t>(samplerState.wrapModeY()) << kTileModeYShift);
95 key |= (maxMipLevel << kMipLevelShift);
97 return key;
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/
NDC.java 56 String key = PREFIX + last; local
57 String val = MDC.get(key);
58 MDC.remove(key);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderPackedSwitchPayload.java 58 int key = startKey; local
60 this.switchElements.add(new BuilderSwitchElement(this, key++, target));
BuilderSwitchElement.java 11 private final int key; field in class:BuilderSwitchElement
15 int key,
18 this.key = key;
23 return key;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableSwitchElement.java 43 protected final int key; field in class:ImmutableSwitchElement
46 public ImmutableSwitchElement(int key,
48 this.key = key;
62 @Override public int getKey() { return key; }

Completed in 419 milliseconds

1 2 3 4 5 6 7 8 91011>>