Home
last modified time | relevance | path

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

/external/llvm/test/Transforms/IndVarSimplify/
Dsingle-element-range.ll6 define void @sqlite3_free_table(i8** %azResult) nounwind {
/external/sqlite/dist/orig/
Dshell.c3706 char **azResult; in do_meta_command() local
3743 azResult = 0; in do_meta_command()
3753 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2); in do_meta_command()
3759 azResult = azNew; in do_meta_command()
3761 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0)); in do_meta_command()
3762 if( azResult[nRow] ) nRow++; in do_meta_command()
3770 len = strlen30(azResult[i]); in do_meta_command()
3779 fprintf(p->out, "%s%-*s", zSp, maxlen, azResult[j] ? azResult[j]:""); in do_meta_command()
3784 for(ii=0; ii<nRow; ii++) sqlite3_free(azResult[ii]); in do_meta_command()
3785 sqlite3_free(azResult); in do_meta_command()
Dsqlite3.c112105 char **azResult; /* Accumulated output */
112136 azNew = sqlite3_realloc64( p->azResult, sizeof(char*)*p->nAlloc );
112138 p->azResult = azNew;
112149 p->azResult[p->nData++] = z;
112172 p->azResult[p->nData++] = z;
112217 res.azResult = sqlite3_malloc64(sizeof(char*)*res.nAlloc );
112218 if( res.azResult==0 ){
112222 res.azResult[0] = 0;
112224 assert( sizeof(res.azResult[0])>= sizeof(res.nData) );
112225 res.azResult[0] = SQLITE_INT_TO_PTR(res.nData);
[all …]
/external/sqlite/dist/
Dshell.c3728 char **azResult; in do_meta_command() local
3765 azResult = 0; in do_meta_command()
3775 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2); in do_meta_command()
3781 azResult = azNew; in do_meta_command()
3783 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0)); in do_meta_command()
3784 if( azResult[nRow] ) nRow++; in do_meta_command()
3792 len = strlen30(azResult[i]); in do_meta_command()
3801 fprintf(p->out, "%s%-*s", zSp, maxlen, azResult[j] ? azResult[j]:""); in do_meta_command()
3806 for(ii=0; ii<nRow; ii++) sqlite3_free(azResult[ii]); in do_meta_command()
3807 sqlite3_free(azResult); in do_meta_command()
Dsqlite3.c112123 char **azResult; /* Accumulated output */
112154 azNew = sqlite3_realloc64( p->azResult, sizeof(char*)*p->nAlloc );
112156 p->azResult = azNew;
112167 p->azResult[p->nData++] = z;
112190 p->azResult[p->nData++] = z;
112235 res.azResult = sqlite3_malloc64(sizeof(char*)*res.nAlloc );
112236 if( res.azResult==0 ){
112240 res.azResult[0] = 0;
112242 assert( sizeof(res.azResult[0])>= sizeof(res.nData) );
112243 res.azResult[0] = SQLITE_INT_TO_PTR(res.nData);
[all …]