Searched refs:numcols (Results 1 – 8 of 8) sorted by relevance
18 int numcols = (int)(output_cols - input_cols); in expand_right_edge() local20 if (numcols > 0) { in expand_right_edge()24 for (count = numcols; count > 0; count--) in expand_right_edge()
261 int i, numcols; in _pysqlite_fetch_one_row() local277 numcols = sqlite3_data_count(self->statement->st); in _pysqlite_fetch_one_row() local280 row = PyTuple_New(numcols); in _pysqlite_fetch_one_row()285 for (i = 0; i < numcols; i++) { in _pysqlite_fetch_one_row()428 int numcols; in _pysqlite_query_execute() local566 numcols = sqlite3_column_count(self->statement->st); in _pysqlite_query_execute() local568 if (self->description == Py_None && numcols > 0) { in _pysqlite_query_execute()569 Py_SETREF(self->description, PyTuple_New(numcols)); in _pysqlite_query_execute()573 for (i = 0; i < numcols; i++) { in _pysqlite_query_execute()
101 int numcols = (int)(output_cols - input_cols); in expand_right_edge() local103 if (numcols > 0) { in expand_right_edge()107 for (count = numcols; count > 0; count--) in expand_right_edge()