Searched defs:pKey2 (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dhash.c77 static int intCompare(const void *pKey1, int n1, const void *pKey2, int n2){ argument
89 static int ptrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
90 if( pKey1==pKey2 ) return 0;
91 if( pKey1<pKey2 ) return -1;
102 static int strCompare(const void *pKey1, int n1, const void *pKey2, int n2){ argument
104 return sqliteStrNICmp((const char*)pKey1,(const char*)pKey2,n1);
118 static int binCompare(const void *pKey1, int n1, const void *pKey2, int n2){ argument
120 return memcmp(pKey1,pKey2,n1);

Completed in 68 milliseconds