Searched refs:type (Results 1 - 25 of 6463) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/dev/acpica/compiler/
H A Dasltypes.y161 %type <n> ArgList
162 %type <n> AslCode
163 %type <n> BufferData
164 %type <n> BufferTermData
165 %type <n> CompilerDirective
166 %type <n> DataObject
167 %type <n> DefinitionBlockTerm
168 %type <n> DefinitionBlockList
169 %type <n> IntegerData
170 %type <
[all...]
/freebsd-current/contrib/elftoolchain/libelftc/
H A Delftc_reloc_type_str.c35 elftc_reloc_type_str(unsigned int mach, unsigned int type) argument
42 switch(type) {
88 switch(type) {
163 switch(type) {
298 switch(type) {
382 switch(type) {
426 switch(type) {
507 switch(type) {
621 switch(type) {
674 switch (type) {
[all...]
/freebsd-current/contrib/byacc/test/
H A Derr_syntax26.y6 %type <tag2
/freebsd-current/lib/libc/posix1e/
H A Dacl_delete.c57 acl_delete_file_np(const char *path_p, acl_type_t type) argument
60 type = _acl_type_unold(type);
61 return (__acl_delete_file(path_p, type));
65 acl_delete_link_np(const char *path_p, acl_type_t type) argument
68 type = _acl_type_unold(type);
69 return (__acl_delete_link(path_p, type));
73 acl_delete_fd_np(int filedes, acl_type_t type) argument
76 type
[all...]
/freebsd-current/crypto/openssl/crypto/store/
H A Dstore_strings.c21 const char *OSSL_STORE_INFO_type_string(int type) argument
25 if (type < 1 || type > types)
28 return type_strings[type - 1];
/freebsd-current/lib/msun/src/
H A Ds_lround.c33 #ifndef type
34 #define type double macro
43 * If type has more precision than dtype, the endpoints dtype_(min|max) are
45 * from 0. On the other hand, if type has less precision than dtype, then
50 static const type type_min = (type)DTYPE_MIN;
51 static const type type_max = (type)DTYPE_MAX;
52 static const type dtype_min = (type)DTYPE_MI
[all...]
/freebsd-current/sys/compat/linuxkpi/common/include/asm/
H A Dhypervisor.h12 hypervisor_is_type(int type) argument
14 return (type == X86_HYPER_NATIVE);
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dcontainer_of.h38 #define container_of(ptr, type, member) \
40 const __typeof(((type *)0)->member) *__p = (ptr); \
41 (type *)((uintptr_t)__p - offsetof(type, member)); \
44 #define typeof_member(type, member) __typeof(((type *)0)->member)
H A Dtypecheck.h30 #define typecheck(type,x) \
31 ({ type __var1; \
/freebsd-current/crypto/openssl/util/perl/OpenSSL/
H A Dstackhash.pm60 my $type = shift;
62 return generate_stack_macros_int($type, $type, $type);
66 my $type = shift;
68 return generate_stack_macros_int($type, "const $type", $type);
84 my $type = shift;
87 DEFINE_LHASH_OF_INTERNAL(${type});
[all...]
/freebsd-current/sbin/ipf/libipf/
H A Dicmptypename.c11 icmptypename(int family, int type) argument
15 if ((type < 0) || (type > 255))
19 if ((family == AF_INET) && (i->it_v4 == type))
22 if ((family == AF_INET6) && (i->it_v6 == type))
/freebsd-current/contrib/tcsh/
H A Dmi.varargs.h11 #define va_arg(p,type) ( (type *) ((p)+=sizeof(type)) )[-1]
/freebsd-current/contrib/libevent/include/event2/
H A Dkeyvalq_struct.h38 #define TAILQ_ENTRY(type) \
40 struct type *tqe_next; /* next element */ \
41 struct type **tqe_prev; /* address of previous next element */ \
47 #define TAILQ_HEAD(name, type) \
49 struct type *tqh_first; \
50 struct type **tqh_last; \
/freebsd-current/contrib/ntp/sntp/libevent/include/event2/
H A Dkeyvalq_struct.h38 #define TAILQ_ENTRY(type) \
40 struct type *tqe_next; /* next element */ \
41 struct type **tqe_prev; /* address of previous next element */ \
47 #define TAILQ_HEAD(name, type) \
49 struct type *tqh_first; \
50 struct type **tqh_last; \
/freebsd-current/sys/contrib/alpine-hal/
H A Dal_hal_common.h55 #define al_max_t(type, x, y) ({ \
56 type __max1 = (x); \
57 type __max2 = (y); \
61 #define al_min_t(type, x, y) ({ \
62 type __min1 = (x); \
63 type __min2 = (y); \
/freebsd-current/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dd_c99_union_init4.c3 int type; member in struct:__anon5260
13 .type = 3,
/freebsd-current/crypto/heimdal/lib/asn1/
H A Dgen_seq.c42 Type *type; local
46 type = s->type;
47 while(type->type == TTag)
48 type = type->subtype;
50 if (type->type != TSequenceOf && type
[all...]
/freebsd-current/sys/contrib/openzfs/lib/libspl/include/os/linux/sys/
H A Dsysmacros.h63 #define P2NPHASE_TYPED(x, align, type) \
64 (-(type)(x) & ((type)(align) - 1))
70 * that the result is correctly calculated based on the data type of (x),
72 * type of the alignment. For example, if (x) is of type uint64_t,
79 #define P2ALIGN_TYPED(x, align, type) \
80 ((type)(x) & -(type)(align))
81 #define P2PHASE_TYPED(x, align, type) \
[all...]
/freebsd-current/crypto/openssl/include/crypto/
H A Dsparse_array.h21 # define SPARSE_ARRAY_OF(type) struct sparse_array_st_ ## type
23 # define DEFINE_SPARSE_ARRAY_OF_INTERNAL(type, ctype) \
24 SPARSE_ARRAY_OF(type); \
25 static ossl_unused ossl_inline SPARSE_ARRAY_OF(type) * \
26 ossl_sa_##type##_new(void) \
28 return (SPARSE_ARRAY_OF(type) *)ossl_sa_new(); \
31 ossl_sa_##type##_free(SPARSE_ARRAY_OF(type) *sa) \
36 ossl_sa_##type##_free_leave
[all...]
/freebsd-current/contrib/ncurses/form/
H A Dfld_type.c40 | Function : int set_field_type(FIELD *field, FIELDTYPE *type,...)
50 set_field_type(FIELD *field, FIELDTYPE *type, ...) argument
56 T((T_CALLED("set_field_type(%p,%p)"), (void *)field, (void *)type));
58 va_start(ap, type);
63 field->type = type;
64 field->arg = (void *)_nc_Make_Argument(field->type, &ap, &err);
68 _nc_Free_Argument(field->type, (TypeArgument *)(field->arg));
69 field->type = (FIELDTYPE *)0;
75 if (field->type)
[all...]
/freebsd-current/crypto/openssl/providers/
H A Dprov_running.c14 void ossl_set_error_state(const char *type) argument
/freebsd-current/libexec/bootpd/
H A Dhwaddr.h11 * This structure holds information about a specific network type. The
28 * Return the length in bytes of a hardware address of the given type.
29 * Return the canonical name of the network of the given type.
31 #define haddrlength(type) ((hwinfolist[(int) (type)]).hlen)
32 #define netname(type) ((hwinfolist[(int) (type)]).name)
/freebsd-current/lib/lib80211/
H A Dlib80211_ioctl.h61 extern int lib80211_get80211(int s, const char *name, int type, void *data,
63 extern int lib80211_get80211len(int s, const char *name, int type, void *data,
65 extern int lib80211_get80211val(int s, const char *name, int type, int *val);
66 extern int lib80211_set80211(int s, const char *name, int type, int val,
/freebsd-current/sys/compat/freebsd32/
H A Dfreebsd32_misc.h37 #define PAIR32TO64(type, name) ((name ## 2) | ((type)(name ## 1) << 32))
41 #define PAIR32TO64(type, name) ((name ## 1) | ((type)(name ## 2) << 32))
/freebsd-current/contrib/libfido2/src/
H A Dpacked.h12 #define PACKED_TYPE(type, def) \
13 typedef def __attribute__ ((__packed__)) type;
15 #define PACKED_TYPE(type, def) \
17 typedef def type; \

Completed in 457 milliseconds

1234567891011>>