HomeSort by: relevance | last modified time | path
    Searched refs:pOut (Results 1 - 3 of 3) sorted by relevancy

  /src/external/public-domain/sqlite/dist/
sqlite3.h 10230 ** a variable pointed to by the "pOut" parameter.
10247 ** the variable that pOut points to is unchanged.
10255 void *pOut /* Result written here */
10262 void *pOut /* Result written here */
12578 **   int (*xOutput)(void *pOut, const void *pData, int nData),
12579 **   void *pOut
12584 ** pOut pointer supplied by the application. The second parameter, pData,
12633 int (*xOutput)(void *pOut, const void *pData, int nData),
12634 void *pOut
12639 int (*xOutput)(void *pOut, const void *pData, int nData)
    [all...]
sqlite3.c 10543 ** a variable pointed to by the "pOut" parameter.
10560 ** the variable that pOut points to is unchanged.
10568 void *pOut /* Result written here */
10575 void *pOut /* Result written here */
12891 **   int (*xOutput)(void *pOut, const void *pData, int nData),
12892 **   void *pOut
12897 ** pOut pointer supplied by the application. The second parameter, pData,
12946 int (*xOutput)(void *pOut, const void *pData, int nData),
12947 void *pOut
12952 int (*xOutput)(void *pOut, const void *pData, int nData)
    [all...]
shell.c 4645 static char* toBase64( u8 *pIn, int nbIn, char *pOut ){
4649 pOut[0] = BX_NUMERAL(pIn[0]>>2);
4650 pOut[1] = BX_NUMERAL(((pIn[0]<<4)|(pIn[1]>>4))&0x3f);
4651 pOut[2] = BX_NUMERAL(((pIn[1]&0xf)<<2)|(pIn[2]>>6));
4652 pOut[3] = BX_NUMERAL(pIn[2]&0x3f);
4653 pOut += 4;
4657 *pOut++ = '\n';
4672 pOut[nbe] = ce;
4674 pOut += 4;
4675 *pOut++ = '\n'
    [all...]

Completed in 309 milliseconds