Home
last modified time | relevance | path

Searched refs:pStr (Results 1 – 3 of 3) sorted by relevance

/freebsd/crypto/openssl/crypto/bn/
H A Drsaz_exp_x2.c501 static ossl_inline void put_digit52(uint8_t *pStr, int strLen, uint64_t digit)
503 assert(pStr != NULL);
506 *pStr++ = (uint8_t)(digit & 0xFF);
/freebsd/contrib/sqlite3/
H A Dsqlite3.c23817 SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, StrAccum *pStr);
33333 sqlite3_str *pStr = sqlite3_str_new(0); in sqlite3TreeViewExpr() local
33335 sqlite3_str_appendf(pStr, "IN flags=0x%x", pExpr->flags); in sqlite3TreeViewExpr()
33336 if( pExpr->iTable ) sqlite3_str_appendf(pStr, " iTable=%d",pExpr->iTable); in sqlite3TreeViewExpr()
33338 sqlite3_str_appendf(pStr, " subrtn(%d,%d)", in sqlite3TreeViewExpr()
33341 z = sqlite3_str_finish(pStr); in sqlite3TreeViewExpr()
84924 DblquoteStr *pStr = sqlite3DbMallocRawNN(db,
84925 sizeof(*pStr)+n+1-sizeof(pStr->z));
84926 if( pStr ){
84927 pStr->pNextStr = p->pDblStr;
[all …]
H A Dshell.c7069 sqlite3_str *pStr; in re_bytecode_func() local
7087 pStr = sqlite3_str_new(0); in re_bytecode_func()
7088 if( pStr==0 ) goto re_bytecode_func_err; in re_bytecode_func()
7090 sqlite3_str_appendf(pStr, "INIT "); in re_bytecode_func()
7092 sqlite3_str_appendf(pStr, "%02x", pRe->zInit[i]); in re_bytecode_func()
7094 sqlite3_str_appendf(pStr, "\n"); in re_bytecode_func()
7097 sqlite3_str_appendf(pStr, "%-8s %4d\n", in re_bytecode_func()
7100 n = sqlite3_str_length(pStr); in re_bytecode_func()
7101 z = sqlite3_str_finish(pStr); in re_bytecode_func()
21098 sqlite3_str *pStr = sqlite3_str_new(0); in save_err_msg() local
[all …]