Searched refs:pNew (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/dev/pms/RefTisa/sallsdk/spc/ |
H A D | sallist.h | 225 #define saLlistInsert(pList, pLink, pNew) { \ argument 226 (pNew)->pNext = (pLink); \ 227 (pNew)->pPrev = (pLink)->pPrev; \ 228 (pNew)->pPrev->pNext = (pNew); \ 229 (pLink)->pPrev = (pNew); \ 231 (pNew)->pHead = (pList)->pHead; \
|
/freebsd/sys/dev/pms/freebsd/driver/common/ |
H A D | lxcommon.h | 730 #define comListInsert(pList, pLink, pNew) { \ argument 731 (pNew)->pNext = (pLink); \ 732 (pNew)->pPrev = (pLink)->pPrev; \ 733 (pNew)->pPrev->pNext = (pNew); \ 734 (pLink)->pPrev = (pNew); \ 736 (pNew)->pHead = (pList)->pHead; \
|
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 5876 sqlite3_vtab *pNew; in seriesConnect() local 5892 pNew = *ppVtab = sqlite3_malloc( sizeof(*pNew) ); in seriesConnect() 5893 if( pNew==0 ) return SQLITE_NOMEM; in seriesConnect() 5894 memset(pNew, 0, sizeof(*pNew)); in seriesConnect() 7761 fsdir_tab *pNew = 0; in fsdirConnect() local 7769 pNew = (fsdir_tab*)sqlite3_malloc( sizeof(*pNew) ); in fsdirConnect() 7770 if( pNew==0 ) return SQLITE_NOMEM; in fsdirConnect() 7771 memset(pNew, 0, sizeof(*pNew)); in fsdirConnect() 7774 *ppVtab = (sqlite3_vtab*)pNew; in fsdirConnect() 8301 completion_vtab *pNew; in completionConnect() local [all …]
|
H A D | sqlite3.c | 27278 void *pNew; in sqlite3MemRealloc() local 27282 pNew = sqlite3MemMalloc(nByte); in sqlite3MemRealloc() 27283 if( pNew ){ in sqlite3MemRealloc() 27284 memcpy(pNew, pPrior, (int)(nByte<pOldHdr->iSize ? nByte : pOldHdr->iSize)); in sqlite3MemRealloc() 27286 randomFill(&((char*)pNew)[pOldHdr->iSize], nByte - (int)pOldHdr->iSize); in sqlite3MemRealloc() 27290 return pNew; in sqlite3MemRealloc() 29217 sqlite3_debug_mutex *pNew = 0; in debugMutexAlloc() local 29221 pNew = sqlite3Malloc(sizeof(*pNew)); in debugMutexAlloc() 29222 if( pNew ){ in debugMutexAlloc() 29223 pNew->id = id; in debugMutexAlloc() [all …]
|
/freebsd/contrib/sqlite3/tea/generic/ |
H A D | tclsqlite3.c | 497 SqlFunc *p, *pNew; in findSqlFunc() local 499 pNew = (SqlFunc*)Tcl_Alloc( sizeof(*pNew) + nName + 1 ); in findSqlFunc() 500 pNew->zName = (char*)&pNew[1]; in findSqlFunc() 501 memcpy(pNew->zName, zName, nName+1); in findSqlFunc() 503 if( sqlite3_stricmp(p->zName, pNew->zName)==0 ){ in findSqlFunc() 504 Tcl_Free((char*)pNew); in findSqlFunc() 508 pNew->interp = pDb->interp; in findSqlFunc() 509 pNew->pDb = pDb; in findSqlFunc() 510 pNew->pScript = 0; in findSqlFunc() 511 pNew->pNext = pDb->pFunc; in findSqlFunc() [all …]
|