Home
last modified time | relevance | path

Searched refs:class (Results 1 – 25 of 2022) sorted by relevance

12345678910>>...81

/netbsd/src/external/gpl3/gcc/dist/libobjc/
Dinit.c101 void (*_objc_load_callback) (Class class, struct objc_category *category) = 0; /* !T:SAFE */
124 static BOOL class_is_subclass_of_class (Class class, Class superclass);
131 Class class; member
169 static Class class_superclass_of_class (Class class) in class_superclass_of_class() argument
175 if (CLS_ISRESOLV (class)) in class_superclass_of_class()
176 return class->super_class; in class_superclass_of_class()
181 super_class_name = (char *)class->super_class; in class_superclass_of_class()
212 prev->class = bottom_class; in create_tree_of_subclasses_inherited_from()
220 tree->class = superclass; in create_tree_of_subclasses_inherited_from()
236 __objc_tree_insert_class (objc_class_tree *tree, Class class) in __objc_tree_insert_class() argument
[all …]
Dsendmsg.c89 static struct objc_method * search_for_method_in_hierarchy (Class class, SEL sel);
153 __objc_resolve_class_method (Class class, SEL sel) in __objc_resolve_class_method() argument
164 (class->class_pointer->dtable, (size_t) selector_resolveClassMethod->sel_id); in __objc_resolve_class_method()
166 if (resolveMethodIMP && resolveMethodIMP ((id)class, selector_resolveClassMethod, sel)) in __objc_resolve_class_method()
174 return sarray_get_safe (class->class_pointer->dtable, (size_t) sel->sel_id); in __objc_resolve_class_method()
192 __objc_resolve_instance_method (Class class, SEL sel) in __objc_resolve_instance_method() argument
199 resolveMethodIMP = sarray_get_safe (class->class_pointer->dtable, in __objc_resolve_instance_method()
204 if (class->class_pointer->dtable == __objc_uninstalled_dtable) in __objc_resolve_instance_method()
207 if (class->class_pointer->dtable == __objc_uninstalled_dtable) in __objc_resolve_instance_method()
208 __objc_install_dtable_for_class (class->class_pointer); in __objc_resolve_instance_method()
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dcfgloop.h49 class GTY ((chain_next ("%h.next"))) nb_iter_bound {
69 class nb_iter_bound *next;
95 typedef class loop *loop_p;
117 class GTY ((chain_next ("%h.next"))) loop {
145 class loop *inner;
148 class loop *next;
259 class nb_iter_bound *bounds;
268 class niter_desc *simple_loop_desc;
284 loop_constraint_set (class loop *loop, unsigned c) in loop_constraint_set()
291 loop_constraint_clear (class loop *loop, unsigned c) in loop_constraint_clear()
[all …]
Dtree-ssa-loop-niter.h24 extern tree simplify_using_initial_conditions (class loop *, tree);
25 extern bool loop_only_exit_p (const class loop *, basic_block *body,
27 extern bool number_of_iterations_exit (class loop *, edge,
28 class tree_niter_desc *niter, bool,
31 extern bool number_of_iterations_exit_assumptions (class loop *, edge,
32 class tree_niter_desc *,
35 extern tree find_loop_niter (class loop *, edge *);
36 extern bool finite_loop_p (class loop *);
37 extern tree loop_niter_by_eval (class loop *, edge);
38 extern tree find_loop_niter_by_eval (class loop *, edge *);
[all …]
Dcfgloopmanip.h38 extern void place_new_loop (struct function *, class loop *);
39 extern void add_loop (class loop *, class loop *);
40 extern void scale_loop_frequencies (class loop *, profile_probability);
41 extern void scale_loop_profile (class loop *, profile_probability, gcov_type);
43 extern class loop *create_empty_loop_on_edge (edge, tree, tree, tree, tree,
44 tree *, tree *, class loop *);
45 extern void unloop (class loop *, bool *, bitmap);
46 extern void copy_loop_info (class loop *loop, class loop *target);
47 extern class loop * duplicate_loop (class loop *, class loop *,
48 class loop * = NULL);
[all …]
Dtree-ssa-loop-manip.h23 typedef void (*transform_callback)(class loop *, void *);
25 extern void create_iv (tree, tree, tree, class loop *, gimple_stmt_iterator *,
28 class loop *);
30 extern void rewrite_virtuals_into_loop_closed_ssa (class loop *);
31 extern void verify_loop_closed_ssa (bool, class loop * = NULL);
34 checking_verify_loop_closed_ssa (bool verify_ssa_p, class loop *loop = NULL)
41 extern basic_block ip_end_pos (class loop *);
42 extern basic_block ip_normal_pos (class loop *);
43 extern void standard_iv_increment_position (class loop *,
46 gimple_duplicate_loop_body_to_header_edge (class loop *, edge, unsigned int,
[all …]
Dfibonacci_heap.h45 template<class K, class V>
46 class fibonacci_heap;
50 template<class K, class V>
51 class fibonacci_node
54 friend class fibonacci_heap<K,V>;
141 template<class K, class V>
142 class fibonacci_heap
145 friend class fibonacci_node<K,V>;
290 template<class K, class V>
316 template<class K, class V>
[all …]
Dtree-scalar-evolution.h24 extern tree number_of_latch_executions (class loop *);
25 extern gcond *get_loop_exit_condition (const class loop *);
32 extern tree analyze_scalar_evolution (class loop *, tree);
33 extern tree instantiate_scev (edge, class loop *, tree);
34 extern tree resolve_mixers (class loop *, tree, bool *);
36 extern bool final_value_replacement_loop (class loop *);
39 extern bool simple_iv_with_niters (class loop *, class loop *, tree,
41 extern bool simple_iv (class loop *, class loop *, tree, struct affine_iv *,
43 extern bool iv_can_overflow_p (class loop *, tree, tree, tree);
44 extern tree compute_overall_effect_of_inner_loop (class loop *, tree);
[all …]
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/backward/
Dhashtable.h73 template<class _Val> in _GLIBCXX_VISIBILITY()
80 template<class _Val, class _Key, class _HashFcn, class _ExtractKey, in _GLIBCXX_VISIBILITY()
81 class _EqualKey, class _Alloc = std::allocator<_Val> > in _GLIBCXX_VISIBILITY()
82 class hashtable; in _GLIBCXX_VISIBILITY()
84 template<class _Val, class _Key, class _HashFcn, in _GLIBCXX_VISIBILITY()
85 class _ExtractKey, class _EqualKey, class _Alloc> in _GLIBCXX_VISIBILITY()
88 template<class _Val, class _Key, class _HashFcn, in _GLIBCXX_VISIBILITY()
89 class _ExtractKey, class _EqualKey, class _Alloc> in _GLIBCXX_VISIBILITY()
92 template<class _Val, class _Key, class _HashFcn, in _GLIBCXX_VISIBILITY()
93 class _ExtractKey, class _EqualKey, class _Alloc> in _GLIBCXX_VISIBILITY()
[all …]
Dhash_map81 template<class _Key, class _Tp, class _HashFn = hash<_Key>,
82 class _EqualKey = equal_to<_Key>, class _Alloc = allocator<_Tp> >
83 class hash_map
138 template<class _InputIterator>
143 template<class _InputIterator>
148 template<class _InputIterator>
154 template<class _InputIterator>
177 template<class _K1, class _T1, class _HF, class _EqK, class _Al>
202 template<class _InputIterator>
268 template<class _Key, class _Tp, class _HashFn, class _EqlKey, class _Alloc>
[all …]
Dhash_set81 template<class _Value, class _HashFcn = hash<_Value>,
82 class _EqualKey = equal_to<_Value>,
83 class _Alloc = allocator<_Value> >
84 class hash_set
142 template<class _InputIterator>
147 template<class _InputIterator>
152 template<class _InputIterator>
158 template<class _InputIterator>
181 template<class _Val, class _HF, class _EqK, class _Al>
201 template<class _InputIterator>
[all …]
/netbsd/src/sys/kern/
Dsubr_psref.c159 struct psref_class *class; in psref_class_create() local
163 class = kmem_alloc(sizeof(*class), KM_SLEEP); in psref_class_create()
164 class->prc_percpu = percpu_alloc(sizeof(struct psref_cpu)); in psref_class_create()
165 mutex_init(&class->prc_lock, MUTEX_DEFAULT, ipl); in psref_class_create()
166 cv_init(&class->prc_cv, name); in psref_class_create()
167 class->prc_iplcookie = makeiplcookie(ipl); in psref_class_create()
168 class->prc_xc_flags = XC_HIGHPRI_IPL(ipl); in psref_class_create()
170 return class; in psref_class_create()
201 psref_class_destroy(struct psref_class *class) in psref_class_destroy() argument
204 KASSERT(psref_class_drained_p(class)); in psref_class_destroy()
[all …]
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
Dlocalefwd.h55 class locale; in _GLIBCXX_VISIBILITY()
127 class ctype; in _GLIBCXX_VISIBILITY()
128 template<> class ctype<char>; in _GLIBCXX_VISIBILITY()
130 template<> class ctype<wchar_t>; in _GLIBCXX_VISIBILITY()
133 class ctype_byname; in _GLIBCXX_VISIBILITY()
136 class codecvt_base; in _GLIBCXX_VISIBILITY()
138 class codecvt; in _GLIBCXX_VISIBILITY()
139 template<> class codecvt<char, char, mbstate_t>; in _GLIBCXX_VISIBILITY()
141 template<> class codecvt<wchar_t, char, mbstate_t>; in _GLIBCXX_VISIBILITY()
144 template<> class codecvt<char16_t, char, mbstate_t>; in _GLIBCXX_VISIBILITY()
[all …]
Dboost_concept_check.h60 class _Safe_iterator;
75 template <class _Concept> in _GLIBCXX_VISIBILITY()
122 template <class _Tp1, class _Tp2> in _GLIBCXX_VISIBILITY()
125 template <class _Tp> in _GLIBCXX_VISIBILITY()
128 template <class _Tp1, class _Tp2> in _GLIBCXX_VISIBILITY()
136 template <class _Tp> in _GLIBCXX_VISIBILITY()
152 template <class _Tp> in _GLIBCXX_VISIBILITY()
163 template <class _Tp> in _GLIBCXX_VISIBILITY()
181 template <class _Tp> in _GLIBCXX_VISIBILITY()
189 template <class _Tp> in _GLIBCXX_VISIBILITY()
[all …]
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
Dunordered_map.h38 template<class _Key, class _Tp, in _GLIBCXX_VISIBILITY()
39 class _Hash = hash<_Key>, in _GLIBCXX_VISIBILITY()
40 class _Pred = std::equal_to<_Key>, in _GLIBCXX_VISIBILITY()
41 class _Alloc = std::allocator<std::pair<const _Key, _Tp> >, in _GLIBCXX_VISIBILITY()
43 class __unordered_map in _GLIBCXX_VISIBILITY()
87 template<class _Key, class _Tp, in _GLIBCXX_VISIBILITY()
88 class _Hash = hash<_Key>, in _GLIBCXX_VISIBILITY()
89 class _Pred = std::equal_to<_Key>, in _GLIBCXX_VISIBILITY()
90 class _Alloc = std::allocator<std::pair<const _Key, _Tp> >, in _GLIBCXX_VISIBILITY()
92 class __unordered_multimap in _GLIBCXX_VISIBILITY()
[all …]
Dunordered_set.h38 template<class _Value, in _GLIBCXX_VISIBILITY()
39 class _Hash = hash<_Value>, in _GLIBCXX_VISIBILITY()
40 class _Pred = std::equal_to<_Value>, in _GLIBCXX_VISIBILITY()
41 class _Alloc = std::allocator<_Value>, in _GLIBCXX_VISIBILITY()
43 class __unordered_set in _GLIBCXX_VISIBILITY()
87 template<class _Value, in _GLIBCXX_VISIBILITY()
88 class _Hash = hash<_Value>, in _GLIBCXX_VISIBILITY()
89 class _Pred = std::equal_to<_Value>, in _GLIBCXX_VISIBILITY()
90 class _Alloc = std::allocator<_Value>, in _GLIBCXX_VISIBILITY()
92 class __unordered_multiset in _GLIBCXX_VISIBILITY()
[all …]
/netbsd/src/external/ibm-public/postfix/dist/src/global/
Dresolve_clnt.ref1 class resolve
8 class resolve
15 class resolve
22 class resolve
29 class resolve
36 class resolve
43 class resolve
50 class resolve
57 class resolve
64 class resolve
[all …]
/netbsd/src/external/cddl/osnet/dist/uts/common/fs/zfs/
Dddt.c61 ddt_object_create(ddt_t *ddt, enum ddt_type type, enum ddt_class class, in ddt_object_create() argument
66 uint64_t *objectp = &ddt->ddt_object[type][class]; in ddt_object_create()
71 ddt_object_name(ddt, type, class, name); in ddt_object_create()
82 &ddt->ddt_histogram[type][class], tx) == 0); in ddt_object_create()
86 ddt_object_destroy(ddt_t *ddt, enum ddt_type type, enum ddt_class class, in ddt_object_destroy() argument
91 uint64_t *objectp = &ddt->ddt_object[type][class]; in ddt_object_destroy()
95 ddt_object_name(ddt, type, class, name); in ddt_object_destroy()
98 VERIFY(ddt_object_count(ddt, type, class, &count) == 0 && count == 0); in ddt_object_destroy()
99 ASSERT(ddt_histogram_empty(&ddt->ddt_histogram[type][class])); in ddt_object_destroy()
103 bzero(&ddt->ddt_object_stats[type][class], sizeof (ddt_object_t)); in ddt_object_destroy()
[all …]
/netbsd/src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/
Dwpagui.ui2 <class>WpaGui</class>
3 <widget class="QMainWindow" name="WpaGui" >
19 <widget class="QWidget" name="widget" >
20 <layout class="QGridLayout" >
22 <widget class="QLabel" name="adapterLabel" >
29 <widget class="QComboBox" name="adapterSelect" />
32 <widget class="QLabel" name="networkLabel" >
39 <widget class="QComboBox" name="networkSelect" />
42 <widget class="QTabWidget" name="wpaguiTab" >
46 <widget class="QWidget" name="statusTab" >
[all …]
Dnetworkconfig.ui2 <class>NetworkConfig</class>
3 <widget class="QDialog" name="NetworkConfig" >
15 <layout class="QGridLayout" >
17 <widget class="QPushButton" name="cancelButton" >
24 <widget class="QFrame" name="frame9" >
31 <layout class="QGridLayout" >
33 <widget class="QLabel" name="ssidLabel" >
40 <widget class="QLineEdit" name="ssidEdit" >
50 <widget class="QLabel" name="authLabel" >
57 <widget class="QComboBox" name="authSelect" >
[all …]
/netbsd/src/usr.sbin/altq/altqd/altq.conf.samples/
Dcbq.widecamp6 class cbq sr0 root NULL priority 0 pbandwidth 100
10 class cbq sr0 ctl_class root priority 3 pbandwidth 4 maxburst 4 control
11 class cbq sr0 def_class root borrow priority 2 pbandwidth 60 default
13 class cbq sr0 bulk def_class borrow priority 0 pbandwidth 20
14 class cbq sr0 misc def_class borrow priority 0 pbandwidth 12
15 class cbq sr0 intr def_class borrow priority 0 pbandwidth 24
24 class cbq sr0 tcp bulk borrow priority 3 pbandwidth 4 maxburst 8 red
26 class cbq sr0 ftp bulk borrow priority 3 pbandwidth 4 maxburst 8 red
29 class cbq sr0 http bulk borrow priority 3 pbandwidth 4 maxburst 8 red
36 class cbq sr0 pop3 bulk borrow priority 3 pbandwidth 4 maxburst 8 red
[all …]
Dcbq.sample05 class cbq sr0 root NULL pbandwidth 100
9 class cbq sr0 ctl_class root pbandwidth 4 control
10 class cbq sr0 def_class root borrow pbandwidth 95 default
12 class cbq sr0 bulk def_class borrow pbandwidth 30
13 class cbq sr0 misc def_class borrow pbandwidth 30
14 class cbq sr0 intr def_class borrow pbandwidth 30
23 class cbq sr0 tcp bulk borrow pbandwidth 5 red
25 class cbq sr0 ftp bulk borrow pbandwidth 5 red
28 class cbq sr0 http bulk borrow pbandwidth 5 red
31 class cbq sr0 pop3 bulk borrow pbandwidth 5 red
[all …]
/netbsd/src/external/bsd/ntp/dist/html/scripts/
Dmiscopt.txt2 <li class='inline'><a href='miscopt.html#broadcastdelay'>broadcastdelay - specify broadcast delay</…
3 <li class='inline'><a href='miscopt.html#driftfile'>driftfile - specify frequency file</a></li>\
4 <li class='inline'><a href='miscopt.html#enable'>enable - enable options</a></li>\
5 <li class='inline'><a href='miscopt.html#enable'>disable - disable options</a></li>\
6 <li class='inline'><a href='miscopt.html#includefile'>includefile - specify include file</a></li>\
7 <li class='inline'><a href='miscopt.html#interface'>interface - specify which local network address…
8 <li class='inline'><a href='miscopt.html#leapfile'>leapfile - specify leapseconds file</a></li>\
9 <li class='inline'><a href='miscopt.html#logconfig'>logconfig - configure log file</a></li>\
10 <li class='inline'><a href='miscopt.html#mru'>mru - control monitor MRU list limits</a></li>\
11 <li class='inline'><a href='miscopt.html#phone'>phone - specify modem phone numbers</a></li>\
[all …]
Dspecial.txt2 <li class='inline'><a href='warp.html'>How NTP Works</a></li>\
3 <li class='inline'><a href='prefer.html'>Mitigation Rules and the <tt>prefer</tt> Keyword</a></li>\
4 <li class='inline'><a href='autokey.html'>Autokey Public-Key Authentication</a></li>\
5 <li class='inline'><a href='orphan.html'>Orphan Mode</a></li>\
6 <li class='inline'><a href='xleave.html'>NTP Interleaved Modes</a></li>\
7 <li class='inline'><a href='huffpuff.html'>Huff-n'-Puff Filter</a></li>\
8 <li class='inline'><a href='filter.html'>Clock Filter Algorithm</a></li>\
9 <li class='inline'><a href='select.html'>Clock Select Algorithm</a></li>\
10 <li class='inline'><a href='cluster.html'>Clock Cluster Algorithm</a></li>\
11 <li class='inline'><a href='prefer.html'>Mitigation Rules and the <tt>prefer</tt> Keyword</a></li>\
[all …]
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
Dropeimpl.h59 template <class _CharT, class _Alloc> in _GLIBCXX_VISIBILITY()
105 template <class _CharT, class _Alloc> in _GLIBCXX_VISIBILITY()
183 template <class _CharT, class _Alloc> in _GLIBCXX_VISIBILITY()
251 template <class _CharT, class _Alloc> in _GLIBCXX_VISIBILITY()
272 template <class _CharT, class _Alloc> in _GLIBCXX_VISIBILITY()
288 template <class _CharT, class _Alloc> in _GLIBCXX_VISIBILITY()
303 template <class _CharT, class _Alloc> in _GLIBCXX_VISIBILITY()
310 template <class _CharT, class _Alloc> in _GLIBCXX_VISIBILITY()
318 template <class _CharT, class _Alloc> in _GLIBCXX_VISIBILITY()
333 template <class _CharT, class _Alloc> in _GLIBCXX_VISIBILITY()
[all …]

12345678910>>...81