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

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dft_hash.c89 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){ argument
124 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
138 static int binCompare(const void *pKey1, int n1, const void *pKey2, int n2){ argument
140 return memcmp(pKey1,pKey2,n1);
H A Dfts1_hash.c102 static int strCompare(const void *pKey1, int n1, const void *pKey2, int n2){ argument
104 return strncmp((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);
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_hash.c107 static int strCompare(const void *pKey1, int n1, const void *pKey2, int n2){ argument
109 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
123 static int binCompare(const void *pKey1, int n1, const void *pKey2, int n2){ argument
125 return memcmp(pKey1,pKey2,n1);
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_hash.c107 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){ argument
109 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
123 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){ argument
125 return memcmp(pKey1,pKey2,n1);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c118468 fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2) argument
118484 fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c71948 vdbeSorterCompare( VdbeCursor *pCsr, int bOmitRowid, void *pKey1, int nKey1, void *pKey2, int nKey2, int *pRes ) argument
123407 fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2) argument
123423 fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c71976 vdbeSorterCompare( VdbeCursor *pCsr, int bOmitRowid, void *pKey1, int nKey1, void *pKey2, int nKey2, int *pRes ) argument
123455 fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2) argument
123471 fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2) argument
[all...]

Completed in 810 milliseconds