Lines Matching defs:p

12407     void *p;               /* Generic pointer */  member
14724 void *p; /* Pointer to sampled record */ member
16397 # define sqlite3ParseToplevel(p) ((p)->pToplevel ? (p)->pToplevel : (p)) argument
16398 # define sqlite3IsToplevel(p) ((p)->pToplevel==0) argument
16407 # define sqlite3ParseToplevel(p) p argument
16408 # define sqlite3IsToplevel(p) 1 argument
17798 #define VdbeFrameMem(p) ((Mem *)&((u8 *)p)[ROUND8(sizeof(VdbeFrame))]) argument
17893 #define MemSetTypeFlag(p, f) \ argument
18165 # define sqlite3VdbeCheckFk(p,i) 0 argument
18427 HashElem *p; in sqlite3_db_status() local
18685 static int parseTimezone(const char *zDate, DateTime *p){ in parseTimezone()
18721 static int parseHhMmSs(const char *zDate, DateTime *p){ in parseHhMmSs()
18763 static void computeJD(DateTime *p){ in computeJD()
18809 static int parseYyyyMmDd(const char *zDate, DateTime *p){ in parseYyyyMmDd()
18846 static int setDateTimeToCurrent(sqlite3_context *context, DateTime *p){ in setDateTimeToCurrent()
18875 DateTime *p in parseDateOrTime()
18895 static void computeYMD(DateTime *p){ in computeYMD()
18921 static void computeHMS(DateTime *p){ in computeHMS()
18939 static void computeYMD_HMS(DateTime *p){ in computeYMD_HMS()
18947 static void clearYMD_HMS_TZ(DateTime *p){ in clearYMD_HMS_TZ()
19025 DateTime *p, /* Date at which to calculate offset */ in localtimeOffset()
19103 static int parseModifier(sqlite3_context *pCtx, const char *zMod, DateTime *p){ in parseModifier()
19317 DateTime *p in isDate()
19872 SQLITE_PRIVATE int sqlite3OsUnfetch(sqlite3_file *id, i64 iOff, void *p){ in sqlite3OsUnfetch()
19881 SQLITE_PRIVATE int sqlite3OsUnfetch(sqlite3_file *id, i64 iOff, void *p){ in sqlite3OsUnfetch()
20007 void *p = sqlite3_malloc(10); in sqlite3OsInit() local
20054 sqlite3_vfs *p = vfsList; in vfsUnlink() local
20388 void *p = SQLITE_MALLOC( nByte ); in sqlite3MemMalloc() local
20458 void *p = SQLITE_REALLOC(pPrior, nByte); in sqlite3MemRealloc() local
20712 struct MemBlockHdr *p; in sqlite3MemsysGetHeader() local
20735 static int sqlite3MemSize(void *p){ in sqlite3MemSize()
20806 void *p = 0; in sqlite3MemMalloc() local
20940 SQLITE_PRIVATE void sqlite3MemdebugSetType(void *p, u8 eType){ in sqlite3MemdebugSetType()
20958 SQLITE_PRIVATE int sqlite3MemdebugHasType(void *p, u8 eType){ in sqlite3MemdebugHasType()
20980 SQLITE_PRIVATE int sqlite3MemdebugNoType(void *p, u8 eType){ in sqlite3MemdebugNoType()
21365 void *p = memsys3Checkout(mem3.iMaster, mem3.szMaster); in memsys3FromMaster() local
21527 Mem3Block *p = (Mem3Block*)pOld; in memsys3FreeUnsafe() local
21567 static int memsys3Size(void *p){ in memsys3Size()
21590 sqlite3_int64 *p; in memsys3Malloc() local
21613 void *p; in memsys3Realloc() local
21981 static int memsys5Size(void *p){ in memsys5Size()
22137 sqlite3_int64 *p = 0; in memsys5Malloc() local
22173 void *p; in memsys5Realloc() local
22469 SQLITE_API void sqlite3_mutex_free(sqlite3_mutex *p){ in sqlite3_mutex_free()
22480 SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex *p){ in sqlite3_mutex_enter()
22491 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex *p){ in sqlite3_mutex_try()
22506 SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex *p){ in sqlite3_mutex_leave()
22518 SQLITE_API int sqlite3_mutex_held(sqlite3_mutex *p){ in sqlite3_mutex_held()
22522 SQLITE_API int sqlite3_mutex_notheld(sqlite3_mutex *p){ in sqlite3_mutex_notheld()
22575 static void noopMutexFree(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } in noopMutexFree()
22576 static void noopMutexEnter(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } in noopMutexEnter()
22577 static int noopMutexTry(sqlite3_mutex *p){ in noopMutexTry()
22581 static void noopMutexLeave(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } in noopMutexLeave()
22621 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexHeld() local
22625 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexNotheld() local
22672 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexFree() local
22695 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexEnter() local
22700 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexTry() local
22713 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; in debugMutexLeave() local
22826 static int pthreadMutexHeld(sqlite3_mutex *p){ in pthreadMutexHeld()
22829 static int pthreadMutexNotheld(sqlite3_mutex *p){ in pthreadMutexNotheld()
22916 sqlite3_mutex *p; in pthreadMutexAlloc() local
22966 static void pthreadMutexFree(sqlite3_mutex *p){ in pthreadMutexFree()
22993 static void pthreadMutexEnter(sqlite3_mutex *p){ in pthreadMutexEnter()
23035 static int pthreadMutexTry(sqlite3_mutex *p){ in pthreadMutexTry()
23092 static void pthreadMutexLeave(sqlite3_mutex *p){ in pthreadMutexLeave()