/external/deqp/framework/delibs/depool/ |
D | deMemPool.c | 42 typedef struct MemPage_s MemPage; typedef 55 MemPage* nextPage; 96 MemPage* currentPage; /*!< Current memory page from which to allocate. */ 121 static void MemPage_init (MemPage* page, size_t capacity) in MemPage_init() 123 memset(page, 0, sizeof(MemPage)); in MemPage_init() 136 static MemPage* MemPage_create (size_t capacity) in MemPage_create() 138 MemPage* page = (MemPage*)deMalloc(sizeof(MemPage) + capacity); in MemPage_create() 153 static void MemPage_destroy (MemPage* page) in MemPage_destroy() 172 MemPage* initialPage; in createPoolInternal() 362 MemPage* page = pool->currentPage; in deMemPool_destroy() [all …]
|
/external/python/pycparser/utils/benchmark/inputs/ |
D | sqlite-btree.c.ppout | 3608 typedef struct MemPage MemPage; 3612 struct MemPage { 3640 u16 (*xCellSize)(MemPage*,u8*); 3641 void (*xParseCell)(MemPage*,u8*,CellInfo*); 3672 MemPage *pPage1; 3738 MemPage *pPage; 3739 MemPage *apPage[20 -1]; 3921 static void releasePage(MemPage *pPage); 3922 static void releasePageOne(MemPage *pPage); 3923 static void releasePageNotNull(MemPage *pPage); [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-04-29-RegAllocAssert.ll | 13 …r*, %struct.BtCursor*, i32 (i8*, i32, i8*, i32, i8*)*, i8*, i32, %struct.MemPage*, i32, %struct.Ce… 15 …%struct.BtShared = type { %struct.Pager*, %struct.sqlite3*, %struct.BtCursor*, %struct.MemPage*, i… 40 …MemPage = type { i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i16, i16, i16, i16, i16, i16, [5 x %struc… 72 define fastcc void @dropCell(%struct.MemPage* nocapture %pPage, i32 %idx, i32 %sz) nounwind ssp { 114 %14 = getelementptr %struct.MemPage, %struct.MemPage* %pPage, i64 0, i32 1 ; <i8*> [#uses=1]
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | 2009-04-29-RegAllocAssert.ll | 13 …r*, %struct.BtCursor*, i32 (i8*, i32, i8*, i32, i8*)*, i8*, i32, %struct.MemPage*, i32, %struct.Ce… 15 …%struct.BtShared = type { %struct.Pager*, %struct.sqlite3*, %struct.BtCursor*, %struct.MemPage*, i… 40 …MemPage = type { i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i16, i16, i16, i16, i16, i16, [5 x %struc… 72 define fastcc void @dropCell(%struct.MemPage* nocapture %pPage, i32 %idx, i32 %sz) nounwind ssp { 114 %14 = getelementptr %struct.MemPage, %struct.MemPage* %pPage, i64 0, i32 1 ; <i8*> [#uses=1]
|
/external/llvm-project/llvm/test/Transforms/GVN/ |
D | 2009-01-22-SortInvalidation.ll | 11 …r*, %struct.BtCursor*, i32 (i8*, i32, i8*, i32, i8*)*, i8*, i32, %struct.MemPage*, i32, %struct.Ce… 13 …%struct.BtShared = type { %struct.Pager*, %struct.sqlite3*, %struct.BtCursor*, %struct.MemPage*, i… 37 …MemPage = type { i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i16, i16, i16, i16, i16, i16, [5 x %struc…
|
/external/llvm/test/Transforms/GVN/ |
D | 2009-01-22-SortInvalidation.ll | 11 …r*, %struct.BtCursor*, i32 (i8*, i32, i8*, i32, i8*)*, i8*, i32, %struct.MemPage*, i32, %struct.Ce… 13 …%struct.BtShared = type { %struct.Pager*, %struct.sqlite3*, %struct.BtCursor*, %struct.MemPage*, i… 37 …MemPage = type { i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i16, i16, i16, i16, i16, i16, [5 x %struc…
|
/external/llvm-project/llvm/test/Transforms/NewGVN/ |
D | 2009-01-22-SortInvalidation.ll | 11 …r*, %struct.BtCursor*, i32 (i8*, i32, i8*, i32, i8*)*, i8*, i32, %struct.MemPage*, i32, %struct.Ce… 13 …%struct.BtShared = type { %struct.Pager*, %struct.sqlite3*, %struct.BtCursor*, %struct.MemPage*, i… 37 …MemPage = type { i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i16, i16, i16, i16, i16, i16, [5 x %struc…
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.c | 63707 typedef struct MemPage MemPage; 63748 struct MemPage { 63776 u16 (*xCellSize)(MemPage*,u8*); /* cellSizePtr method */ 63777 void (*xParseCell)(MemPage*,u8*,CellInfo*); /* btreeParseCell method */ 63886 MemPage *pPage1; /* First page of the database */ 64005 MemPage *pPage; /* Current page */ 64006 MemPage *apPage[BTCURSOR_MAX_DEPTH-1]; /* Stack of parents of current page */ 64608 int corruptPageError(int lineno, MemPage *p){ 64955 static void releasePage(MemPage *pPage); /* Forward reference */ 64956 static void releasePageOne(MemPage *pPage); /* Forward reference */ [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 63563 typedef struct MemPage MemPage; 63604 struct MemPage { 63632 u16 (*xCellSize)(MemPage*,u8*); /* cellSizePtr method */ 63633 void (*xParseCell)(MemPage*,u8*,CellInfo*); /* btreeParseCell method */ 63742 MemPage *pPage1; /* First page of the database */ 63861 MemPage *pPage; /* Current page */ 63862 MemPage *apPage[BTCURSOR_MAX_DEPTH-1]; /* Stack of parents of current page */ 64463 int corruptPageError(int lineno, MemPage *p){ 64808 static void releasePage(MemPage *pPage); /* Forward reference */ 64809 static void releasePageOne(MemPage *pPage); /* Forward reference */ [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 63579 typedef struct MemPage MemPage; 63620 struct MemPage { 63648 u16 (*xCellSize)(MemPage*,u8*); /* cellSizePtr method */ 63649 void (*xParseCell)(MemPage*,u8*,CellInfo*); /* btreeParseCell method */ 63758 MemPage *pPage1; /* First page of the database */ 63877 MemPage *pPage; /* Current page */ 63878 MemPage *apPage[BTCURSOR_MAX_DEPTH-1]; /* Stack of parents of current page */ 64479 int corruptPageError(int lineno, MemPage *p){ 64824 static void releasePage(MemPage *pPage); /* Forward reference */ 64825 static void releasePageOne(MemPage *pPage); /* Forward reference */ [all …]
|