Searched refs:nKey2 (Results 1 – 3 of 3) sorted by relevance
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | shell.c | 4330 int nKey2, const void *pKey2 in uintCollFunc() argument 4336 while( i<nKey1 && j<nKey2 ){ in uintCollFunc() 4342 while( j<nKey2 && zB[j]=='0' ){ j++; } in uintCollFunc() 4345 && j+k<nKey2 && isdigit(zB[j+k]) ){ in uintCollFunc() 4350 }else if( j+k<nKey2 && isdigit(zB[j+k]) ){ in uintCollFunc() 4365 return (nKey1 - i) - (nKey2 - j); in uintCollFunc()
|
| H A D | sqlite3.c | 94485 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2 94555 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2 161161 int nKey2, const void *pKey2 161165 n = nKey1<nKey2 ? nKey1 : nKey2; 161172 rc = nKey1 - nKey2; 161184 int nKey2, const void *pKey2 161189 while( nKey2 && pK2[nKey2-1]==' ' ) nKey2--; 161190 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2); 161213 int nKey2, const void *pKey2 161216 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2); [all …]
|
| /freebsd-12.1/crypto/heimdal/lib/sqlite/ |
| H A D | sqlite3.c | 70586 void *pKey2, int nKey2, /* Right side of comparison */ 70595 sqlite3VdbeRecordUnpack(pKeyInfo, nKey2, pKey2, r2); 110739 int nKey2, const void *pKey2 110742 n = nKey1<nKey2 ? nKey1 : nKey2; 110747 && allSpaces(((char*)pKey2)+n, nKey2-n) 110751 rc = nKey1 - nKey2; 110769 int nKey2, const void *pKey2 110772 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2); 110775 r = nKey1-nKey2;
|