Searched refs:nKey2 (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 3643 int nKey2, const void *pKey2 in uintCollFunc() argument 3649 while( i<nKey1 && j<nKey2 ){ in uintCollFunc() 3655 while( j<nKey2 && zB[j]=='0' ){ j++; } in uintCollFunc() 3658 && j+k<nKey2 && isdigit(zB[j+k]) ){ in uintCollFunc() 3663 }else if( j+k<nKey2 && isdigit(zB[j+k]) ){ in uintCollFunc() 3678 return (nKey1 - i) - (nKey2 - j); in uintCollFunc() 4377 int nKey2, const void *pKey2 in decimalCollFunc() argument 4382 Decimal *pB = decimalNewFromText((const char*)zB, nKey2); in decimalCollFunc()
|
H A D | sqlite3.c | 104863 const void *pKey2, int nKey2 /* Right side of comparison */ 104867 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2); 104890 const void *pKey2, int nKey2 /* Right side of comparison */ 104894 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2); 104909 const void *pKey2, int nKey2 /* Right side of comparison */ 104930 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2 104951 const void *pKey2, int nKey2 /* Right side of comparison */ 105000 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2 183639 int nKey2, const void *pKey2 183643 n = nKey1<nKey2 ? nKey1 : nKey2; [all …]
|