Searched refs:type (Results 101 - 125 of 6116) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/dev/tdfx/
H A Dtdfx_io.h74 #define _IOCV(dir,type,nr,size) \
76 ((type) << _IOC_TYPESHIFT) | \
81 #define _IOV(type,nr) _IOCV(_IOC_NONE,(type),(nr),0)
82 #define _IORV(type,nr,size) _IOCV(_IOC_READ,(type),(nr),sizeof(size))
83 #define _IOWV(type,nr,size) _IOCV(_IOC_WRITE,(type),(nr),sizeof(size))
84 #define _IOWRV(type,nr,size) _IOCV(_IOC_READ|_IOC_WRITE,(type),(n
[all...]
/freebsd-11-stable/contrib/libpcap/
H A Drpcap-protocol.c66 * \param errcode: a integer which tells the other party the type of error
109 * This function fills in a structure of type rpcap_header.
122 * \param type: a value (in the host byte order) which will be placed into the
123 * header.type field and that represents the type of the current message.
135 rpcap_createhdr(struct rpcap_header *header, uint8 ver, uint8 type, uint16 value, uint32 length) argument
140 header->type = type;
146 * Convert a message type to a string containing the type nam
183 rpcap_msg_type_string(uint8 type) argument
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Djv-valprint.c39 static void java_print_value_fields (struct type * type, char *valaddr,
50 struct type *type; local
55 type = VALUE_TYPE (val);
58 if (is_object_type (type))
62 /* Get the run-time type, and cast the object into that */
64 obj_addr = unpack_pointer (type, VALUE_CONTENTS (val));
68 type = type_from_class (java_class_from_object (val));
69 type
254 java_print_value_fields(struct type *type, char *valaddr, CORE_ADDR address, struct ui_file *stream, int format, int recurse, enum val_prettyprint pretty) argument
451 java_val_print(struct type *type, char *valaddr, int embedded_offset, CORE_ADDR address, struct ui_file *stream, int format, int deref_ref, int recurse, enum val_prettyprint pretty) argument
[all...]
H A Df-lang.h28 extern void f_print_type (struct type *, char *, struct ui_file *, int,
31 extern int f_val_print (struct type *, char *, int, CORE_ADDR,
87 extern int f77_get_dynamic_upperbound (struct type *, int *);
89 extern int f77_get_dynamic_lowerbound (struct type *, int *);
91 extern void f77_get_dynamic_array_length (struct type *);
93 extern int calc_f77_array_dims (struct type *);
H A Dannotate.h49 struct type;
51 extern void annotate_field_begin (struct type *);
60 extern void annotate_value_history_begin (int, struct type *);
61 extern void annotate_value_begin (struct type *);
76 extern void annotate_arg_value (struct type *);
96 extern void annotate_array_section_begin (int, struct type *);
H A Dvalue.h34 struct type;
37 /* The structure which defines the type of a value. It should never
89 struct type *type; member in struct:value
91 /* If a value represents a C++ object, then the `type' field gives
92 the object's compile-time type. If the object actually belongs
93 to some class derived from `type', perhaps with other base
94 classes and additional members, then `type' is just a subobject
96 `type' would suggest.
98 If `type' i
[all...]
/freebsd-11-stable/crypto/openssl/crypto/pem/
H A Dpem.h166 int type; /* what type of object */ member in struct:pem_ctx_st
188 EVP_MD *md; /* signature type */
214 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
215 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
216 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
217 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
218 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
221 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
222 type *PEM_read
[all...]
/freebsd-11-stable/contrib/less/
H A Doptfunc.c19 * Each handling function is passed a "type" and, if it is a string
21 * The type may be one of:
95 opt_o(type, s)
96 int type;
107 switch (type)
148 opt__O(type, s)
149 int type;
153 opt_o(type, s);
161 opt_j(type, s)
162 int type;
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Datomic.c49 // defined. Each platform should define the Lock type, and corresponding
175 #define LOCK_FREE_ACTION(type) \
176 *((type *)dest) = __c11_atomic_load((_Atomic(type) *)src, model); \
189 #define LOCK_FREE_ACTION(type) \
190 __c11_atomic_store((_Atomic(type) *)dest, *(type *)src, model); \
207 #define LOCK_FREE_ACTION(type) \
209 (_Atomic(type) *)ptr, (type *)expecte
[all...]
/freebsd-11-stable/crypto/openssh/
H A Ddispatch.c42 dispatch_protocol_error(int type, u_int32_t seq, void *ctx) argument
47 logit("dispatch_protocol_error: type %d seq %u", type, seq);
59 dispatch_protocol_ignore(int type, u_int32_t seq, void *ssh) argument
61 logit("dispatch_protocol_ignore: type %d seq %u", type, seq);
86 ssh_dispatch_set(struct ssh *ssh, int type, dispatch_fn *fn) argument
88 ssh->dispatch[type] = fn;
96 u_char type; local
101 r = ssh_packet_read_seqnr(ssh, &type,
[all...]
/freebsd-11-stable/contrib/gcc/cp/
H A Dcvt.c1 /* Language-level data type conversion for GNU C++.
80 cp_convert_to_pointer (tree type, tree expr, bool force)
93 error ("can't convert from incomplete type %qT to %qT",
94 intype, type);
98 rval = build_type_conversion (type, expr);
103 expr, intype, type);
109 if (TREE_CODE (type) == POINTER_TYPE
110 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
111 || VOID_TYPE_P (TREE_TYPE (type))))
115 return convert_member_func_to_ptr (type, exp
79 cp_convert_to_pointer(tree type, tree expr, bool force) argument
296 convert_to_pointer_force(tree type, tree expr) argument
350 build_up_reference(tree type, tree arg, int flags, tree decl) argument
445 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (reftype)); local
593 cp_convert(tree type, tree expr) argument
603 ocp_convert(tree type, tree expr, int convtype, int flags) argument
861 tree type = TREE_TYPE (expr); local
886 tree type = TREE_TYPE (expr); local
1009 convert(tree type, tree expr) argument
1030 convert_force(tree type, tree expr, int convtype) argument
1211 tree type = non_reference (TREE_TYPE (TREE_TYPE (winner))); local
1221 type_promotes_to(tree type) argument
1272 perform_qualification_conversions(tree type, tree expr) argument
[all...]
H A Dtypeck2.c43 process_init_constructor (tree type, tree init);
50 error_not_base_type (tree basetype, tree type) argument
54 error ("type %qT is not a base type for type %qT", basetype, type);
59 binfo_or_else (tree base, tree type) argument
61 tree binfo = lookup_base (type, base, ba_unique, NULL);
66 error_not_base_type (base, type);
121 /* Structure that holds information about declarations whose type wa
131 tree type; local
180 complete_type_check_abstract(tree type) argument
240 abstract_virtuals_error(tree decl, tree type) argument
348 cxx_incomplete_type_diagnostic(tree value, tree type, int diag_type) argument
439 cxx_incomplete_type_error(tree value, tree type) argument
453 tree type = TREE_TYPE (dest); local
587 tree value, type; local
651 digest_init(tree type, tree init) argument
779 process_init_constructor_array(tree type, tree init) argument
873 process_init_constructor_record(tree type, tree init) argument
979 process_init_constructor_union(tree type, tree init) argument
1050 process_init_constructor(tree type, tree init) argument
1145 tree type = TREE_TYPE (expr); local
1220 tree type; local
1303 tree type; local
1480 tree type = TREE_VALUE (raises); local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/lhash/
H A Dlhash.h93 * Macros for declaring and implementing type-safe wrappers for LHASH
96 * per-variable casting before deferring to the underlying type-specific
199 # define LHASH_OF(type) struct lhash_st_##type
201 # define DECLARE_LHASH_OF(type) LHASH_OF(type) { int dummy; }
203 # define CHECKED_LHASH_OF(type,lh) \
204 ((_LHASH *)CHECKED_PTR_OF(LHASH_OF(type),lh))
207 # define LHM_lh_new(type, name) \
208 ((LHASH_OF(type) *)lh_ne
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Ddevname.c46 devname_r(dev_t dev, mode_t type, char *buf, int len) argument
51 if (dev == NODEV || !(S_ISCHR(type) || S_ISBLK(dev))) {
56 if (S_ISCHR(type)) {
65 S_ISCHR(type) ? 'C' : 'B', (uintmax_t)dev);
70 devname(dev_t dev, mode_t type) argument
74 return (devname_r(dev, type, buf, sizeof(buf)));
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dpid.h47 #define pid_task(pid, type) ({ \
49 CTASSERT((type) == PIDTYPE_PID); \
54 #define get_pid_task(pid, type) ({ \
56 CTASSERT((type) == PIDTYPE_PID); \
61 #define get_task_pid(task, type) ({ \
62 CTASSERT((type) == PIDTYPE_PID); \
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/
H A DAVR.cpp47 RelExpr getRelExpr(RelType type, const Symbol &s,
49 void relocateOne(uint8_t *loc, RelType type, uint64_t val) const override;
55 RelExpr AVR::getRelExpr(RelType type, const Symbol &s, argument
60 void AVR::relocateOne(uint8_t *loc, RelType type, uint64_t val) const { argument
61 switch (type) {
70 error(getErrorLocation(loc) + "unrecognized relocation " + toString(type));
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dencrypt.c79 int EncryptType(char *type, char *mode);
145 findencryption(int type) argument
149 if (!(I_SUPPORT_ENCRYPT & remote_supports_decrypt & (unsigned)typemask(type)))
151 while (ep->type && ep->type != type)
153 return(ep->type ? ep : 0);
157 finddecryption(int type) argument
161 if (!(I_SUPPORT_DECRYPT & remote_supports_encrypt & (unsigned)typemask(type)))
163 while (ep->type
229 EncryptEnable(char *type, char *mode) argument
242 EncryptDisable(char *type, char *mode) argument
275 EncryptType(char *type, char *mode) argument
481 int type, use_type = 0; local
522 int type, ret; local
566 int ret, type; local
799 encrypt_start_output(int type) argument
942 int type = data[1]; local
[all...]
/freebsd-11-stable/lib/msun/src/
H A Ds_lrint.c31 #ifndef type
33 #define type double macro
43 * significant bits than 'type'. Hence, we bend over backwards for the
47 fn(type x)
/freebsd-11-stable/crypto/heimdal/appl/telnet/libtelnet/
H A Dencrypt.c141 findencryption(int type) argument
145 if (!(I_SUPPORT_ENCRYPT & remote_supports_decrypt & typemask(type)))
147 while (ep->type && ep->type != type)
149 return(ep->type ? ep : 0);
153 finddecryption(int type) argument
157 if (!(I_SUPPORT_DECRYPT & remote_supports_encrypt & typemask(type)))
159 while (ep->type && ep->type !
226 EncryptEnable(char *type, char *mode) argument
239 EncryptDisable(char *type, char *mode) argument
272 EncryptType(char *type, char *mode) argument
512 int type, use_type = 0; local
553 int type, ret; local
597 int ret, type; local
827 encrypt_start_output(int type) argument
996 int type = data[1]; local
[all...]
/freebsd-11-stable/contrib/ncurses/include/
H A Dnc_alloc.h106 #define typeMalloc(type,elts) (type *)malloc((size_t)(elts)*sizeof(type))
107 #define typeCalloc(type,elts) (type *)calloc((size_t)(elts),sizeof(type))
108 #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (size_t)(elts)*sizeof(type))
/freebsd-11-stable/contrib/gcc/
H A Dstor-layout.c42 /* Data type for the expressions representing sizes of data types.
43 It is the first integer type laid out. */
115 to serve as the actual size-expression for a type or decl. */
151 error ("type size can%'t be explicitly evaluated");
153 error ("variable-size type declared outside of any function");
270 /* Subroutine of layout_decl: Force alignment required for the data type.
274 do_type_align (tree type, tree decl)
276 if (TYPE_ALIGN (type) > DECL_ALIGN (decl))
278 DECL_ALIGN (decl) = TYPE_ALIGN (type);
280 DECL_USER_ALIGN (decl) = TYPE_USER_ALIGN (type);
271 do_type_align(tree type, tree decl) argument
297 tree type = TREE_TYPE (decl); local
668 tree type = TREE_TYPE (field); local
799 excess_unit_span(HOST_WIDE_INT byte_offset, HOST_WIDE_INT bit_offset, HOST_WIDE_INT size, HOST_WIDE_INT align, tree type) argument
828 tree type = TREE_TYPE (field); local
1313 compute_record_mode(tree type) argument
1388 finalize_type_size(tree type) argument
1516 finish_builtin_struct(tree type, const char *name, tree fields, tree align_type) argument
1556 layout_type(tree type) argument
1879 tree type = make_node (INTEGER_TYPE); local
1892 tree type = make_node (INTEGER_TYPE); local
1932 set_sizetype(tree type) argument
2017 set_min_and_max_values_for_integral_type(tree type, int precision, bool is_unsigned) argument
2069 fixup_signed_type(tree type) argument
2091 fixup_unsigned_type(tree type) argument
[all...]
/freebsd-11-stable/contrib/libstdc++/include/tr1/
H A Dbind_iterate.h42 typename result_of<_Functor(_GLIBCXX_BIND_V_TEMPLATE_ARGS())>::type
53 typename result_of<const _Functor(_GLIBCXX_BIND_V_TEMPLATE_ARGS(const))>::type
64 typename result_of<volatile _Functor(_GLIBCXX_BIND_V_TEMPLATE_ARGS(volatile))>::type
75 typename result_of<const volatile _Functor(_GLIBCXX_BIND_V_TEMPLATE_ARGS(const volatile))>::type
/freebsd-11-stable/contrib/gdb/gdb/config/i386/
H A Dnm-i386sco5.h31 /* ... but it can do a lot of SVR4 type stuff too. */
61 #define TARGET_CAN_USE_HARDWARE_WATCHPOINT(type, cnt, ot) 1
72 #define target_insert_watchpoint(addr, len, type) \
73 i386_insert_watchpoint (PIDGET (inferior_ptid), addr, len, type)
75 #define target_remove_watchpoint(addr, len, type) \
/freebsd-11-stable/contrib/diff/lib/
H A Dxalloc.h81 # define NEW(type, var) type *var = xmalloc (sizeof (type))
82 # define XCALLOC(type, n) xcalloc (n, sizeof (type))
83 # define XMALLOC(type, n) xnmalloc (n, sizeof (type))
84 # define XREALLOC(p, type, n) xnrealloc (p, n, sizeof (type))
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Derrarg.cpp26 errarg::errarg(const char *p) : type(STRING)
31 errarg::errarg() : type(EMPTY)
35 errarg::errarg(int nn) : type(INTEGER)
40 errarg::errarg(unsigned int uu) : type(UNSIGNED_INTEGER)
45 errarg::errarg(char cc) : type(CHAR)
50 errarg::errarg(unsigned char cc) : type(CHAR)
55 errarg::errarg(double dd) : type(DOUBLE)
62 return type == EMPTY;
72 switch (type) {

Completed in 226 milliseconds

1234567891011>>