Home
last modified time | relevance | path

Searched refs:nKey1 (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/sqlite3/
H A Dshell.c4329 int nKey1, const void *pKey1, in uintCollFunc() argument
4336 while( i<nKey1 && j<nKey2 ){ in uintCollFunc()
4341 while( i<nKey1 && zA[i]=='0' ){ i++; } in uintCollFunc()
4344 while( i+k<nKey1 && isdigit(zA[i+k]) in uintCollFunc()
4348 if( i+k<nKey1 && isdigit(zA[i+k]) ){ in uintCollFunc()
4365 return (nKey1 - i) - (nKey2 - j); in uintCollFunc()
H A Dsqlite3.c81647 if( d1+(u64)serial_type1+2>(u64)nKey1
82036 if( d1>(unsigned)nKey1 ){
82338 if( (szHdr + nStr) > nKey1 ){
161160 int nKey1, const void *pKey1,
161165 n = nKey1<nKey2 ? nKey1 : nKey2;
161172 rc = nKey1 - nKey2;
161183 int nKey1, const void *pKey1,
161188 while( nKey1 && pK1[nKey1-1]==' ' ) nKey1--;
161212 int nKey1, const void *pKey1,
161216 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
[all …]
/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c61246 int nKey1, const void *pKey1, /* Left key */
61285 if( d1>=nKey1 && sqlite3VdbeSerialTypeLen(serial_type1)>0 ) break;
70585 void *pKey1, int nKey1, /* Left side of comparison */
70610 *pRes = sqlite3VdbeRecordCompare(nKey1, pKey1, r2);
110738 int nKey1, const void *pKey1,
110742 n = nKey1<nKey2 ? nKey1 : nKey2;
110746 && allSpaces(((char*)pKey1)+n, nKey1-n)
110751 rc = nKey1 - nKey2;
110768 int nKey1, const void *pKey1,
110772 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
[all …]