/external/swiftshader/third_party/LLVM/test/Transforms/GVN/ |
D | 2009-01-22-SortInvalidation.ll | 40 …, %struct.Bitvec*, i8*, i8*, i8*, i8*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.sqlit… 63 %struct.sqlite3_file = type { %struct.sqlite3_io_methods* } 67 …sqlite3_file*)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i8*, i32… 70 …truct.sqlite3_vfs*, i8*, i8*, i32 (%struct.sqlite3_vfs*, i8*, %struct.sqlite3_file*, i32, i32*)*, …
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-04-29-RegAllocAssert.ll | 43 …, %struct.Bitvec*, i8*, i8*, i8*, i8*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.sqlit… 61 %struct.sqlite3_file = type { %struct.sqlite3_io_methods* } 65 …sqlite3_file*)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i8*, i32… 68 …truct.sqlite3_vfs*, i8*, i8*, i32 (%struct.sqlite3_vfs*, i8*, %struct.sqlite3_file*, i32, i32*)*, …
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | 2009-04-29-RegAllocAssert.ll | 43 …, %struct.Bitvec*, i8*, i8*, i8*, i8*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.sqlit… 61 %struct.sqlite3_file = type { %struct.sqlite3_io_methods* } 65 …sqlite3_file*)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i8*, i32… 68 …truct.sqlite3_vfs*, i8*, i8*, i32 (%struct.sqlite3_vfs*, i8*, %struct.sqlite3_file*, i32, i32*)*, …
|
/external/llvm/test/Transforms/GVN/ |
D | 2009-01-22-SortInvalidation.ll | 40 …, %struct.Bitvec*, i8*, i8*, i8*, i8*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.sqlit… 63 %struct.sqlite3_file = type { %struct.sqlite3_io_methods* } 67 …sqlite3_file*)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i8*, i32… 70 …truct.sqlite3_vfs*, i8*, i8*, i32 (%struct.sqlite3_vfs*, i8*, %struct.sqlite3_file*, i32, i32*)*, …
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/NewGVN/ |
D | 2009-01-22-SortInvalidation.ll | 40 …, %struct.Bitvec*, i8*, i8*, i8*, i8*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.sqlit… 63 %struct.sqlite3_file = type { %struct.sqlite3_io_methods* } 67 …sqlite3_file*)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i8*, i32… 70 …truct.sqlite3_vfs*, i8*, i8*, i32 (%struct.sqlite3_vfs*, i8*, %struct.sqlite3_file*, i32, i32*)*, …
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GVN/ |
D | 2009-01-22-SortInvalidation.ll | 40 …, %struct.Bitvec*, i8*, i8*, i8*, i8*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.sqlit… 63 %struct.sqlite3_file = type { %struct.sqlite3_io_methods* } 67 …sqlite3_file*)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i8*, i32… 70 …truct.sqlite3_vfs*, i8*, i8*, i32 (%struct.sqlite3_vfs*, i8*, %struct.sqlite3_file*, i32, i32*)*, …
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | 2009-04-29-RegAllocAssert.ll | 43 …, %struct.Bitvec*, i8*, i8*, i8*, i8*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.sqlit… 61 %struct.sqlite3_file = type { %struct.sqlite3_io_methods* } 65 …sqlite3_file*)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i8*, i32… 68 …truct.sqlite3_vfs*, i8*, i8*, i32 (%struct.sqlite3_vfs*, i8*, %struct.sqlite3_file*, i32, i32*)*, …
|
/external/sqlite/dist/ |
D | sqlite3.h | 670 typedef struct sqlite3_file sqlite3_file; typedef 671 struct sqlite3_file { struct 772 int (*xClose)(sqlite3_file*); 773 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 774 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 775 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 776 int (*xSync)(sqlite3_file*, int flags); 777 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 778 int (*xLock)(sqlite3_file*, int); 779 int (*xUnlock)(sqlite3_file*, int); [all …]
|
D | shell.c | 3485 #define ORIGFILE(p) ((sqlite3_file*)(((ApndFile*)(p))+1)) 3489 sqlite3_file base; /* IO methods */ 3497 static int apndClose(sqlite3_file*); 3498 static int apndRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 3499 static int apndWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst); 3500 static int apndTruncate(sqlite3_file*, sqlite3_int64 size); 3501 static int apndSync(sqlite3_file*, int flags); 3502 static int apndFileSize(sqlite3_file*, sqlite3_int64 *pSize); 3503 static int apndLock(sqlite3_file*, int); 3504 static int apndUnlock(sqlite3_file*, int); [all …]
|
D | sqlite3.c | 1694 typedef struct sqlite3_file sqlite3_file; typedef 1695 struct sqlite3_file { struct 1796 int (*xClose)(sqlite3_file*); 1797 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1798 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1799 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1800 int (*xSync)(sqlite3_file*, int flags); 1801 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1802 int (*xLock)(sqlite3_file*, int); 1803 int (*xUnlock)(sqlite3_file*, int); [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.h | 670 typedef struct sqlite3_file sqlite3_file; typedef 671 struct sqlite3_file { struct 772 int (*xClose)(sqlite3_file*); 773 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 774 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 775 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 776 int (*xSync)(sqlite3_file*, int flags); 777 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 778 int (*xLock)(sqlite3_file*, int); 779 int (*xUnlock)(sqlite3_file*, int); [all …]
|
D | shell.c | 3479 #define ORIGFILE(p) ((sqlite3_file*)(((ApndFile*)(p))+1)) 3483 sqlite3_file base; /* IO methods */ 3491 static int apndClose(sqlite3_file*); 3492 static int apndRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 3493 static int apndWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst); 3494 static int apndTruncate(sqlite3_file*, sqlite3_int64 size); 3495 static int apndSync(sqlite3_file*, int flags); 3496 static int apndFileSize(sqlite3_file*, sqlite3_int64 *pSize); 3497 static int apndLock(sqlite3_file*, int); 3498 static int apndUnlock(sqlite3_file*, int); [all …]
|
D | sqlite3.c | 1694 typedef struct sqlite3_file sqlite3_file; typedef 1695 struct sqlite3_file { struct 1796 int (*xClose)(sqlite3_file*); 1797 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); 1798 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); 1799 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 1800 int (*xSync)(sqlite3_file*, int flags); 1801 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); 1802 int (*xLock)(sqlite3_file*, int); 1803 int (*xUnlock)(sqlite3_file*, int); [all …]
|