Lines Matching refs:pKey1

4118   int nKey1, const void *pKey1, /* Left key */  in vdbeRecordCompareDebug()  argument
4127 const unsigned char *aKey1 = (const unsigned char *)pKey1; in vdbeRecordCompareDebug()
4530 int nKey1, const void *pKey1, /* Left key */ in sqlite3VdbeRecordCompareWithSkip() argument
4541 const unsigned char *aKey1 = (const unsigned char *)pKey1; in sqlite3VdbeRecordCompareWithSkip()
4707 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, rc) ); in sqlite3VdbeRecordCompareWithSkip()
4733 || vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, pPKey2->default_rc) in sqlite3VdbeRecordCompareWithSkip()
4740 int nKey1, const void *pKey1, /* Left key */ in sqlite3VdbeRecordCompare() argument
4743 return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 0); in sqlite3VdbeRecordCompare()
4757 int nKey1, const void *pKey1, /* Left key */ in vdbeRecordCompareInt() argument
4760 const u8 *aKey = &((const u8*)pKey1)[*(const u8*)pKey1 & 0x3F]; in vdbeRecordCompareInt()
4761 int serial_type = ((const u8*)pKey1)[1]; in vdbeRecordCompareInt()
4768 vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo); in vdbeRecordCompareInt()
4769 assert( (*(u8*)pKey1)<=0x3F || CORRUPT_DB ); in vdbeRecordCompareInt()
4818 return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2); in vdbeRecordCompareInt()
4821 return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2); in vdbeRecordCompareInt()
4833 res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1); in vdbeRecordCompareInt()
4841 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res) ); in vdbeRecordCompareInt()
4852 int nKey1, const void *pKey1, /* Left key */ in vdbeRecordCompareString() argument
4855 const u8 *aKey1 = (const u8*)pKey1; in vdbeRecordCompareString()
4862 vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo); in vdbeRecordCompareString()
4896 res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1); in vdbeRecordCompareString()
4909 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res) in vdbeRecordCompareString()