Lines Matching refs:size_triple_t
46 struct size_triple_t struct
49 size_triple_t() : k(0), m(0), n(0) {} in size_triple_t() argument
50 size_triple_t(size_t _k, size_t _m, size_t _n) : k(_k), m(_m), n(_n) {} in size_triple_t() function
51 size_triple_t(const size_triple_t& o) : k(o.k), m(o.m), n(o.n) {} in size_triple_t() function
52 size_triple_t(uint16_t compact) in size_triple_t() function
61 ostream& operator<<(ostream& s, const size_triple_t& t) in operator <<() argument
70 size_triple_t nonpot_block_size;
139 if (only_cubic_sizes && !size_triple_t(product_size).is_cubic()) { in inputfile_t()
167 if (only_cubic_sizes && !size_triple_t(product_size).is_cubic()) { in inputfile_t()
173 entry.nonpot_block_size = size_triple_t(bk, bm, bn); in inputfile_t()
344 size_triple_t min_product_size(first_file.entries.front().product_size); in dump_table_for_subset()
345 size_triple_t max_product_size(first_file.entries.back().product_size); in dump_table_for_subset()
672 size_triple_t default_block_size;
681 << "Product size " << size_triple_t(entry.product_size) in operator <<()
685 << " of best POT block size " << size_triple_t(entry.best_pot_block_size) in operator <<()
756 size_triple_t t(product_size); in run()