Home | History | Annotate | Download | only in dist

Lines Matching refs:pz

21293 ** Store the string in memory obtained from sqliteMalloc() and make *pz
21296 SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){
21303 sqlite3DbFree(db, *pz);
21304 *pz = z;
23061 const unsigned char **pz /* Pointer to string from which to read char */
23068 c = *((*pz)++);
23071 while( (*(*pz) & 0xc0)==0x80 ){
23072 c = (c<<6) + (0x3f & *((*pz)++));
23271 ** pZ is a UTF-8 encoded unicode string. If nByte is less than zero,
23272 ** return the number of unicode characters in pZ up to (but not including)
23274 ** number of unicode characters in the first nByte of pZ (or up to
23350 ** in pZ. nChar must be non-negative.
86309 Expr *pZ = pExpr->x.pList->a[1].pExpr;
86313 sqlite3TreeViewExpr(pView, pZ, 0);
133776 char **pz, /* IN/OUT: Pointer to string buffer */
133786 if( z && *pz ){
133787 char *z2 = sqlite3_mprintf("%s%s", *pz, z);
133792 sqlite3_free(*pz);
133793 *pz = z;
141400 ** The input word *pz and zFrom are both in reverse order. zTo
141408 char **pz, /* The word being stemmed (Reversed) */
141413 char *z = *pz;
141420 *pz = z;
147931 ** Convert the text beginning at *pz into an integer and return
147932 ** its value. Advance *pz to point to the first character past
147935 static int fts3Getint(const char **pz){
147936 const char *z = *pz;
147939 *pz = z;