Searched refs:pOld (Results 1 - 2 of 2) sorted by relevance

/external/sqlite/dist/
H A Dsqlite3.c.orig15297 void memsys3FreeUnsafe(void *pOld){
15298 Mem3Block *p = (Mem3Block*)pOld;
15853 static void memsys5FreeUnsafe(void *pOld){
15857 /* Set iBlock to the index of the block pointed to by pOld in
15860 iBlock = ((u8 *)pOld-mem5.zPool)/mem5.szAtom;
15862 /* Check that the pointer pOld points to a valid, non-free block. */
15864 assert( ((u8 *)pOld-mem5.zPool)%mem5.szAtom==0 );
17963 SQLITE_PRIVATE void *sqlite3Realloc(void *pOld, int nBytes){
17966 if( pOld==0 ){
17970 sqlite3_free(pOld); /* IM
[all...]
H A Dsqlite3.c15304 void memsys3FreeUnsafe(void *pOld){ argument
15305 Mem3Block *p = (Mem3Block*)pOld;
15860 static void memsys5FreeUnsafe(void *pOld){ argument
15864 /* Set iBlock to the index of the block pointed to by pOld in
15867 iBlock = ((u8 *)pOld-mem5.zPool)/mem5.szAtom;
15869 /* Check that the pointer pOld points to a valid, non-free block. */
15871 assert( ((u8 *)pOld-mem5.zPool)%mem5.szAtom==0 );
17970 SQLITE_PRIVATE void *sqlite3Realloc(void *pOld, int nBytes){ argument
17973 if( pOld==0 ){
17977 sqlite3_free(pOld); /* IM
18021 sqlite3_realloc(void *pOld, int n) argument
[all...]

Completed in 108 milliseconds