Searched refs:type_t (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/usr.bin/xlint/lint1/
H A Dexterns1.h86 extern sym_t *mktempsym(type_t *);
137 extern type_t *gettyp(tspec_t);
138 extern type_t *duptyp(const type_t *);
139 extern type_t *tduptyp(const type_t *);
140 extern int incompl(type_t *);
141 extern void setcompl(type_t *, int);
143 extern void addtype(type_t *);
150 extern int length(type_t *, cons
[all...]
H A Dlint1.h107 * be done in structures of type type_t, because these are copied
135 * Types are represented by concatenation of structures of type type_t
160 } type_t; typedef in typeref:struct:type
233 type_t *s_type; /* type */
274 type_t *tn_type; /* type */
316 type_t *d_type; /* after deftyp() pointer to the type used
332 type_t *d_tagtyp; /* tag during member declaration */
346 type_t *i_type; /* type of initialisation */
347 type_t *i_subt; /* type of next level */
390 type_t *c_swtyp
[all...]
H A Ddecl.c51 static type_t *typetab;
62 static type_t *tdeferr(type_t *, tspec_t);
63 static void settdsym(type_t *, sym_t *);
67 static int eqargs(type_t *, type_t *, int *);
68 static int mnoarg(type_t *, int *);
100 if ((typetab = calloc(NTSPEC, sizeof (type_t))) == NULL)
133 type_t *
140 type_t *
[all...]
H A Dtree.c58 static tnode_t *mktnode(op_t, type_t *, tnode_t *, tnode_t *);
61 static void illptrc(mod_t *, type_t *, type_t *);
62 static void mrgqual(type_t **, type_t *, type_t *);
63 static int conmemb(type_t *);
64 static void ptconv(int, tspec_t, tspec_t, type_t *, tnode_t *);
65 static void iiconv(op_t, int, tspec_t, tspec_t, type_t *, tnode_t *);
66 static void piconv(op_t, tspec_t, type_t *, tnode_
[all...]
H A Demit1.c51 * node of type type_t
88 outtype(type_t *tp)
158 ttos(type_t *tp)
H A Dfunc.c574 type_t *tp;
599 if ((tp = calloc(1, sizeof (type_t))) == NULL)
H A Dcgram.y121 type_t *y_type;
/freebsd-11-stable/usr.bin/xlint/lint2/
H A Dexterns2.h65 extern type_t **tlst;
H A Dchk.c56 fcall_t *, fcall_t *, type_t *, type_t *);
59 static void printflike(hte_t *,fcall_t *, int, const char *, type_t **);
60 static void scanflike(hte_t *, fcall_t *, int, const char *, type_t **);
65 static int eqtype(type_t *, type_t *, int, int, int, int *);
66 static int eqargs(type_t *, type_t *, int *);
67 static int mnoarg(type_t *, int *);
236 type_t *tp
[all...]
H A Demit2.c45 static void outtype(type_t *);
54 outtype(type_t *tp)
58 type_t **ap;
H A Dlint2.h38 * Types are described by structures of type type_t.
69 } type_t; typedef in typeref:struct:type
H A Dread.c81 type_t **tlst; /* array for indexed access */
100 static u_short storetyp(type_t *, const char *, size_t, int);
123 if ((tlst = calloc(tlstlen = 256, sizeof (type_t *))) == NULL)
544 type_t *tp;
559 tp = xalloc(sizeof (type_t));
638 sizeof (type_t *))) == NULL)
934 storetyp(type_t *tp, const char *cp, size_t len, int h)
944 if ((tlst = realloc(tlst, (tlstlen * 2) * sizeof (type_t *)))
947 (void)memset(tlst + tlstlen, 0, tlstlen * sizeof (type_t *));
/freebsd-11-stable/sys/dev/mlx5/
H A Ddevice.h134 #define MLX5_GET_BE(type_t, typ, p, fld) ({ \
135 type_t tmp; \
138 tmp = (__force type_t)MLX5_GET(typ, p, fld); \
141 tmp = (__force type_t)cpu_to_be16(MLX5_GET(typ, p, fld)); \
144 tmp = (__force type_t)cpu_to_be32(MLX5_GET(typ, p, fld)); \
147 tmp = (__force type_t)MLX5_GET64_BE(typ, p, fld); \
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp59 template <typename type_t> class empirical_type {
65 bool get(type_t &out) const {
72 const type_t *get() const { return valid ? &data : nullptr; }
75 void set(const type_t in) {
87 empirical_type<type_t> &operator=(const type_t in) {
94 const type_t &operator*() const {
101 type_t data;

Completed in 133 milliseconds