Home
last modified time | relevance | path

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

/external/sqlite/dist/orig/
Dshell.c1560 int nCol = sqlite3_column_count(pStmt); in shell_exec() local
1561 void *pData = sqlite3_malloc64(3*nCol*sizeof(const char*) + 1); in shell_exec()
1566 char **azVals = &azCols[nCol]; /* Results */ in shell_exec()
1567 int *aiTypes = (int *)&azVals[nCol]; /* Result types */ in shell_exec()
1571 for(i=0; i<nCol; i++){ in shell_exec()
1576 for(i=0; i<nCol; i++){ in shell_exec()
1592 if( xCallback(pArg, nCol, azVals, azCols, aiTypes) ){ in shell_exec()
2971 int nCol; /* Number of columns in the table */ in do_meta_command() local
3087 nCol = sqlite3_column_count(pStmt); in do_meta_command()
3090 if( nCol==0 ) return 0; /* no columns, no error */ in do_meta_command()
[all …]
Dsqlite3.c12195 i16 nCol; /* Number of columns in this table */ member
12287 int nCol; /* Number of columns in this key */ member
66081 int nCol = pIdx->nColumn; /* Number of index columns including rowid */
66083 nByte = sizeof(Mem) * nCol + ROUND8(sizeof(UnpackedRecord));
66088 assert( pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField==nCol );
66091 for(i=0; i<nCol; i++){
66622 int nCol = pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField;
66625 for(i=0; i<nCol; i++){
79809 for(iCol=0; iCol<pTab->nCol; iCol++) {
79814 if( iCol==pTab->nCol ){
[all …]
/external/sqlite/dist/
Dshell.c1566 int nCol = sqlite3_column_count(pStmt); in shell_exec() local
1567 void *pData = sqlite3_malloc64(3*nCol*sizeof(const char*) + 1); in shell_exec()
1572 char **azVals = &azCols[nCol]; /* Results */ in shell_exec()
1573 int *aiTypes = (int *)&azVals[nCol]; /* Result types */ in shell_exec()
1577 for(i=0; i<nCol; i++){ in shell_exec()
1582 for(i=0; i<nCol; i++){ in shell_exec()
1598 if( xCallback(pArg, nCol, azVals, azCols, aiTypes) ){ in shell_exec()
2993 int nCol; /* Number of columns in the table */ in do_meta_command() local
3109 nCol = sqlite3_column_count(pStmt); in do_meta_command()
3112 if( nCol==0 ) return 0; /* no columns, no error */ in do_meta_command()
[all …]
Dsqlite3.c12195 i16 nCol; /* Number of columns in this table */ member
12287 int nCol; /* Number of columns in this key */ member
66099 int nCol = pIdx->nColumn; /* Number of index columns including rowid */
66101 nByte = sizeof(Mem) * nCol + ROUND8(sizeof(UnpackedRecord));
66106 assert( pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField==nCol );
66109 for(i=0; i<nCol; i++){
66640 int nCol = pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField;
66643 for(i=0; i<nCol; i++){
79827 for(iCol=0; iCol<pTab->nCol; iCol++) {
79832 if( iCol==pTab->nCol ){
[all …]
/external/pdfium/xfa/src/fxjse/src/
Dcontext.cpp129 int32_t& nCol) { in FXJSE_ReturnValue_GetLineInfo() argument
142 nCol = hValue.As<v8::Object>()->Get(5)->ToInt32()->Value(); in FXJSE_ReturnValue_GetLineInfo()
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DBigMatrixImpl.java1156 final int nCol = this.getColumnDimension(); in solve() local
1170 for (int col = 0; col < nCol; col++) { in solve()
1171 for (int i = col + 1; i < nCol; i++) { in solve()
1181 for (int col = nCol - 1; col >= 0; col--) { in solve()
/external/pdfium/xfa/include/fxjse/
Dfxjse.h174 int32_t& nCol);