Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/sqlite3/
H A Dshell.c3604 int nKey2, const void *pKey2 in uintCollFunc() argument
3610 while( i<nKey1 && j<nKey2 ){ in uintCollFunc()
3616 while( j<nKey2 && zB[j]=='0' ){ j++; } in uintCollFunc()
3619 && j+k<nKey2 && isdigit(zB[j+k]) ){ in uintCollFunc()
3624 }else if( j+k<nKey2 && isdigit(zB[j+k]) ){ in uintCollFunc()
3639 return (nKey1 - i) - (nKey2 - j); in uintCollFunc()
4335 int nKey2, const void *pKey2 in decimalCollFunc() argument
4340 Decimal *pB = decimalNewFromText((const char*)zB, nKey2); in decimalCollFunc()
H A Dsqlite3.c103629 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
103699 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
180809 int nKey2, const void *pKey2
180813 n = nKey1<nKey2 ? nKey1 : nKey2;
180820 rc = nKey1 - nKey2;
180832 int nKey2, const void *pKey2
180837 while( nKey2 && pK2[nKey2-1]==' ' ) nKey2--;
180838 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
180861 int nKey2, const void *pKey2
180864 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
[all …]