Home
last modified time | relevance | path

Searched refs:factor_entry (Results 1 – 4 of 4) sorted by relevance

/dports/math/z3/z3-z3-4.8.13/src/math/polynomial/
H A Dpolynomial_cache.cpp62 struct factor_entry { struct
68 factor_entry(polynomial const * p, unsigned h): in factor_entry() function
78 bool operator()(factor_entry const * e1, factor_entry const * e2) const { in operator ()()
86 typedef chashtable<factor_entry*, factor_entry::hash_proc, factor_entry::eq_proc> factor_cache;
112 void del_factor_entry(factor_entry * entry) { in del_factor_entry()
115 entry->~factor_entry(); in del_factor_entry()
116 m_allocator.deallocate(sizeof(factor_entry), entry); in del_factor_entry()
182factor_entry * entry = new (m_allocator.allocate(sizeof(factor_entry))) factor_entry(p, h); in factor()
183 factor_entry * old_entry = m_factor_cache.insert_if_not_there(entry); in factor()
185 entry->~factor_entry(); in factor()
[all …]
/dports/math/py-z3-solver/z3-z3-4.8.10/src/math/polynomial/
H A Dpolynomial_cache.cpp62 struct factor_entry { struct
68 factor_entry(polynomial const * p, unsigned h): in factor_entry() function
78 bool operator()(factor_entry const * e1, factor_entry const * e2) const { in operator ()()
86 typedef chashtable<factor_entry*, factor_entry::hash_proc, factor_entry::eq_proc> factor_cache;
112 void del_factor_entry(factor_entry * entry) { in del_factor_entry()
115 entry->~factor_entry(); in del_factor_entry()
116 m_allocator.deallocate(sizeof(factor_entry), entry); in del_factor_entry()
182factor_entry * entry = new (m_allocator.allocate(sizeof(factor_entry))) factor_entry(p, h); in factor()
183 factor_entry * old_entry = m_factor_cache.insert_if_not_there(entry); in factor()
185 entry->~factor_entry(); in factor()
[all …]
/dports/math/pspp/pspp-1.4.1/src/ui/gui/
H A Dpsppire-dialog-action-oneway.c73 ds_put_cstr (&dss, gtk_entry_get_text (GTK_ENTRY (ow->factor_entry))); in generate_syntax()
142 if (0 == strcmp ("", gtk_entry_get_text (GTK_ENTRY (ow->factor_entry)))) in dialog_state_valid()
157 gtk_entry_set_text (GTK_ENTRY (ow->factor_entry), ""); in refresh()
260 act->factor_entry = get_widget_assert (xml, "oneway-anova-entry"); in psppire_dialog_action_oneway_activate()
H A Dpsppire-dialog-action-oneway.h84 GtkWidget *factor_entry; member