Home
last modified time | relevance | path

Searched refs:struct (Results 1 – 25 of 1310) sorted by relevance

12345678910>>...53

/openbsd-src/gnu/gcc/libstdc++-v3/include/tr1/
H A Dtype_traits46 struct __sfinae_types
49 typedef struct { char __arr[2]; } __two;
53 struct __in_array
71 struct _Spec \
76 struct _Spec \
81 struct _Spec \
92 struct integral_constant
106 struct is_void
111 struct is_integral
130 struct is_floating_point
[all …]
H A Dtuple48 struct _NullClass { };
52 struct tuple_element;
56 struct tuple_size;
60 struct __add_c_ref
64 struct __add_c_ref<_Tp&>
69 struct __add_ref
73 struct __add_ref<_Tp&>
78 struct __get_helper;
85 struct __tuple_compare;
89 struct __strip_reference_wrapper
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/
H A DMeta.pm220 my ($class, $struct, $options) = @_;
225 my $cmc = CPAN::Meta::Converter->new( $struct );
231 my $cmv = CPAN::Meta::Validator->new( $struct );
239 my $version = $struct->{'meta-spec'}{version} || '1.0';
241 $self = $struct;
244 my $cmc = CPAN::Meta::Converter->new( $struct );
252 my ($class, $struct, $options) = @_;
253 my $self = eval { $class->_new($struct, $options) };
269 my ($class, $struct, $options) = @_;
271 $struct->{generated_by} ||= __PACKAGE__ . " version $version" ;
[all …]
/openbsd-src/gnu/usr.bin/perl/regen/
H A Dreentr.pl43 # (The "types" are often structs, such as "struct passwd".)
47 # for example "struct_hostent_data to" go with "struct hostent".
362 my @struct; # REENTR struct members
363 my @size; # struct member buffer size initialization code
364 my @init; # struct member buffer initialization (malloc) code
365 my @free; # struct member buffer release (free) code
375 push @struct, @_;
480 # The following loop accumulates the "ssif" (struct, size, init, free)
481 # sections that declare the struct member
[all...]
/openbsd-src/sys/arch/i386/i386/
H A Dgenassym.cf63 struct proc
72 struct uvmexp V_
77 struct pcb
90 struct trapframe
109 define FRAMESIZE sizeof(struct trapframe)
112 struct intrframe
116 struct iretframe
128 define SIZEOF_IRETFRAME sizeof(struct iretframe)
131 struct trampframe
148 define SIZEOF_TRAMPFRAME sizeof(struct trampfram
[all...]
/openbsd-src/gnu/llvm/libcxx/include/
H A Dtype_traits20 template <class T, T v> struct integral_constant;
30 template <bool, class T = void> struct enable_if;
31 template <bool, class T, class F> struct conditional;
34 template <class T> struct is_void;
35 template <class T> struct is_null_pointer; // C++14
36 template <class T> struct is_integral;
37 template <class T> struct is_floating_point;
38 template <class T> struct is_array;
39 template <class T> struct is_pointer;
40 template <class T> struct is_lvalue_reference;
[all …]
H A Dfunctional20 struct unary_function
27 struct binary_function
73 template <class T> struct unwrap_reference; // since C++20
74 template <class T> struct unwrap_ref_decay : unwrap_reference<decay_t<T>> { }; // since C++20
79 struct plus {
84 struct minus {
89 struct multiplies {
94 struct divides {
99 struct modulus {
104 struct negate {
[all …]
H A Dcoroutine19 struct coroutine_traits;
22 struct coroutine_handle;
27 template <class T> struct hash;
28 template <class P> struct hash<coroutine_handle<P>>;
30 struct noop_coroutine_promise;
31 template<> struct coroutine_handle<noop_coroutine_promise>;
35 struct suspend_never;
36 struct suspend_always;
H A Dratio35 template <class R1, class R2> struct ratio_equal;
36 template <class R1, class R2> struct ratio_not_equal;
37 template <class R1, class R2> struct ratio_less;
38 template <class R1, class R2> struct ratio_less_equal;
39 template <class R1, class R2> struct ratio_greater;
40 template <class R1, class R2> struct ratio_greater_equal;
100 struct __static_gcd
106 struct __static_gcd<_Xp, 0>
112 struct __static_gcd<0, 0>
120 struct __static_lcm
[all …]
/openbsd-src/regress/usr.bin/diff/
H A Dt9.263 static int change_dir(struct nameidata *, struct proc *);
65 void checkdirs(struct vnode *);
75 int (*union_check_p)(struct proc *, struct vnode **,
76 struct file *, struct uio, int *) = NULL;
88 struct proc *p;
92 register struct sys_mount_args /* {
98 register struct vnode *vp;
99 register struct mount *mp;
106 struct vattr va;
107 struct nameidata nd;
[all …]
H A Dt9.162 static int change_dir __P((struct nameidata *ndp, struct proc *p));
73 struct proc *p;
77 register struct sys_mount_args /* {
83 register struct vnode *vp;
84 register struct mount *mp;
88 struct vattr va;
89 struct nameidata nd;
203 mp = (struct mount *)malloc((u_long)sizeof(struct mount),
205 bzero((char *)mp, (u_long)sizeof(struct mount));
255 mp->mnt_vnodecovered->v_mountedhere = (struct mount *)0;
[all …]
/openbsd-src/gnu/llvm/clang/docs/
H A DBlock-ABI-Apple.rst43 struct Block_literal_1 {
47 R (*invoke)(struct Block_literal_1 *, P...);
48 struct Block_descriptor_1 {
50 unsigned long int size; // sizeof(struct Block_literal_1)
141 struct __block_literal_1 {
145 void (*invoke)(struct __block_literal_1 *);
146 struct __block_descriptor_1 *descriptor;
149 void __block_invoke_1(struct __block_literal_1 *_block) {
153 static struct __block_descriptor_1 {
156 } __block_descriptor_1 = { 0, sizeof(struct __block_literal_1) };
[all …]
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dfile_extract.py4 import struct
67 v, = struct.unpack(self.byte_order + 'b', s)
76 v, = struct.unpack(self.byte_order + 'B', s)
85 v, = struct.unpack(self.byte_order + 'h', s)
94 v, = struct.unpack(self.byte_order + 'H', s)
103 v, = struct.unpack(self.byte_order + 'i', s)
112 v, = struct.unpack(self.byte_order + 'I', s)
121 v, = struct.unpack(self.byte_order + 'q', s)
130 v, = struct.unpack(self.byte_order + 'Q', s)
143 cstr, = struct.unpack(self.byte_order + ("%i" % n) + 's', s)
[all …]
H A Doperating_system.py4 import struct
112 return struct.pack(
136 return struct.pack(
160 return struct.pack(
184 return struct.pack(
208 return struct.pack(
/openbsd-src/usr.bin/ctags/test/
H A Dctags.test12 */struct struct_xtra{int list;};r4(x,y){};typedef struct{int bar;}struct_xxe;
14 struct struct_three {
21 typedef struct {
23 struct struct_two {
26 struct struct_three entry;
29 struct last {
30 struct struct_three xentry;
49 struct struct_three s3;
54 struct {
61 register struct buf *bp;
/openbsd-src/sys/arch/arm/arm/
H A Dgenassym.cf57 struct proc
62 struct pcb
70 struct sigframe
73 struct cpu_functions
78 struct cpu_info
89 define M_LEN offsetof(struct mbuf, m_len)
90 define M_DATA offsetof(struct mbuf, m_data)
91 define M_NEXT offsetof(struct mbuf, m_next)
92 define IP_SRC offsetof(struct ip, ip_src)
93 define IP_DST offsetof(struct i
[all...]
/openbsd-src/gnu/llvm/libcxx/include/ext/
H A D__hash22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int>
[all …]
/openbsd-src/gnu/usr.bin/binutils/bfd/doc/
H A Dbfdt.texi13 struct bfd
22 const struct bfd_target *xvec;
30 to a bfd_in_memory struct. */
44 struct bfd *lru_prev, *lru_next;
89 struct bfd_hash_table section_htab;
92 struct bfd_section *sections;
95 struct bfd_section **section_tail;
108 struct bfd_symbol **outsymbols;
114 const struct bfd_arch_info *arch_info;
118 struct bfd *my_archive; /* The containing archive BFD. */
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/
H A Dconcept_check.diff76 struct concept_checking_##type_var##concept { }; \
87 struct concept_checking_##type_var1##type_var2##concept { }; \
98 struct concept_checking_##type_var1##type_var2##type_var3##concept { }; \
109 struct concept_checking_##type_var1##type_var2##type_var3##type_var4##concept { }; \
120 struct require_same { };
123 struct require_same<T,T> { typedef T type; };
127 -struct require_same { typedef T type; };
131 + struct SameTypeConcept
139 struct IntegerConcept {
147 template <> struct IntegerConcept<short> { void constraints() {} };
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/
H A Dconcept_check.diff76 struct concept_checking_##type_var##concept { }; \
87 struct concept_checking_##type_var1##type_var2##concept { }; \
98 struct concept_checking_##type_var1##type_var2##type_var3##concept { }; \
109 struct concept_checking_##type_var1##type_var2##type_var3##type_var4##concept { }; \
120 struct require_same { };
123 struct require_same<T,T> { typedef T type; };
127 -struct require_same { typedef T type; };
131 + struct SameTypeConcept
139 struct IntegerConcept {
147 template <> struct IntegerConcept<short> { void constraints() {} };
[all …]
/openbsd-src/sys/arch/amd64/amd64/
H A Dgenassym.cf27 struct proc
40 struct uvmexp V_
43 struct trapframe
67 struct intrframe
71 define FRAMESIZE sizeof(struct trapframe)
73 struct iretq_frame
80 define IRETQ_SIZE sizeof(struct iretq_frame)
82 struct pcb
92 struct pmap
95 struct x86_64_ts
[all...]
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/doc/
H A Dbfdt.texi13 struct bfd
22 const struct bfd_target *xvec;
27 const struct bfd_iovec *iovec;
40 struct bfd *lru_prev, *lru_next;
85 struct bfd_hash_table section_htab;
88 struct bfd_section *sections;
91 struct bfd_section *section_last;
104 struct bfd_symbol **outsymbols;
110 const struct bfd_arch_info *arch_info;
117 struct bfd *my_archive; /* The containing archive BFD. */
[all …]
H A Dtargets.texi107 @code{xvec} member of the struct @code{bfd} itself points here. Each
145 typedef struct bfd_link_info _bfd_link_info;
147 typedef struct bfd_target
208 const struct bfd_target *(*_bfd_check_format[bfd_type_end]) (bfd *);
263 (bfd *, sec_ptr, bfd *, sec_ptr, struct bfd_link_info *);
311 (bfd *, unsigned int, struct orl *, unsigned int, int);
316 int (*_bfd_stat_arch_elt) (bfd *, struct stat *);
338 (bfd *, struct bfd_symbol **);
339 struct bfd_symbol *
342 (bfd *, void *, struct bfd_symbol *, bfd_print_symbol_type);
[all …]
H A Dbfdio.texi1 @findex struct bfd_iovec
2 @subsubsection @code{struct bfd_iovec}
4 The @code{struct bfd_iovec} contains the internal file I/O class.
9 struct bfd_iovec
17 file_ptr (*bread) (struct bfd *abfd, void *ptr, file_ptr nbytes);
18 file_ptr (*bwrite) (struct bfd *abfd, const void *ptr,
22 file_ptr (*btell) (struct bfd *abfd);
25 int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
26 int (*bclose) (struct bfd *abfd);
27 int (*bflush) (struct bfd *abfd);
[all …]
/openbsd-src/sys/arch/sh/sh/
H A Dgenassym.cf43 struct trapframe
44 define TF_SIZE sizeof(struct trapframe)
49 struct proc
55 struct switchframe
56 define SF_SIZE sizeof(struct switchframe)
61 struct fpreg
62 define FP_SIZE sizeof(struct fpreg)
64 struct pcb
70 struct uvmexp UVMEXP_
82 struct mbuf
[all …]

12345678910>>...53