Home
last modified time | relevance | path

Searched refs:pRet (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/dev/qat/qat_api/qat_utils/src/
H A DQatUtilsServices.c47 void *pRet = NULL; in qatUtilsMemAllocContiguousNUMA() local
66 pRet = in qatUtilsMemAllocContiguousNUMA()
69 alignment_offset = (uint64_t)pRet % alignment; in qatUtilsMemAllocContiguousNUMA()
71 alignment_offset = (uint32_t)pRet % alignment; in qatUtilsMemAllocContiguousNUMA()
73 pRet = (char *)pRet + (alignment - alignment_offset); in qatUtilsMemAllocContiguousNUMA()
74 memcpy(((char *)pRet) - sizeof(QatUtilsMemAllocInfoStruct), in qatUtilsMemAllocContiguousNUMA()
78 return pRet; in qatUtilsMemAllocContiguousNUMA()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c66553 Wal *pRet; /* Object to allocate and return */
66606 pRet = (Wal*)sqlite3MallocZero(sizeof(Wal) + pVfs->szOsFile);
66607 if( !pRet ){
66611 pRet->pVfs = pVfs;
66612 pRet->pWalFd = (sqlite3_file *)&pRet[1];
66613 pRet->pDbFd = pDbFd;
66614 pRet->readLock = -1;
66615 pRet->mxWalSize = mxWalSize;
66616 pRet->zWalName = zWalName;
66617 pRet->syncHeader = 1;
[all …]
H A Dshell.c12092 void *pRet; in idxMalloc() local
12095 pRet = sqlite3_malloc(nByte); in idxMalloc()
12096 if( pRet ){ in idxMalloc()
12097 memset(pRet, 0, nByte); in idxMalloc()
12101 return pRet; in idxMalloc()
14324 sqlite3_stmt *pRet = 0; in intckPrepare() local
14326 p->rc = sqlite3_prepare_v2(p->db, zSql, -1, &pRet, 0); in intckPrepare()
14329 assert( pRet==0 ); in intckPrepare()
14332 return pRet; in intckPrepare()
14346 sqlite3_stmt *pRet = 0; in intckPrepareFmt() local
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2836 Tcl_Obj *pRet = Tcl_NewObj(); in DbObjCmd() local
2837 Tcl_IncrRefCount(pRet); in DbObjCmd()
2844 Tcl_ListObjAppendElement(interp, pRet, dbEvalColumnValue(&sEval, i)); in DbObjCmd()
2849 Tcl_SetObjResult(interp, pRet); in DbObjCmd()
2852 Tcl_DecrRefCount(pRet); in DbObjCmd()
3592 Tcl_Obj *pRet; in DbObjCmd()
3597 pRet = Tcl_NewIntObj(sqlite3_preupdate_depth(pDb->db)); in DbObjCmd()
3598 Tcl_SetObjResult(interp, pRet); in DbObjCmd()