Lines Matching defs:pz
12784 ** current document. If successful, (*pz) is set to point to a buffer
12788 ** of (*pz) and (*pn) are undefined.
12979 int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);
29844 ** Free any prior content in *pz and replace it with a copy of zNew.
29846 SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zNew){
29848 sqlite3DbFree(db, *pz);
29849 *pz = z;
33208 const unsigned char **pz /* Pointer to string from which to read char */
33215 c = *((*pz)++);
33218 while( (*(*pz) & 0xc0)==0x80 ){
33219 c = (c<<6) + (0x3f & *((*pz)++));
172358 ** Return the id of the next token in string (*pz). Before returning, set
172359 ** (*pz) to point to the byte following the parsed token.
172361 static int getToken(const unsigned char **pz){
172362 const unsigned char *z = *pz;
172376 *pz = z;
180455 char **pz, /* IN/OUT: Pointer to string buffer */
180465 if( z && *pz ){
180466 char *z2 = sqlite3_mprintf("%s%s", *pz, z);
180471 sqlite3_free(*pz);
180472 *pz = z;
188263 ** The input word *pz and zFrom are both in reverse order. zTo
188271 char **pz, /* The word being stemmed (Reversed) */
188276 char *z = *pz;
188283 *pz = z;
194969 ** Convert the text beginning at *pz into an integer and return
194970 ** its value. Advance *pz to point to the first character past
194976 static int fts3Getint(const char **pz){
194977 const char *z = *pz;
194980 *pz = z;
209291 ** Read bytes from *pz and convert them into a positive integer. When
209292 ** finished, leave *pz pointing to the first character past the end of
209294 ** in *pz and is decremented once for each character in the integer.
209296 static unsigned int rbuDeltaGetInt(const char **pz, int *pLen){
209309 unsigned char *z = (unsigned char*)*pz;
209316 *pz = (char*)z;
211136 char **pz = &p->zErrmsg;
211232 p->rc = prepareFreeAndCollectError(p->dbRbu,&pIter->pSelect,pz,zSql);
211265 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz,
211277 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pDelete, pz,
211357 p->rc = prepareFreeAndCollectError(p->dbRbu, &pIter->pSelect, pz,
221445 ** current document. If successful, (*pz) is set to point to a buffer
221449 ** of (*pz) and (*pn) are undefined.
221640 int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);
226522 ** Read the first token from the nul-terminated string at *pz.
226526 const char **pz, /* IN/OUT: Pointer into buffer */
226529 const char *z = *pz;
226584 *pz = &pToken->p[pToken->n];
227912 static int fts5ParseStringFromToken(Fts5Token *pToken, char **pz){
227914 *pz = sqlite3Fts5Strndup(&rc, pToken->p, pToken->n);
238667 const char **pz,
238675 *pz = 0;
238680 *pz = (const char*)sqlite3_column_text(pCsr->pStmt, iCol+1);