static void goto_actions(void) { int i, j, k; state_count = NEW2(nstates, Value_t); k = default_goto(start_symbol + 1); start_int_table("dgoto", k); save_column(start_symbol + 1, k); j = 10; for (i = start_symbol + 2; i < nsyms; i++) { if (j >= 10) { output_newline(); j = 1; } else ++j; k = default_goto(i); output_int(k); save_column(i, k); } end_table(); FREE(state_count); }
void goto_actions() { register int i, j, k; state_count = NEW2(nstates, Yshort); k = default_goto(start_symbol + 1); if (!rflag) fprintf(output_file, "static "); fprintf(output_file, "int yydgoto[] = {%40d,", k); save_column(start_symbol + 1, k); j = 10; for (i = start_symbol + 2; i < nsyms; i++) { if (j >= 10) { if (!rflag) ++outline; putc('\n', output_file); j = 1; } else ++j; k = default_goto(i); fprintf(output_file, "%5d,", k); save_column(i, k); } if (!rflag) outline += 2; fprintf(output_file, "\n};\n"); FREE(state_count); }
/***********************************************************************//** * @brief Save table column into FITS file * * Refer to GFitsTableCol::save_column() for more information. ***************************************************************************/ void GFitsTableCol::save(void) { // Save column save_column(); // Return return; }
/***********************************************************************//** * @brief Save table column into FITS file * * The table column is only saved if it is linked to a FITS file and if the * data are indeed present in the class instance. This avoids saving of data * that have not been modified. * * Refer to GFitsTableCol::save_column() for more information. ***************************************************************************/ void GFitsTableBoolCol::save(void) { // Free buffer free_buffer(); // Allocate buffer alloc_buffer(); // Transfer string into buffer for (int i = 0; i < m_size; ++i) { m_buffer[i] = (char)m_data[i]; } // Save column save_column(); // Free buffer free_buffer(); // Return return; }