Lines Matching refs:current_entry

534 	readstat_schema_entry_t current_entry;  in readstat_parse_stata_dictionary()  local
646 memset(&current_entry, 0, sizeof(readstat_schema_entry_t)); in readstat_parse_stata_dictionary()
647 current_entry.decimal_separator = '.'; in readstat_parse_stata_dictionary()
648 current_entry.variable.type = READSTAT_TYPE_DOUBLE; in readstat_parse_stata_dictionary()
649 current_entry.variable.index = total_entry_count; in readstat_parse_stata_dictionary()
660 current_entry.row = current_row; in readstat_parse_stata_dictionary()
661 current_entry.col = current_col; in readstat_parse_stata_dictionary()
662 current_col += current_entry.len; in readstat_parse_stata_dictionary()
665 current_entry.variable.index_after_skipping = partial_entry_count; in readstat_parse_stata_dictionary()
666 …cb_return_value = parser->handlers.variable(total_entry_count, &current_entry.variable, NULL, user… in readstat_parse_stata_dictionary()
673 current_entry.skip = 1; in readstat_parse_stata_dictionary()
678 … memcpy(&schema->entries[schema->entry_count++], &current_entry, sizeof(readstat_schema_entry_t)); in readstat_parse_stata_dictionary()
701 readstat_copy(current_entry.variable.name, sizeof(current_entry.variable.name), in readstat_parse_stata_dictionary()
713 readstat_copy(current_entry.variable.label, sizeof(current_entry.variable.label), in readstat_parse_stata_dictionary()
850 current_entry.variable.type = READSTAT_TYPE_INT8; } in readstat_parse_stata_dictionary()
859 current_entry.variable.type = READSTAT_TYPE_INT16; } in readstat_parse_stata_dictionary()
868 current_entry.variable.type = READSTAT_TYPE_INT32; } in readstat_parse_stata_dictionary()
877 current_entry.variable.type = READSTAT_TYPE_FLOAT; } in readstat_parse_stata_dictionary()
886 current_entry.variable.type = READSTAT_TYPE_DOUBLE; } in readstat_parse_stata_dictionary()
895 current_entry.variable.type = READSTAT_TYPE_STRING; in readstat_parse_stata_dictionary()
896 current_entry.variable.storage_width = integer; } in readstat_parse_stata_dictionary()
905 current_entry.len = integer; } in readstat_parse_stata_dictionary()
914 current_entry.decimal_separator = ','; } in readstat_parse_stata_dictionary()