Home | History | Annotate | Download | only in orig

Lines Matching defs:nStr

87112   int nStr;                /* Size of zStr */
87123 nStr = sqlite3_value_bytes(argv[0]);
87142 nOut = nStr + 1;
87148 loopLimit = nStr - nPattern;
87175 assert( j+nStr-i+1==nOut );
87176 memcpy(&zOut[j], &zStr[i], nStr-i);
87177 j += nStr - i;
117625 int nStr = 0; /* Size of all column names (incl. 0x00) */
117629 /* Loop through the returned columns. Set nStr to the number of bytes of
117635 nStr += (int)strlen(zCol) + 1;
117639 azCol = (const char **)sqlite3_malloc(sizeof(char *) * nCol + nStr);
117656 *pnStr = nStr;
122811 int nStr = (int)strlen(zStr);
122812 if( nInput>nStr && zInput[nStr]==':'
122813 && sqlite3_strnicmp(zStr, zInput, nStr)==0
122816 iColLen = (int)((zInput - z) + nStr + 1);