Home | History | Annotate | Download | only in dist

Lines Matching refs:zEnd

32263 ** The text between zStart and zEnd represents a phrase within a larger
32267 SQLITE_PRIVATE char *sqlite3DbSpanDup(sqlite3 *db, const char *zStart, const char *zEnd){
32272 for(n=0; sqlite3Isspace(zStart[n]); n++){ assert( &zStart[n]<zEnd ); }
32275 n = (int)(zEnd - zStart);
33424 const char *zEnd;
33432 zEnd = &zText[strlen(zText)];
33433 if( SQLITE_WITHIN(z,zText,zEnd) ){
36316 unsigned char const *zEnd = &z[nByte-1];
36320 while( n<nChar && z<=zEnd ){
36323 if( c>=0xd8 && c<0xdc && z<=zEnd && z[0]>=0xdc && z[0]<0xe0 ) z += 2;
37530 const char *zEnd = zNum + length;
37540 zEnd = &zNum[i^1];
37543 while( zNum<zEnd && sqlite3Isspace(*zNum) ) zNum+=incr;
37544 if( zNum<zEnd ){
37553 while( zNum<zEnd && zNum[0]=='0' ){ zNum+=incr; } /* Skip leading zeros. */
37554 for(i=0; &zNum[i]<zEnd && (c=(unsigned)zNum[i]-'0')<=9; i+=incr){
37576 }else if( &zNum[i]<zEnd ){ /* Extra bytes at the end */
37584 }while( &zNum[jj]<zEnd );
114241 u8 *zEnd; /* First byte past the end of memory */
114271 sEdupBuf.zEnd = pEdupBuf->zEnd;
114290 sEdupBuf.zEnd = sEdupBuf.zAlloc ? sEdupBuf.zAlloc+nAlloc : 0;
114314 assert( (int)(sEdupBuf.zEnd - sEdupBuf.zAlloc) >= nNewSize+nToken );
114319 assert( (int)(sEdupBuf.zEnd - sEdupBuf.zAlloc) >=
114390 assert( sEdupBuf.zAlloc <= sEdupBuf.zEnd );
114877 const char *zEnd /* End of the span */
114885 pItem->zEName = sqlite3DbSpanDup(db, zStart, zEnd);
120759 char *zEnd = &zCol[pColDef->n-1];
120760 while( zEnd>zCol && (*zEnd==';' || sqlite3Isspace(*zEnd)) ){
120761 *zEnd-- = '\0';
122540 const char *zEnd;
122562 zEnd = (const char*)pEnd->t.z;
122575 zEnd = (const char*)&zSql[pTab->u.tab.addColOffset];
122578 zNew = sqlite3MPrintf(db, "%.*s%s", pCol->t.z-zSql, zSql, zEnd);
128045 const char *zEnd /* First character past end of default value text */
128070 x.u.zToken = sqlite3DbSpanDup(db, zStart, zEnd);
128218 const char *zEnd /* Closing ")" */
128234 while( sqlite3Isspace(zEnd[-1]) ){ zEnd--; }
128236 t.n = (int)(zEnd - t.z);
128428 char *zSep, *zSep2, *zEnd;
128438 zEnd = ")";
128442 zEnd = "\n)";
128492 len = sqlite3Strlen30(zEnd);
128494 memcpy(&zStmt[k], zEnd, len+1);
135075 const u8 *zEnd = &zStr[nStr];
135077 while( z<zEnd ){
135116 const u8 *zEnd = zHex ? &zHex[nHex] : 0;
135136 assert( zHex<=zEnd );
135142 assert( *zEnd==0x00 );
135143 assert( zHex<=zEnd );
158356 static char *triggerSpanDup(sqlite3 *db, const char *zStart, const char *zEnd){
158357 char *z = sqlite3DbSpanDup(db, zStart, zEnd);
158374 const char *zEnd /* End of SQL text */
158384 pTriggerStep->zSpan = triggerSpanDup(db, zStart, zEnd);
158399 const char *zEnd /* End of SQL text */
158418 pTriggerStep->zSpan = triggerSpanDup(db, zStart, zEnd);
158448 const char *zEnd /* End of SQL text */
158455 pTriggerStep = triggerStepAllocate(pParse, TK_INSERT, pTabList, zStart, zEnd);
158493 const char *zEnd /* End of SQL text */
158498 pTriggerStep = triggerStepAllocate(pParse, TK_UPDATE, pTabList, zStart, zEnd);
158545 const char *zEnd /* End of SQL text */
158550 pTriggerStep = triggerStepAllocate(pParse, TK_DELETE, pTabList, zStart, zEnd);
195516 const char *zEnd = &zCsr[nNode];/* End of interior node buffer */
195538 if( zCsr>zEnd ){
195542 while( zCsr<zEnd && (piFirst || piLast) ){
195560 if( nPrefix>zCsr-zNode || nSuffix>zEnd-zCsr || nSuffix==0 ){
197335 const char *zEnd = "</b>";
197359 case 3: zEnd = (const char*)sqlite3_value_text(apVal[2]);
197363 if( !zEllipsis || !zEnd || !zStart ){
197368 sqlite3Fts3Snippet(pContext, pCsr, zStart, zEnd, zEllipsis, iCol, nToken);
202937 char *zEnd; /* Pointer to nul-term of zCopy */
202942 zEnd = &zCopy[strlen(zCopy)];
202960 while( z<zEnd && (NULL!=(z = (char *)sqlite3Fts3NextToken(z, &n))) ){
205989 char *zEnd = sqlite3_mprintf("%lld %lld", iEndBlock, nLeafData);
205990 if( !zEnd ) return SQLITE_NOMEM;
205991 sqlite3_bind_text(pStmt, 5, zEnd, -1, sqlite3_free);
211283 const char *zEnd, /* Snippet end text - "</b>" */
211367 i, (i==nSnippet-1), nFToken, zStart, zEnd, zEllipsis, &res
211949 const unsigned char *zEnd;
211976 zEnd = z;
211994 *piEnd = (int)(zEnd - pCsr->aInput);
248743 char *zEnd = &zIn[p->nQueryTerm];
248745 while( zIn<zEnd ){