Home | History | Annotate | Download | only in dist

Lines Matching defs:pResult

27025   void *pResult;           /* Result of xTask */
27045 p->pResult = p->xTask(p->pIn);
27081 p->pResult = xTask(pIn);
27107 if( rc==WAIT_OBJECT_0 ) *ppOut = p->pResult;
27128 void *pResult; /* Result of xTask */
27149 p->pResult = xTask(pIn);
27163 *ppOut = p->pResult;
28041 ** Convert this string to a double and write it into *pResult.
28059 ** into *pResult.
28061 SQLITE_PRIVATE int sqlite3AtoF(const char *z, double *pResult, int length, u8 enc){
28077 *pResult = 0.0; /* Default return value, in case of an error */
28228 *pResult = result;
28233 return !sqlite3Atoi64(z, pResult, length, enc);
130898 WhereTerm *pResult = 0;
130910 if( pResult==0 ) pResult = p;
130914 return pResult;
181104 JsonNode *pResult; /* The result of the merge */
181112 pResult = jsonMergePatch(&x, 0, y.aNode);
181113 assert( pResult!=0 || x.oom );
181114 if( pResult ){
181115 jsonReturnJson(pResult, ctx, 0);