Lines Matching refs:aIn
36195 const unsigned char *aIn = (const unsigned char*)a;
36199 c = kvvfsHexValue[aIn[i]];
36203 c = aIn[i];
36208 c = aIn[++i];
36213 c = aIn[i];
36217 c = kvvfsHexValue[aIn[++i]];
64082 ** array aByte[] and the initial values of aIn[0] and aIn[1] (or
64083 ** initial values of 0 and 0 if aIn==NULL).
64093 const u32 *aIn, /* Initial checksum value input */
64100 if( aIn ){
64101 s1 = aIn[0];
64102 s2 = aIn[1];
77946 const u8 *aIn; /* Pointer to next input buffer */
77947 u32 nIn; /* Size of input buffer aIn[] */
77958 aIn = pSrc->info.pPayload;
77959 if( aIn+nIn>pSrc->pPage->aDataEnd ){
77964 memcpy(aOut, aIn, nIn);
77982 if( aIn+nIn+4>pSrc->pPage->aDataEnd ){
77994 memcpy(aOut, aIn, nCopy);
77998 aIn += nCopy;
78005 aIn = (const u8*)sqlite3PagerGetData(pPageIn);
78006 ovflIn = get4byte(aIn);
78007 aIn += 4;
230565 static u16 fts5GetU16(const u8 *aIn){
230566 return ((u16)aIn[0] << 8) + aIn[1];
241029 static void asciiFold(char *aOut, const char *aIn, int nByte){
241032 char c = aIn[i];