Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c3609 int nKey2, const void *pKey2 in uintCollFunc() argument
3615 while( i<nKey1 && j<nKey2 ){ in uintCollFunc()
3621 while( j<nKey2 && zB[j]=='0' ){ j++; } in uintCollFunc()
3624 && j+k<nKey2 && isdigit(zB[j+k]) ){ in uintCollFunc()
3629 }else if( j+k<nKey2 && isdigit(zB[j+k]) ){ in uintCollFunc()
3644 return (nKey1 - i) - (nKey2 - j); in uintCollFunc()
4340 int nKey2, const void *pKey2 in decimalCollFunc() argument
4345 Decimal *pB = decimalNewFromText((const char*)zB, nKey2); in decimalCollFunc()
H A Dsqlite3.c103627 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
103697 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
180819 int nKey2, const void *pKey2
180823 n = nKey1<nKey2 ? nKey1 : nKey2;
180830 rc = nKey1 - nKey2;
180842 int nKey2, const void *pKey2
180847 while( nKey2 && pK2[nKey2-1]==' ' ) nKey2--;
180848 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
180871 int nKey2, const void *pKey2
180874 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
[all …]