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.c69174 Wal *pRet; /* Object to allocate and return */ local
69227 pRet = (Wal*)sqlite3MallocZero(sizeof(Wal) + pVfs->szOsFile);
69228 if( !pRet ){
69232 pRet->pVfs = pVfs;
69233 pRet->pWalFd = (sqlite3_file *)&pRet[1];
69234 pRet->pDbFd = pDbFd;
69235 pRet->readLock = -1;
69236 pRet->mxWalSize = mxWalSize;
69237 pRet->zWalName = zWalName;
69238 pRet->syncHeader = 1;
[all …]
H A Dshell.c14942 void *pRet; in idxMalloc() local
14945 pRet = sqlite3_malloc64(nByte); in idxMalloc()
14946 if( pRet ){ in idxMalloc()
14947 memset(pRet, 0, nByte); in idxMalloc()
14951 return pRet; in idxMalloc()
17257 sqlite3_stmt *pRet = 0; in intckPrepare() local
17259 p->rc = sqlite3_prepare_v2(p->db, zSql, -1, &pRet, 0); in intckPrepare()
17262 assert( pRet==0 ); in intckPrepare()
17265 return pRet; in intckPrepare()
17279 sqlite3_stmt *pRet = 0; in intckPrepareFmt() local
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c3327 Tcl_Obj *pRet = Tcl_NewObj(); in DbObjCmd() local
3328 Tcl_IncrRefCount(pRet); in DbObjCmd()
3335 Tcl_ListObjAppendElement(interp, pRet, dbEvalColumnValue(&sEval, i)); in DbObjCmd()
3340 Tcl_SetObjResult(interp, pRet); in DbObjCmd()
3343 Tcl_DecrRefCount(pRet); in DbObjCmd()
4095 Tcl_Obj *pRet; in DbObjCmd()
4100 pRet = Tcl_NewIntObj(sqlite3_preupdate_depth(pDb->db)); in DbObjCmd()
4101 Tcl_SetObjResult(interp, pRet); in DbObjCmd()