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

1 2

  /external/chromium_org/third_party/skia/src/gpu/
GrPath.cpp 15 uint32_t* keyData = key.fData32;
16 keyData[0] = path.getGenerationID();
19 keyData[1] = stroke.needToApply();
20 if (0 != keyData[1]) {
21 keyData[1] |= stroke.getJoin() << 1;
22 keyData[1] |= stroke.getCap() << 3;
23 keyData[2] = static_cast<uint32_t>(stroke.getMiter());
24 keyData[3] = static_cast<uint32_t>(stroke.getWidth());
26 keyData[2] = 0;
27 keyData[3] = 0
    [all...]
GrStencilBuffer.cpp 26 uint32_t* keyData = key.fData32;
27 keyData[0] = width;
28 keyData[1] = height;
29 keyData[2] = sampleCnt;
30 memset(keyData + 3, 0, sizeof(key) - 3 * sizeof(uint32_t));
GrResourceCache.h 99 } keyData;
101 uint8_t* k = keyData.fKey8;
107 fKey.setKeyData(keyData.fKey32);
  /external/skia/src/gpu/
GrPath.cpp 15 uint32_t* keyData = key.fData32;
16 keyData[0] = path.getGenerationID();
19 keyData[1] = stroke.needToApply();
20 if (0 != keyData[1]) {
21 keyData[1] |= stroke.getJoin() << 1;
22 keyData[1] |= stroke.getCap() << 3;
23 keyData[2] = static_cast<uint32_t>(stroke.getMiter());
24 keyData[3] = static_cast<uint32_t>(stroke.getWidth());
26 keyData[2] = 0;
27 keyData[3] = 0
    [all...]
GrStencilBuffer.cpp 26 uint32_t* keyData = key.fData32;
27 keyData[0] = width;
28 keyData[1] = height;
29 keyData[2] = sampleCnt;
30 memset(keyData + 3, 0, sizeof(key) - 3 * sizeof(uint32_t));
GrResourceCache.h 99 } keyData;
101 uint8_t* k = keyData.fKey8;
107 fKey.setKeyData(keyData.fKey32);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
SubjectPublicKeyInfo.java 26 private DERBitString keyData;
55 this.keyData = new DERBitString(publicKey);
63 this.keyData = new DERBitString(publicKey);
79 this.keyData = DERBitString.getInstance(e.nextElement());
107 ASN1InputStream aIn = new ASN1InputStream(keyData.getBytes());
124 ASN1InputStream aIn = new ASN1InputStream(keyData.getBytes());
136 return keyData;
152 v.add(keyData);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/input.ime/basic/
main.js 28 function(engineID, keyData) {
29 console.log('onKeyEvent:' + keyData.key + " context: " + context_id);
30 if (keyData.type == "keydown" && keyData.key.match(/^[a-z]$/)) {
32 "text": keyData.key.toUpperCase()});
  /hardware/samsung_slsi/exynos5/libkeymaster/
tlcTeeKeymaster_if.h 140 * @param keyData [in] Pointer to the key data buffer
148 uint8_t* keyData,
160 * @param keyData [in] Pointer to key data buffer
169 const uint8_t* keyData,
183 * @param keyData [in] Pointer to key data buffer
193 const uint8_t* keyData,
209 * @param keyData [out] Pointer to key data
214 uint8_t* keyData,
224 * @param keyData [in] Pointer to key data buffer
233 const uint8_t* keyData,
    [all...]
tlcTeeKeymaster_if.c 147 * @param keyData [in] Pointer to the key data buffer
155 uint8_t* keyData,
177 mcRet = mcMap(&sessionHandle, keyData, keyDataLength, &mapInfo);
187 pTci->rsagenkey.keydata = (uint32_t)mapInfo.sVirtualAddr;
207 mcRet = mcUnmap(&sessionHandle, keyData, &mapInfo);
239 * @param keyData [in] Pointer to key data buffer
248 const uint8_t* keyData,
274 mcRet = mcMap(&sessionHandle, (void*)keyData, keyDataLength, &keyMapInfo);
294 pTci->rsasign.keydata = (uint32_t)keyMapInfo.sVirtualAddr;
321 mcRet = mcUnmap(&sessionHandle, (void*)keyData, &keyMapInfo)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
KeyUtil.java 11 public static byte[] getEncodedSubjectPublicKeyInfo(AlgorithmIdentifier algId, ASN1Encodable keyData)
15 return getEncodedSubjectPublicKeyInfo(new SubjectPublicKeyInfo(algId, keyData));
23 public static byte[] getEncodedSubjectPublicKeyInfo(AlgorithmIdentifier algId, byte[] keyData)
27 return getEncodedSubjectPublicKeyInfo(new SubjectPublicKeyInfo(algId, keyData));
  /frameworks/base/keystore/java/android/security/
SystemKeyStore.java 48 public static String toHexString(byte[] keyData) {
49 if (keyData == null) {
52 int keyLen = keyData.length;
53 int expectedStringLen = keyData.length * 2;
55 for (int i = 0; i < keyData.length; i++) {
56 String hexStr = Integer.toString(keyData[i] & 0x00FF, 16);
  /external/chromium_org/chrome/browser/resources/chromeos/
keyboard_overlay_accessibility_helper.js 22 var keyData = keyboardGlyphData.keys[identifier];
23 var keyLabel = getKeyLabel(keyData, modifiers);
keyboard_overlay.js 312 * @param {string} keyData Key glyph data.
316 function getKeyLabel(keyData, modifiers) {
317 if (!keyData) {
320 if (keyData.label) {
321 return keyData.label;
325 var pos = keyData['p' + j];
369 * @param {string} keyData Key glyph data.
372 function getKeyTextValue(keyData) {
373 if (keyData.label) {
375 if (keyData.label == 'space')
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
input.ime_custom_bindings.js 17 var keyData = args[1];
27 input_ime.keyEventHandled(keyData.requestId, result);
  /external/chromium_org/third_party/skia/tests/
ResourceCacheTest.cpp 110 GrCacheID::Key keyData;
111 keyData.fData64[0] = 5;
112 keyData.fData64[1] = 18;
114 GrResourceKey key(GrCacheID(domain, keyData), t, 0);
145 GrCacheID::Key keyData;
146 keyData.fData64[0] = 5;
147 keyData.fData64[1] = 0;
150 GrResourceKey key(GrCacheID(domain, keyData), t, 0);
  /external/skia/tests/
ResourceCacheTest.cpp 110 GrCacheID::Key keyData;
111 keyData.fData64[0] = 5;
112 keyData.fData64[1] = 18;
114 GrResourceKey key(GrCacheID(domain, keyData), t, 0);
145 GrCacheID::Key keyData;
146 keyData.fData64[0] = 5;
147 keyData.fData64[1] = 0;
150 GrResourceKey key(GrCacheID(domain, keyData), t, 0);
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.idl 60 [CallWith=ScriptState] Promise importKey(KeyFormat format, ArrayBuffer keyData, Dictionary algorithm, boolean extractable, KeyUsage[] keyUsages);
61 [CallWith=ScriptState] Promise importKey(KeyFormat format, ArrayBufferView keyData, Dictionary algorithm, boolean extractable, KeyUsage[] keyUsages);
62 [CallWith=ScriptState] Promise importKey(KeyFormat format, Dictionary keyData, Dictionary algorithm, boolean extractable, KeyUsage[] keyUsages);
SubtleCrypto.cpp 241 ScriptPromise SubtleCrypto::importKey(ScriptState* scriptState, const String& rawFormat, const ArrayPiece& keyData, const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages)
249 if (!ensureNotNull(keyData, "keyData", result.get()))
269 blink::Platform::current()->crypto()->importKey(format, keyData.bytes(), keyData.byteLength(), algorithm, extractable, keyUsages, result->result());
273 ScriptPromise SubtleCrypto::importKey(ScriptState* scriptState, const String& rawFormat, const Dictionary& keyData, const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages)
299 if (!copyJwkDictionaryToJson(keyData, jsonUtf8, result.get()))
  /external/chromium_org/third_party/WebKit/public/platform/
WebCrypto.h 218 virtual void importKey(WebCryptoKeyFormat, const unsigned char* keyData, unsigned keyDataSize, const WebCryptoAlgorithm&, bool extractable, WebCryptoKeyUsageMask, WebCryptoResult result) { result.completeWithError(WebCryptoErrorTypeNotSupported, ""); }
274 virtual bool deserializeKeyForClone(const WebCryptoKeyAlgorithm&, WebCryptoKeyType, bool extractable, WebCryptoKeyUsageMask, const unsigned char* keyData, unsigned keyDataSize, WebCryptoKey&) { return false; }
  /hardware/ti/omap4-aah/security/tf_sdk/include/
OEMCrypto.h 322 * keyData (out) - pointer to the buffer to hold the Key Data field from the Keybox
324 * of bytes in KeyData.
328 * OEMCrypto_ERROR_SHORT_BUFFER if the buffer is too small to return the KeyData
329 * OEMCrypto_ERROR_NO_KEYDATA failed to return KeyData
331 OEMCryptoResult OEMCrypto_GetKeyData(OEMCrypto_UINT8* keyData,
  /external/lldb/source/Core/
ConstString.cpp 44 GetStringMapEntryFromKeyData (const char *keyData)
46 char *ptr = const_cast<char*>(keyData) - sizeof (StringPoolEntryType);
  /cts/tests/tests/view/src/android/view/cts/
KeyEventTest.java 26 import android.view.KeyCharacterMap.KeyData;
101 KeyData keyData = new KeyData();
102 assertTrue(keyEvent.getKeyData(keyData));
104 assertEquals('Z', keyData.displayLabel);
105 assertEquals(0, keyData.number);
106 assertEquals('z', keyData.meta[0]);
107 assertEquals('Z', keyData.meta[1]);
108 assertEquals(0, keyData.meta[3])
    [all...]
  /packages/apps/Settings/src/com/android/settings/
CredentialStorage.java 200 private boolean isHardwareBackedKey(byte[] keyData) {
202 ASN1InputStream bIn = new ASN1InputStream(new ByteArrayInputStream(keyData));
  /external/chromium_org/net/third_party/nss/ssl/
sslcon.c     [all...]

Completed in 336 milliseconds

1 2