Home
last modified time | relevance | path

Searched refs:pKey2 (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dhash.c74 static int intCompare(const void *pKey1, int n1, const void *pKey2, int n2){ in intCompare() argument
86 static int ptrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
87 if( pKey1==pKey2 ) return 0;
88 if( pKey1<pKey2 ) return -1;
99 static int strCompare(const void *pKey1, int n1, const void *pKey2, int n2){ in strCompare() argument
101 return sqliteStrNICmp((const char*)pKey1,(const char*)pKey2,n1); in strCompare()
115 static int binCompare(const void *pKey1, int n1, const void *pKey2, int n2){ in binCompare() argument
117 return memcmp(pKey1,pKey2,n1); in binCompare()
H A Dbtree_rb.c182 static int key_compare(void const*pKey1, int nKey1, void const*pKey2, int nKey2) in key_compare() argument
184 int mcmp = memcmp(pKey1, pKey2, (nKey1 <= nKey2)?nKey1:nKey2); in key_compare()