/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/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);
|
/libcore/crypto/src/test/java/org/conscrypt/ |
NativeCryptoTest.java | 192 long pkey1 = 0, pkey1_copy = 0, pkey2 = 0; local 194 pkey1 = NativeCrypto.EVP_PKEY_new_RSA(privKey1.getModulus().toByteArray(), 202 assertNotSame(NULL, pkey1); 225 NativeCrypto.EVP_PKEY_cmp(pkey1, NULL); 231 NativeCrypto.EVP_PKEY_cmp(NULL, pkey1); 237 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey1)); 240 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey1_copy)); 243 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey2)); 245 if (pkey1 != 0) [all...] |
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
X509CertSelectorTest.java | 1087 PublicKey pkey1 = new TestKeyPair("RSA").getPublic(); local 1150 PublicKey pkey1 = new TestKeyPair("RSA").getPublic(); local 1198 PublicKey pkey1 = new TestKeyPair("RSA").getPublic(); local [all...] |
/libcore/luni/src/test/java/tests/security/cert/ |
X509CertSelectorTest.java | 1440 PublicKey pkey1 = new TestKeyPair("RSA").getPublic(); local 1471 PublicKey pkey1 = new TestKeyPair("RSA").getPublic();; local [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
vdbeaux.c | [all...] |
main.c | 579 int nKey1, const void *pKey1, 584 rc = memcmp(pKey1, pKey2, n); 587 && allSpaces(((char*)pKey1)+n, nKey1-n) 609 int nKey1, const void *pKey1, 613 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2); [all...] |
test1.c | [all...] |
/libcore/crypto/src/main/native/ |
org_conscrypt_NativeCrypto.cpp | 1710 EVP_PKEY* pkey1 = reinterpret_cast<EVP_PKEY*>(pkey1Ref); local [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
NativeCrypto.java | 103 public static native int EVP_PKEY_cmp(long pkey1, long pkey2); [all...] |