Lines Matching defs:nStr
68510 int nStr = (serial_type - 12) / 2;
68511 testcase( (d1+nStr)==(unsigned)nKey1 );
68512 testcase( (d1+nStr+1)==(unsigned)nKey1 );
68513 if( (d1+nStr) > (unsigned)nKey1 ){
68517 int nCmp = MIN(nStr, pRhs->n);
68519 if( rc==0 ) rc = nStr - pRhs->n;
68684 int nStr;
68687 nStr = (serial_type-12) / 2;
68688 if( (szHdr + nStr) > nKey1 ){
68692 nCmp = MIN( pPKey2->aMem[0].n, nStr );
68696 res = nStr - pPKey2->aMem[0].n;
97580 int nStr; /* Size of zStr */
97591 nStr = sqlite3_value_bytes(argv[0]);
97610 nOut = nStr + 1;
97616 loopLimit = nStr - nPattern;
97643 assert( j+nStr-i+1==nOut );
97644 memcpy(&zOut[j], &zStr[i], nStr-i);
97645 j += nStr - i;
134053 int nStr = 0; /* Size of all column names (incl. 0x00) */
134057 /* Loop through the returned columns. Set nStr to the number of bytes of
134063 nStr += (int)strlen(zCol) + 1;
134067 azCol = (const char **)sqlite3_malloc(sizeof(char *) * nCol + nStr);
134084 *pnStr = nStr;
139966 int nStr = (int)strlen(zStr);
139967 if( nInput>nStr && zInput[nStr]==':'
139968 && sqlite3_strnicmp(zStr, zInput, nStr)==0
139971 iColLen = (int)((zInput - z) + nStr + 1);