Lines Matching defs:zCsr

58574     u8 *zCsr = (u8 *)&p->aOp[p->nOp];       /* Memory avaliable for alloation */
58583 memset(zCsr, 0, zEnd-zCsr);
58584 zCsr += (zCsr - (u8*)0)&7;
58585 assert( EIGHT_BYTE_ALIGNMENT(zCsr) );
58599 p->aMem = allocSpace(p->aMem, nMem*sizeof(Mem), &zCsr, zEnd, &nByte);
58600 p->aVar = allocSpace(p->aVar, nVar*sizeof(Mem), &zCsr, zEnd, &nByte);
58601 p->apArg = allocSpace(p->apArg, nArg*sizeof(Mem*), &zCsr, zEnd, &nByte);
58602 p->azVar = allocSpace(p->azVar, nVar*sizeof(char*), &zCsr, zEnd, &nByte);
58604 &zCsr, zEnd, &nByte);
58608 zCsr = p->pFree;
58609 zEnd = &zCsr[nByte];
62158 char *zCsr = zBuf;
62179 sqlite3_snprintf(100, zCsr, "%c", c);
62180 zCsr += sqlite3Strlen30(zCsr);
62181 sqlite3_snprintf(100, zCsr, "%d[", pMem->n);
62182 zCsr += sqlite3Strlen30(zCsr);
62184 sqlite3_snprintf(100, zCsr, "%02X", ((int)pMem->z[i] & 0xFF));
62185 zCsr += sqlite3Strlen30(zCsr);
62189 if( z<32 || z>126 ) *zCsr++ = '.';
62190 else *zCsr++ = z;
62193 sqlite3_snprintf(100, zCsr, "]%s", encnames[pMem->enc]);
62194 zCsr += sqlite3Strlen30(zCsr);
62196 sqlite3_snprintf(100, zCsr,"+%dz",pMem->u.nZero);
62197 zCsr += sqlite3Strlen30(zCsr);
62199 *zCsr = '\0';
74541 unsigned char const *zCsr = zSql;
74555 if( !*zCsr ){
74560 /* Store the token that zCsr points to in tname. */
74561 tname.z = (char*)zCsr;
74564 /* Advance zCsr to the next token. Store that token type in 'token',
74568 zCsr += len;
74569 len = sqlite3GetToken(zCsr, &token);
74662 unsigned char const *zCsr = zSql;
74677 if( !*zCsr ){
74682 /* Store the token that zCsr points to in tname. */
74683 tname.z = (char*)zCsr;
74686 /* Advance zCsr to the next token. Store that token type in 'token',
74690 zCsr += len;
74691 len = sqlite3GetToken(zCsr, &token);
113708 const char *zCsr = z;
113710 while( *zCsr!='=' ){
113711 if( *zCsr=='\0' ) return 0;
113712 zCsr++;
113715 *pnKey = (int)(zCsr-z);
113716 zValue = sqlite3_mprintf("%s", &zCsr[1]);
113887 char *zCsr; /* Space for holding column names */
114007 zCsr = (char *)&p->azColumn[nCol];
114008 p->zName = zCsr;
114009 memcpy(zCsr, argv[2], nName);
114010 zCsr += nName;
114011 p->zDb = zCsr;
114012 memcpy(zCsr, argv[1], nDb);
114013 zCsr += nDb;
114020 memcpy(zCsr, z, n);
114021 zCsr[n] = '\0';
114022 sqlite3Fts3Dequote(zCsr);
114023 p->azColumn[iCol] = zCsr;
114024 zCsr += n+1;
114025 assert( zCsr <= &((char *)p)[nByte] );
114243 const char *zCsr = zNode; /* Cursor to iterate through node */
114244 const char *zEnd = &zCsr[nNode];/* End of interior node buffer */
114263 zCsr += sqlite3Fts3GetVarint(zCsr, &iChild);
114264 zCsr += sqlite3Fts3GetVarint(zCsr, &iChild);
114265 if( zCsr>zEnd ){
114269 while( zCsr<zEnd && (piFirst || piLast) ){
114278 zCsr += sqlite3Fts3GetVarint32(zCsr, &nPrefix);
114281 zCsr += sqlite3Fts3GetVarint32(zCsr, &nSuffix);
114289 || &zCsr[nSuffix]<zCsr || &zCsr[nSuffix]>zEnd ){
114303 memcpy(&zBuffer[nPrefix], zCsr, nSuffix);
114305 zCsr += nSuffix;