Home
last modified time | relevance | path

Searched refs:azResult (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/IndVarSimplify/
Dsingle-element-range.ll6 define void @sqlite3_free_table(i8** %azResult) nounwind {
/external/swiftshader/third_party/LLVM/test/Transforms/IndVarSimplify/
Dsingle-element-range.ll6 define void @sqlite3_free_table(i8** %azResult) nounwind {
/external/llvm/test/Transforms/IndVarSimplify/
Dsingle-element-range.ll6 define void @sqlite3_free_table(i8** %azResult) nounwind {
/external/sqlite/dist/orig/
Dshell.c14065 char **azResult; in do_meta_command() local
14113 azResult = 0; in do_meta_command()
14123 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2); in do_meta_command()
14129 azResult = azNew; in do_meta_command()
14131 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0)); in do_meta_command()
14132 if( 0==azResult[nRow] ){ in do_meta_command()
14148 len = strlen30(azResult[i]); in do_meta_command()
14158 azResult[j] ? azResult[j]:""); in do_meta_command()
14164 for(ii=0; ii<nRow; ii++) sqlite3_free(azResult[ii]); in do_meta_command()
14165 sqlite3_free(azResult); in do_meta_command()
Dsqlite3.c124765 char **azResult; /* Accumulated output */
124796 azNew = sqlite3_realloc64( p->azResult, sizeof(char*)*p->nAlloc );
124798 p->azResult = azNew;
124809 p->azResult[p->nData++] = z;
124832 p->azResult[p->nData++] = z;
124877 res.azResult = sqlite3_malloc64(sizeof(char*)*res.nAlloc );
124878 if( res.azResult==0 ){
124882 res.azResult[0] = 0;
124884 assert( sizeof(res.azResult[0])>= sizeof(res.nData) );
124885 res.azResult[0] = SQLITE_INT_TO_PTR(res.nData);
[all …]
/external/sqlite/dist/
Dshell.c14088 char **azResult; in do_meta_command() local
14136 azResult = 0; in do_meta_command()
14146 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2); in do_meta_command()
14152 azResult = azNew; in do_meta_command()
14154 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0)); in do_meta_command()
14155 if( 0==azResult[nRow] ){ in do_meta_command()
14171 len = strlen30(azResult[i]); in do_meta_command()
14181 azResult[j] ? azResult[j]:""); in do_meta_command()
14187 for(ii=0; ii<nRow; ii++) sqlite3_free(azResult[ii]); in do_meta_command()
14188 sqlite3_free(azResult); in do_meta_command()
Dsqlite3.c124781 char **azResult; /* Accumulated output */
124812 azNew = sqlite3_realloc64( p->azResult, sizeof(char*)*p->nAlloc );
124814 p->azResult = azNew;
124825 p->azResult[p->nData++] = z;
124848 p->azResult[p->nData++] = z;
124893 res.azResult = sqlite3_malloc64(sizeof(char*)*res.nAlloc );
124894 if( res.azResult==0 ){
124898 res.azResult[0] = 0;
124900 assert( sizeof(res.azResult[0])>= sizeof(res.nData) );
124901 res.azResult[0] = SQLITE_INT_TO_PTR(res.nData);
[all …]