Home
last modified time | relevance | path

Searched refs:_key_positions (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/gperf/src/
Doptions.cc473 _key_positions () in Options()
543 if (_key_positions.is_useall()) in ~Options()
548 _key_positions.get_size()); in ~Options()
550 PositionIterator iter = _key_positions.iterator(); in ~Options()
829 _key_positions.set_useall(true); in parse_options()
832 _key_positions.set_useall(false); in parse_options()
833 int *key_positions = _key_positions.pointer(); in parse_options()
868 _key_positions.set_size (total_keysig_size); in parse_options()
873 if (! _key_positions.sort()) in parse_options()
Doutput.cc102 _key_positions (positions), _alpha_inc (alpha_inc), in Output()
758 _key_positions.get_size() == 0 in output_hash_function()
761 && _key_positions[0] < _min_key_len in output_hash_function()
762 && _key_positions[_key_positions.get_size() - 1] != Positions::LASTCHAR)) in output_hash_function()
791 if (_key_positions.get_size() > 0) in output_hash_function()
818 if (_key_positions.get_size() == 0) in output_hash_function()
829 PositionIterator iter = _key_positions.iterator(_max_key_len); in output_hash_function()
845 if (_key_positions.get_size() == 2 in output_hash_function()
846 && _key_positions[0] == 0 in output_hash_function()
847 && _key_positions[1] == Positions::LASTCHAR) in output_hash_function()
[all …]
Dsearch.cc268 _key_positions = option.get_key_positions(); in find_positions()
451 _key_positions = current; in find_positions()
457 PositionReverseIterator iter = _key_positions.reviterator(); in find_positions()
493 unsigned int count = count_duplicates_tuple (_key_positions, alpha_unify); in count_duplicates_tuple()
593 unsigned int *alpha_unify = compute_alpha_unify (_key_positions, alpha_inc); in count_duplicates_multiset()
594 init_selchars_multiset (_key_positions, alpha_unify, alpha_inc); in count_duplicates_multiset()
635 PositionIterator iter = _key_positions.iterator(_max_key_len); in find_alpha_inc()
649 PositionIterator iter = _key_positions.iterator(_max_key_len); in find_alpha_inc()
725 _alpha_unify = compute_alpha_unify (_key_positions, _alpha_inc); in find_alpha_inc()
738 init_selchars_multiset(_key_positions, _alpha_unify, _alpha_inc); in prepare_asso_values()
[all …]
Doutput.h139 Positions const _key_positions; variable
Dsearch.h119 Positions _key_positions; variable
Doptions.h283 Positions _key_positions; variable
Dmain.cc109 searcher._key_positions, in main()
Doptions.icc156 return _key_positions;
/freebsd-12-stable/contrib/gperf/
DChangeLog804 * src/search.cc (Search::Search): Don't initialize _key_positions,
814 _key_positions here.
867 * src/options.cc (Options::Options): Initialize _key_positions
884 (Search::_key_positions): New field.
885 * src/search.cc (Search::Search): Initialize _key_positions.
890 (Search::get_max_keysig_size): Use _key_positions instead of
895 (Output::_key_positions): New field.
898 positions at all. Use _key_positions instead of
1461 (Options::get_max_keysig_size): Implement using _key_positions.
1467 _key_positions if it is effectively ignored.