Home
last modified time | relevance | path

Searched refs:_bindgen_ty_1 (Results 1 - 25 of 31) sorted by relevance

12

/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dbitfield-enum-basic.rs90 pub const NS_FOO: _bindgen_ty_1 = _bindgen_ty_1(1);
91 pub const NS_BAR: _bindgen_ty_1 = _bindgen_ty_1(2);
92 impl ::std::ops::BitOr<_bindgen_ty_1> for _bindgen_ty_1 {
96 _bindgen_ty_1(self.0 | other.0) in bitor()
99 impl ::std::ops::BitOrAssign for _bindgen_ty_1 {
101 fn bitor_assign(&mut self, rhs: _bindgen_ty_1) { in bitor_assign()
105 impl ::std::ops::BitAnd<_bindgen_ty_1> fo
120 pub struct _bindgen_ty_1(pub ::std::os::raw::c_uint); global() structure names
[all...]
H A Dissue-574-assertion-failure-in-codegen.rs15 pub struct _bindgen_ty_1 { structure names
20 const UNINIT: ::std::mem::MaybeUninit<_bindgen_ty_1> = in bindgen_test_layout__bindgen_ty_1()
24 ::std::mem::size_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
26 concat!("Size of: ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
29 ::std::mem::align_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
31 concat!("Alignment of ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
38 stringify!(_bindgen_ty_1), in bindgen_test_layout__bindgen_ty_1()
45 pub static mut AutoIdVector: _bindgen_ty_1;
H A Dstruct_typedef.rs43 pub struct _bindgen_ty_1 { structure names
48 const UNINIT: ::std::mem::MaybeUninit<_bindgen_ty_1> = in bindgen_test_layout__bindgen_ty_1()
52 ::std::mem::size_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
54 concat!("Size of: ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
57 ::std::mem::align_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
59 concat!("Alignment of ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
66 stringify!(_bindgen_ty_1), in bindgen_test_layout__bindgen_ty_1()
72 impl Default for _bindgen_ty_1 {
81 pub type struct_ptr_t = *mut _bindgen_ty_1;
82 pub type struct_ptr_ptr_t = *mut *mut _bindgen_ty_1;
[all...]
H A Duse-core.rs59 pub union _bindgen_ty_1 {
65 const UNINIT: ::core::mem::MaybeUninit<_bindgen_ty_1> = in bindgen_test_layout__bindgen_ty_1()
69 ::core::mem::size_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
71 concat!("Size of: ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
74 ::core::mem::align_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
76 concat!("Alignment of ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
83 stringify!(_bindgen_ty_1), in bindgen_test_layout__bindgen_ty_1()
93 stringify!(_bindgen_ty_1), in bindgen_test_layout__bindgen_ty_1()
99 impl Default for _bindgen_ty_1 {
109 pub static mut bazz: _bindgen_ty_1;
[all...]
H A Dbitfield_large_overflow.rs11 pub struct _bindgen_ty_1 { structure names
17 ::std::mem::size_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
19 concat!("Size of: ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
22 ::std::mem::align_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
24 concat!("Alignment of ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
28 pub static mut a: _bindgen_ty_1;
H A Danon_enum_allowlist.rs8 pub const NODE_FLAG_FOO: _bindgen_ty_1 = _bindgen_ty_1::NODE_FLAG_FOO;
9 pub const NODE_FLAG_BAR: _bindgen_ty_1 = _bindgen_ty_1::NODE_FLAG_BAR;
12 pub enum _bindgen_ty_1 { enum
H A Dstruct_typedef_ns.rs59 pub struct _bindgen_ty_1 { structure names
64 const UNINIT: ::std::mem::MaybeUninit<_bindgen_ty_1> = in bindgen_test_layout__bindgen_ty_1()
68 ::std::mem::size_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
70 concat!("Size of: ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
73 ::std::mem::align_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
75 concat!("Alignment of ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
84 stringify!(_bindgen_ty_1), in bindgen_test_layout__bindgen_ty_1()
90 pub type typedef_struct = root::_bindgen_mod_id_12::_bindgen_ty_1;
H A Dconst_enum_unnamed.rs8 pub const FOO_BAR: _bindgen_ty_1 = _bindgen_ty_1::FOO_BAR;
9 pub const FOO_BAZ: _bindgen_ty_1 = _bindgen_ty_1::FOO_BAZ;
12 pub enum _bindgen_ty_1 { enum
H A Denum_and_vtable_mangling.rs8 pub const match_: _bindgen_ty_1 = _bindgen_ty_1::match_;
9 pub const whatever_else: _bindgen_ty_1 = _bindgen_ty_1::whatever_else;
12 pub enum _bindgen_ty_1 { enum
H A Denum_explicit_type.rs52 pub const AnonymousVariantOne: _bindgen_ty_1 =
53 _bindgen_ty_1::AnonymousVariantOne;
54 pub const AnonymousVariantTwo: _bindgen_ty_1 =
55 _bindgen_ty_1::AnonymousVariantTwo;
58 pub enum _bindgen_ty_1 { enum
H A Dissue-569-non-type-template-params-causing-layout-test-failures.rs8 pub const ENUM_VARIANT_1: _bindgen_ty_1 = _bindgen_ty_1::ENUM_VARIANT_1;
9 pub const ENUM_VARIANT_2: _bindgen_ty_1 = _bindgen_ty_1::ENUM_VARIANT_2;
12 pub enum _bindgen_ty_1 { enum
H A Dlayout_array_too_long.rs10 pub const IP_LAST_FRAG_IDX: _bindgen_ty_1 = _bindgen_ty_1::IP_LAST_FRAG_IDX;
11 pub const IP_FIRST_FRAG_IDX: _bindgen_ty_1 = _bindgen_ty_1::IP_FIRST_FRAG_IDX;
12 pub const IP_MIN_FRAG_NUM: _bindgen_ty_1 = _bindgen_ty_1::IP_MIN_FRAG_NUM;
13 pub const IP_MAX_FRAG_NUM: _bindgen_ty_1 = _bindgen_ty_1::IP_MAX_FRAG_NUM;
16 pub enum _bindgen_ty_1 { enum
H A Ddisable-nested-struct-naming.rs181 pub struct _bindgen_ty_1 { structure names
243 const UNINIT: ::std::mem::MaybeUninit<_bindgen_ty_1> = in bindgen_test_layout__bindgen_ty_1()
247 ::std::mem::size_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
249 concat!("Size of: ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
252 ::std::mem::align_of::<_bindgen_ty_1>(), in bindgen_test_layout__bindgen_ty_1()
254 concat!("Alignment of ", stringify!(_bindgen_ty_1)) in bindgen_test_layout__bindgen_ty_1()
261 stringify!(_bindgen_ty_1), in bindgen_test_layout__bindgen_ty_1()
268 pub static mut anon1: _bindgen_ty_1;
H A Denum_explicit_type_constants.rs29 pub const AnonymousVariantOne: _bindgen_ty_1 = 0;
30 pub const AnonymousVariantTwo: _bindgen_ty_1 = 1;
31 pub type _bindgen_ty_1 = ::std::os::raw::c_uchar; types
H A Dparsecb-anonymous-enum-variant-rename.rs8 pub const RENAMED_MyVal: _bindgen_ty_1 = 0;
9 pub type _bindgen_ty_1 = ::std::os::raw::c_uint; types
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-9/
H A Dconstant-evaluate.rs8 pub const foo: _bindgen_ty_1 = _bindgen_ty_1::foo;
9 pub const bar: _bindgen_ty_1 = _bindgen_ty_1::bar;
12 pub enum _bindgen_ty_1 { enum
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-5/
H A Dconstant-evaluate.rs8 pub const foo: _bindgen_ty_1 = _bindgen_ty_1::foo;
9 pub const bar: _bindgen_ty_1 = _bindgen_ty_1::bar;
12 pub enum _bindgen_ty_1 { enum
/third_party/rust/crates/linux-raw-sys/src/aarch64/
H A Dgeneral.rs2690 pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP;
2691 pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP;
2692 pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP;
2693 pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP;
2694 pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1
2721 pub enum _bindgen_ty_1 { global() enum
[all...]
/third_party/rust/crates/linux-raw-sys/src/riscv64/
H A Dgeneral.rs2689 pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP;
2690 pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP;
2691 pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP;
2692 pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP;
2693 pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1
2720 pub enum _bindgen_ty_1 { global() enum
[all...]
/third_party/rust/crates/linux-raw-sys/src/riscv32/
H A Dgeneral.rs2669 pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP;
2670 pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP;
2671 pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP;
2672 pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP;
2673 pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1
2700 pub enum _bindgen_ty_1 { global() enum
[all...]
/third_party/rust/crates/linux-raw-sys/src/powerpc64/
H A Dgeneral.rs2805 pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP;
2806 pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP;
2807 pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP;
2808 pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP;
2809 pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1
2836 pub enum _bindgen_ty_1 { global() enum
[all...]
/third_party/rust/crates/linux-raw-sys/src/mips64/
H A Dgeneral.rs2874 pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP;
2875 pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP;
2876 pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP;
2877 pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP;
2878 pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1
2905 pub enum _bindgen_ty_1 { global() enum
[all...]
/third_party/rust/crates/linux-raw-sys/src/powerpc/
H A Dgeneral.rs2827 pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP;
2828 pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP;
2829 pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP;
2830 pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP;
2831 pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1
2858 pub enum _bindgen_ty_1 { global() enum
[all...]
/third_party/rust/crates/linux-raw-sys/src/mips/
H A Dgeneral.rs2938 pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP;
2939 pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP;
2940 pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP;
2941 pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP;
2942 pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1
2969 pub enum _bindgen_ty_1 { global() enum
[all...]
/third_party/rust/crates/linux-raw-sys/src/arm/
H A Dgeneral.rs2773 pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP;
2774 pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP;
2775 pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP;
2776 pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP;
2777 pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1
2804 pub enum _bindgen_ty_1 { global() enum
[all...]

Completed in 100 milliseconds

12