HomeSort by relevance Sort by last modified time
    Searched full:pkey2 (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
ft_hash.c 89 static int intCompare(const void *pKey1, int n1, const void *pKey2, int n2){
102 static int ptrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
103 if( pKey1==pKey2 ) return 0;
104 if( pKey1<pKey2 ) return -1;
122 static int strCompare(const void *pKey1, int n1, const void *pKey2, int n2){
124 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
138 static int binCompare(const void *pKey1, int n1, const void *pKey2, int n2){
140 return memcmp(pKey1,pKey2,n1);
fts1_hash.c 102 static int strCompare(const void *pKey1, int n1, const void *pKey2, int n2){
104 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
118 static int binCompare(const void *pKey1, int n1, const void *pKey2, int n2){
120 return memcmp(pKey1,pKey2,n1);
  /external/chromium_org/net/ssl/
openssl_client_key_store_unittest.cc 114 ScopedEVP_PKEY pkey2; local
115 ASSERT_TRUE(store_->FetchClientCertPrivateKey(cert_1.get(), &pkey2));
116 ASSERT_EQ(pkey2.get(), priv_key.get());
  /hardware/ti/omap4xxx/security/tf_crypto_sst/
lib_object.c 79 void* pKey2,
91 (S_STORAGE_NAME*)pKey2,
102 pKey2,
113 void* pKey2,
121 if (libObjectKeyEqualNode(pNode, nKey1, pKey2, eNodeType))
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_hash.c 107 static int strCompare(const void *pKey1, int n1, const void *pKey2, int n2){
109 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
123 static int binCompare(const void *pKey1, int n1, const void *pKey2, int n2){
125 return memcmp(pKey1,pKey2,n1);
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_hash.c 107 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
109 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
123 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
125 return memcmp(pKey1,pKey2,n1);
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CertSelectorTest.java 1088 PublicKey pkey2 = new TestKeyPair("DSA").getPublic(); local
1151 PublicKey pkey2 = new TestKeyPair("DSA").getPublic(); local
1199 PublicKey pkey2 = new TestKeyPair("DSA").getPublic(); local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CertSelectorTest.java 1441 PublicKey pkey2 = new TestKeyPair("DSA").getPublic(); local
1472 PublicKey pkey2 = new TestKeyPair("DSA").getPublic();; local
    [all...]
  /libcore/crypto/src/test/java/org/conscrypt/
NativeCryptoTest.java 192 long pkey1 = 0, pkey1_copy = 0, pkey2 = 0; local
214 pkey2 = NativeCrypto.EVP_PKEY_new_RSA(privKey2.getModulus().toByteArray(),
222 assertNotSame(NULL, pkey2);
243 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey2));
251 if (pkey2 != 0) {
252 NativeCrypto.EVP_PKEY_free(pkey2);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
main.c 580 int nKey2, const void *pKey2
584 rc = memcmp(pKey1, pKey2, n);
588 && allSpaces(((char*)pKey2)+n, nKey2-n)
610 int nKey2, const void *pKey2
613 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
    [all...]
test1.c     [all...]
  /libcore/crypto/src/main/native/
org_conscrypt_NativeCrypto.cpp 1711 EVP_PKEY* pkey2 = reinterpret_cast<EVP_PKEY*>(pkey2Ref); local
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
NativeCrypto.java 103 public static native int EVP_PKEY_cmp(long pkey1, long pkey2);
    [all...]

Completed in 1095 milliseconds