Home
last modified time | relevance | path

Searched full:members (Results 1 – 25 of 1543) sorted by relevance

12345678910>>...62

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/function/
H A Dfunction_base.hpp106 // Type-specific union members
107 mutable function_buffer_members members; member
182 out_buffer.members.obj_ref = in_buffer.members.obj_ref; in manage()
186 out_buffer.members.obj_ref = in_buffer.members.obj_ref; in manage()
187 in_buffer.members.obj_ref.obj_ptr = 0; in manage()
191 out_buffer.members.obj_ref.obj_ptr = 0; in manage()
198 if (*out_buffer.members.type.type == boost::typeindex::type_id<F>() in manage()
199 && (!in_buffer.members.obj_ref.is_const_qualified in manage()
200 || out_buffer.members.type.const_qualified) in manage()
201 && (!in_buffer.members.obj_ref.is_volatile_qualified in manage()
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dstddef.h43 * @MEMBERS: The member declarations for the mirrored structs
49 * struct members.
51 #define struct_group(NAME, MEMBERS...) \ argument
52 __struct_group(/* no tag */, NAME, /* no attrs */, MEMBERS)
59 * @MEMBERS: The member declarations for the mirrored structs
65 * struct members. Includes structure attributes argument.
67 #define struct_group_attr(NAME, ATTRS, MEMBERS...) \ argument
68 __struct_group(/* no tag */, NAME, ATTRS, MEMBERS)
75 * @MEMBERS: The member declarations for the mirrored structs
81 * struct members. Includes struct tag argument for the named copy,
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dsparseset.h31 fixed-size universe. Two vectors are used to store the members of
48 the members in O(N) time, where n is the number of members in the set.
49 The members of the set are stored cache-friendly in the dense vector.
81 over the members in the set is cache-friendly because only the dense
93 SPARSESET_ELT_TYPE members; /* Number of elements. */ member
116 s->members = 0; in sparseset_clear()
125 return s->members; in sparseset_cardinality()
147 return idx < s->members && s->dense[idx] == e; in sparseset_bit_p()
167 sparseset_insert_bit (s, e, s->members++); in sparseset_set_bit()
175 SPARSESET_ELT_TYPE mem = s->members; in sparseset_pop()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dsparseset.h31 fixed-size universe. Two vectors are used to store the members of
48 the members in O(N) time, where n is the number of members in the set.
49 The members of the set are stored cache-friendly in the dense vector.
81 over the members in the set is cache-friendly because only the dense
93 SPARSESET_ELT_TYPE members; /* Number of elements. */ member
116 s->members = 0; in sparseset_clear()
125 return s->members; in sparseset_cardinality()
147 return idx < s->members && s->dense[idx] == e; in sparseset_bit_p()
167 sparseset_insert_bit (s, e, s->members++); in sparseset_set_bit()
175 SPARSESET_ELT_TYPE mem = s->members; in sparseset_pop()
[all …]
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dstddef.h17 * @MEMBERS: The member declarations for the mirrored structs
20 * and size: one anonymous and one named. The former's members can be used
22 * reason about the start, end, and size of the group of struct members.
26 #define __struct_group(TAG, NAME, ATTRS, MEMBERS...) \ argument
28 struct { MEMBERS } ATTRS; \
29 struct TAG { MEMBERS } ATTRS NAME; \
/OK3568_Linux_fs/kernel/net/netfilter/ipset/
H A Dip_set_list_set.c45 struct list_head members; /* the set members */ member
63 list_for_each_entry_rcu(e, &map->members, list) { in list_set_ktest()
82 list_for_each_entry(e, &map->members, list) { in list_set_kadd()
102 list_for_each_entry(e, &map->members, list) { in list_set_kdel()
179 list_for_each_entry_safe(e, n, &map->members, list) in set_cleanup_entries()
193 list_for_each_entry(e, &map->members, list) { in list_set_utest()
206 ret = !list_is_last(&e->list, &map->members) && in list_set_utest()
242 list_for_each_entry(e, &map->members, list) { in list_set_uadd()
276 n = list_empty(&map->members) ? NULL : in list_set_uadd()
277 list_last_entry(&map->members, struct set_elem, list); in list_set_uadd()
[all …]
H A Dip_set_bitmap_ipmac.c45 unsigned long *members; /* the set members */ member
49 size_t memsize; /* members size */
88 if (!test_bit(e->id, map->members)) in bitmap_ipmac_do_test()
102 if (!test_bit(id, map->members)) in bitmap_ipmac_gc_test()
149 if (test_bit(e->id, map->members)) { in bitmap_ipmac_do_add()
155 clear_bit(e->id, map->members); in bitmap_ipmac_do_add()
164 clear_bit(e->id, map->members); in bitmap_ipmac_do_add()
184 return !test_and_clear_bit(e->id, map->members); in bitmap_ipmac_do_del()
302 map->members = bitmap_zalloc(elements, GFP_KERNEL | __GFP_NOWARN); in init_map_ipmac()
303 if (!map->members) in init_map_ipmac()
H A Dip_set_bitmap_port.c33 unsigned long *members; /* the set members */ member
37 size_t memsize; /* members size */
61 return !!test_bit(e->id, map->members); in bitmap_port_do_test()
67 return !!test_bit(id, map->members); in bitmap_port_gc_test()
74 return !!test_bit(e->id, map->members); in bitmap_port_do_add()
81 return !test_and_clear_bit(e->id, map->members); in bitmap_port_do_del()
234 map->members = bitmap_zalloc(map->elements, GFP_KERNEL | __GFP_NOWARN); in init_map_port()
235 if (!map->members) in init_map_port()
H A Dip_set_bitmap_ip.c40 unsigned long *members; /* the set members */ member
45 size_t memsize; /* members size */
70 return !!test_bit(e->id, map->members); in bitmap_ip_do_test()
76 return !!test_bit(id, map->members); in bitmap_ip_gc_test()
83 return !!test_bit(e->id, map->members); in bitmap_ip_do_add()
89 return !test_and_clear_bit(e->id, map->members); in bitmap_ip_do_del()
223 map->members = bitmap_zalloc(elements, GFP_KERNEL | __GFP_NOWARN); in init_map_ip()
224 if (!map->members) in init_map_ip()
H A Dip_set_bitmap_gen.h51 if (test_bit(id, map->members)) in mtype_ext_cleanup()
65 ip_set_free(map->members); in mtype_destroy()
78 bitmap_zero(map->members, map->elements); in mtype_flush()
144 set_bit(e->id, map->members); in mtype_add()
168 set_bit(e->id, map->members); in mtype_add()
222 if (!test_bit(id, map->members) || in mtype_list()
280 clear_bit(id, map->members); in mtype_gc()
/OK3568_Linux_fs/kernel/drivers/isdn/mISDN/
H A Ddsp_cmx.c14 * There is a chain of struct dsp_conf which has one or more members in a chain
34 * Two members will also exchange their data so they are crossconnected.
35 * Three or more members will be added in a conference and will hear each
39 * - Crossconnecting or even conference, if more than two members are together.
40 * - Force mixing of transmit data with other crossconnect/conference members.
135 * by using conference even with two members
503 /* conf gets updated (all members) */ in dsp_cmx_hardware()
509 printk(KERN_ERR "%s: conference without members\n", in dsp_cmx_hardware()
516 /* check all members in our conference */ in dsp_cmx_hardware()
647 /* determine if members are on the same hfc chip */ in dsp_cmx_hardware()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/stabs/
H A DStatic-Members.html15 <title>STABS: Static Members</title>
17 <meta name="description" content="STABS: Static Members">
18 <meta name="keywords" content="STABS: Static Members">
62 <a name="Static-Members"></a>
68 <a name="Static-Members-1"></a>
69 <h3 class="section">8.14 Static Members</h3>
72 data members of the class. If the class has virtual methods, a vtable
H A DVirtual-Base-Classes.html27 <link href="Static-Members.html#Static-Members" rel="next" title="Static Members">
65 Next: <a href="Static-Members.html#Static-Members" accesskey="n" rel="next">Static Members</a>, Pre…
119 Next: <a href="Static-Members.html#Static-Members" accesskey="n" rel="next">Static Members</a>, Pre…
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/stabs/
H A DStatic-Members.html15 <title>STABS: Static Members</title>
17 <meta name="description" content="STABS: Static Members">
18 <meta name="keywords" content="STABS: Static Members">
62 <a name="Static-Members"></a>
68 <a name="Static-Members-1"></a>
69 <h3 class="section">8.14 Static Members</h3>
72 data members of the class. If the class has virtual methods, a vtable
H A DVirtual-Base-Classes.html27 <link href="Static-Members.html#Static-Members" rel="next" title="Static Members">
65 Next: <a href="Static-Members.html#Static-Members" accesskey="n" rel="next">Static Members</a>, Pre…
119 Next: <a href="Static-Members.html#Static-Members" accesskey="n" rel="next">Static Members</a>, Pre…
/OK3568_Linux_fs/external/xserver/record/
H A Dset.h46 create (given a list of members), destroy, see if a particular number
47 is a member of the set, and iterate over the members of a set. Though
54 /* an interval of set members */
85 RecordCreateSet creates and returns a new set having members specified
89 elements between first and last inclusive are members of the new set.
120 RecordIterateSet returns successive intervals of members of _pSet. If
121 _pIter is NULL, the first interval of set members is copied into _interval.
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/man/man1/
H A Darm-none-linux-gnueabihf-ar.1151 the original individual files (called \fImembers\fR of the archive).
157 \&\s-1GNU \s0\fBar\fR can maintain archives whose members have names of any
228 Use this operation to \fImove\fR members in an archive.
230 The ordering of members in an archive can make a difference in how
234 If no modifiers are used with \f(CW\*(C`m\*(C'\fR, any members you name in the
240 \&\fIPrint\fR the specified members of the archive, to the standard
252 operation; new members are always placed at the end of the archive.
269 previously existing members are deleted if their names match those being
273 displays an error message, and leaves undisturbed any existing members
276 By default, new members are added at the end of the file; but you may
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/man/man1/
H A Daarch64-none-linux-gnu-ar.1151 the original individual files (called \fImembers\fR of the archive).
157 \&\s-1GNU \s0\fBar\fR can maintain archives whose members have names of any
228 Use this operation to \fImove\fR members in an archive.
230 The ordering of members in an archive can make a difference in how
234 If no modifiers are used with \f(CW\*(C`m\*(C'\fR, any members you name in the
240 \&\fIPrint\fR the specified members of the archive, to the standard
252 operation; new members are always placed at the end of the archive.
269 previously existing members are deleted if their names match those being
273 displays an error message, and leaves undisturbed any existing members
276 By default, new members are added at the end of the file; but you may
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dlayer_impl.hpp24 * Members that are public in `Layer` are part of the public API for all layers.
25 * Members that are public in `FooLayer` are part of the public API for "foo" layers.
26 * Members that are public in `Layer::Impl` are part of the internal API for all layers.
27 * Members that are public in `FooLayer::Impl` are part of the internal API for "foo" layers.
28 * Members that are private in `FooLayer::Impl` are internal to "foo" layers.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/
H A Dserialization.hpp455 members_holder const& members() const { return m_rtree.m_members; } in members() function in boost::geometry::index::detail::rtree::const_private_view
480 members_holder & members() { return m_rtree.m_members; } in members() function in boost::geometry::index::detail::rtree::private_view
481 members_holder const& members() const { return m_rtree.m_members; } in members() function in boost::geometry::index::detail::rtree::private_view
510 detail::serialization_save(tree.members().parameters(), "parameters", ar); in save()
512 ar << boost::serialization::make_nvp("values_count", tree.members().values_count); in save()
513 ar << boost::serialization::make_nvp("leafs_level", tree.members().leafs_level); in save()
515 if ( tree.members().values_count ) in save()
517 BOOST_GEOMETRY_INDEX_ASSERT(tree.members().root, "root shouldn't be null_ptr"); in save()
520 detail::rtree::apply_visitor(save_v, *tree.members().root); in save()
555 …, version, leafs_level, loaded_values_count, params, tree.members().translator(), tree.members().a… in load()
[all …]
/OK3568_Linux_fs/kernel/net/tipc/
H A Dmonitor.c51 * @up_map: bit map indicating which of the members the sender considers up
52 * @members: identity of the domain members
60 u32 members[MAX_MON_DOMAIN]; member
69 * @applied: number of reported domain members applied on this monitor list
111 return ((void *)&dom->members - (void *)dom) + (mcnt * sizeof(u32)); in dom_rec_len()
179 /* mon_identify_lost_members() : - identify amd mark potentially lost members
226 /* Scan across domain members and match against monitor list */ in mon_apply_domain()
230 addr = dom->members[i]; in mon_apply_domain()
260 diff |= dom->members[i] != peer->addr; in mon_update_local_domain()
261 dom->members[i] = peer->addr; in mon_update_local_domain()
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/contrib/
H A Ddump_cache.py38 parser.add_argument("-m", "--members",
39 …ecify the member, use comma as separator for multiple ones, default: all members", action="store",…
65 if self.args.members:
67 for member in self.args.members.split(','):
/OK3568_Linux_fs/kernel/security/tomoyo/
H A Dgc.c103 * tomoyo_del_transition_control - Delete members in "struct tomoyo_transition_control".
119 * tomoyo_del_aggregator - Delete members in "struct tomoyo_aggregator".
135 * tomoyo_del_manager - Delete members in "struct tomoyo_manager".
150 * tomoyo_del_acl - Delete members in "struct tomoyo_acl_info".
243 * tomoyo_del_domain - Delete members in "struct tomoyo_domain_info".
271 * tomoyo_del_condition - Delete members in "struct tomoyo_condition".
311 * tomoyo_del_name - Delete members in "struct tomoyo_name".
323 * tomoyo_del_path_group - Delete members in "struct tomoyo_path_group".
353 * tomoyo_del_address_group - Delete members in "struct tomoyo_address_group".
365 * tomoyo_del_number_group - Delete members in "struct tomoyo_number_group".
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/glibc/glibc/
H A Dmakedbs.sh43 if (members[mem] == "") \
44 members[mem]=$$3; \
46 members[mem]=members[mem] "," $$3; \
49 END { for (mem in members) \
50 printf ":%s %s %s\n", mem, mem, members[mem]; }' /etc/group | \
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/gdb/
H A Dset-print-static_002dmembers.html18 <title>Debugging with GDB: set print static-members</title>
20 <meta name="description" content="Debugging with GDB: set print static-members">
21 <meta name="keywords" content="Debugging with GDB: set print static-members">
61 … is at <a href="Print-Settings.html#set-print-static_002dmembers">set print static-members</a>.</p>

12345678910>>...62