Lines Matching refs:aIn
38263 const unsigned char *aIn = (const unsigned char*)a; in kvvfsDecode() local
38267 c = kvvfsHexValue[aIn[i]]; in kvvfsDecode()
38271 c = aIn[i]; in kvvfsDecode()
38276 c = aIn[++i]; in kvvfsDecode()
38284 c = kvvfsHexValue[aIn[++i]]; in kvvfsDecode()
66738 const u32 *aIn, /* Initial checksum value input */
66745 if( aIn ){
66746 s1 = aIn[0];
66747 s2 = aIn[1];
81211 const u8 *aIn; /* Pointer to next input buffer */ local
81223 aIn = pSrc->info.pPayload;
81224 if( aIn+nIn>pSrc->pPage->aDataEnd ){
81229 memcpy(aOut, aIn, nIn);
81249 if( aIn+nIn+4>pSrc->pPage->aDataEnd ){
81261 memcpy(aOut, aIn, nCopy);
81265 aIn += nCopy;
81272 aIn = (const u8*)sqlite3PagerGetData(pPageIn);
81273 ovflIn = get4byte(aIn);
81274 aIn += 4;
244936 static u16 fts5GetU16(const u8 *aIn){
244937 return ((u16)aIn[0] << 8) + aIn[1];
259219 static void asciiFold(char *aOut, const char *aIn, int nByte){
259222 char c = aIn[i];