Lines Matching defs:aKey

86602   const unsigned char *aKey = (const unsigned char *)pKey;
86604 u32 idx; /* Offset in aKey[] to read from */
86611 idx = getVarint32(aKey, szHdr);
86617 idx += getVarint32(&aKey[idx], serial_type);
86623 sqlite3VdbeSerialGet(&aKey[d], serial_type, pMem);
86656 u32 d1; /* Offset into aKey[] of next data element */
86657 u32 idx1; /* Offset into aKey[] of next header element */
86771 const unsigned char *aKey = (const unsigned char*)pKey;
86774 idx = getVarint32(aKey, szHdr);
86778 idx += getVarint32(aKey+idx, notUsed);
87008 static i64 vdbeRecordDecodeInt(u32 serial_type, const u8 *aKey){
87014 testcase( aKey[0]&0x80 );
87015 return ONE_BYTE_INT(aKey);
87017 testcase( aKey[0]&0x80 );
87018 return TWO_BYTE_INT(aKey);
87020 testcase( aKey[0]&0x80 );
87021 return THREE_BYTE_INT(aKey);
87023 testcase( aKey[0]&0x80 );
87024 y = FOUR_BYTE_UINT(aKey);
87028 testcase( aKey[0]&0x80 );
87029 return FOUR_BYTE_UINT(aKey+2) + (((i64)1)<<32)*TWO_BYTE_INT(aKey);
87032 u64 x = FOUR_BYTE_UINT(aKey);
87033 testcase( aKey[0]&0x80 );
87034 x = (x<<32) | FOUR_BYTE_UINT(aKey+4);
87068 u32 d1; /* Offset into aKey[] of next data element */
87294 const u8 *aKey = &((const u8*)pKey1)[*(const u8*)pKey1 & 0x3F];
87306 lhs = ONE_BYTE_INT(aKey);
87311 lhs = TWO_BYTE_INT(aKey);
87316 lhs = THREE_BYTE_INT(aKey);
87321 y = FOUR_BYTE_UINT(aKey);
87327 lhs = FOUR_BYTE_UINT(aKey+2) + (((i64)1)<<32)*TWO_BYTE_INT(aKey);
87332 x = FOUR_BYTE_UINT(aKey);
87333 x = (x<<32) | FOUR_BYTE_UINT(aKey+4);
100119 ** PMA, in sorted order. The next key to be read is cached in nKey/aKey.
100120 ** aKey might point into aMap or into aBuffer. If neither of those locations
100122 ** and the key is copied into aAlloc and aKey is made to poitn to aAlloc.
100132 u8 *aAlloc; /* Space for aKey if aBuffer and pMap wont work */
100133 u8 *aKey; /* Pointer to current key */
100484 rc = vdbePmaReadBlob(pReadr, (int)nRec, &pReadr->aKey);
101420 pReadr1->aKey, pReadr1->nKey, pReadr2->aKey, pReadr2->nKey
101681 vdbePmaWriteBlob(&writer, pReader->aKey, nKey);
101841 pTask, &bCached, p1->aKey, p1->nKey, p2->aKey, p2->nKey
102464 pKey = pReader->aKey;