Searched refs:typ (Results 1 - 25 of 64) sorted by relevance

123

/freebsd-11-stable/contrib/ncurses/form/
H A Dfld_ftchoice.c40 | FIELDTYPE *typ,
50 set_fieldtype_choice(FIELDTYPE *typ, argument
54 T((T_CALLED("set_fieldtype_choice(%p,%p,%p)"), (void *)typ, next_choice, prev_choice));
56 if (!typ || !next_choice || !prev_choice)
59 SetStatus(typ, _HAS_CHOICE);
61 typ->enum_next.onext = next_choice;
62 typ->enum_prev.oprev = prev_choice;
64 typ->next = next_choice;
65 typ->prev = prev_choice;
H A Dfld_arg.c40 | FIELDTYPE *typ,
64 set_fieldtype_arg(FIELDTYPE *typ, argument
70 (void *)typ, make_arg, copy_arg, free_arg));
72 if (typ != 0 && make_arg != (void *)0)
74 SetStatus(typ, _HAS_ARGS);
75 typ->makearg = make_arg;
76 typ->copyarg = copy_arg;
77 typ->freearg = free_arg;
H A Dfrm_hook.c38 #define GEN_HOOK_SET_FUNCTION( typ, name ) \
39 NCURSES_IMPEXP int NCURSES_API set_ ## typ ## _ ## name (FORM *form, Form_Hook func)\
41 T((T_CALLED("set_" #typ"_"#name"(%p,%p)"), (void *) form, func));\
42 (Normalize_Form( form ) -> typ ## name) = func ;\
47 #define GEN_HOOK_GET_FUNCTION( typ, name ) \
48 NCURSES_IMPEXP Form_Hook NCURSES_API typ ## _ ## name ( const FORM *form )\
50 T((T_CALLED(#typ "_" #name "(%p)"), (const void *) form));\
51 returnFormHook( Normalize_Form( form ) -> typ ## name );\
H A Dfld_newftyp.c110 | Function : int free_fieldtype(FIELDTYPE *typ)
119 free_fieldtype(FIELDTYPE *typ) argument
121 T((T_CALLED("free_fieldtype(%p)"), (void *)typ));
123 if (!typ)
126 if (typ->ref != 0)
129 if (typ->status & _RESIDENT)
132 if (typ->status & _LINKED_TYPE)
134 if (typ->left)
135 typ->left->ref--;
136 if (typ
[all...]
H A Dfld_def.c73 | const FIELDTYPE *typ,
85 _nc_Make_Argument(const FIELDTYPE *typ, va_list *ap, int *err) argument
90 if (typ != 0 && (typ->status & _HAS_ARGS) != 0)
93 if ((typ->status & _LINKED_TYPE) != 0)
99 p->left = _nc_Make_Argument(typ->left, ap, err);
100 p->right = _nc_Make_Argument(typ->right, ap, err);
110 assert(typ->makearg != (void *)0);
111 if (!(res = (TypeArgument *)typ->makearg(ap)))
122 | Function : TypeArgument *_nc_Copy_Argument(const FIELDTYPE *typ,
133 _nc_Copy_Argument(const FIELDTYPE *typ, const TypeArgument *argp, int *err) argument
182 _nc_Free_Argument(const FIELDTYPE *typ, TypeArgument *argp) argument
[all...]
H A Dfty_generic.c144 | const FIELDTYPE* typ,
160 GenericArgument(const FIELDTYPE *typ, argument
165 if (typ != 0 && (typ->status & _HAS_ARGS) != 0 && err != 0 && argiterator != 0)
167 if (typ->status & _LINKED_TYPE)
174 p->left = GenericArgument(typ->left, argiterator, err);
175 p->right = GenericArgument(typ->right, argiterator, err);
183 assert(typ->genericarg != (void *)0);
184 if (typ->genericarg == 0)
192 !(res = (TypeArgument *)typ
[all...]
/freebsd-11-stable/contrib/ncurses/menu/
H A Dm_hook.c43 #define GEN_HOOK_SET_FUNCTION( typ, name ) \
44 NCURSES_IMPEXP int NCURSES_API set_ ## typ ## _ ## name (MENU *menu, Menu_Hook func )\
46 T((T_CALLED("set_" #typ "_" #name "(%p,%p)"), (void *) menu, func));\
47 (Normalize_Menu(menu) -> typ ## name = func );\
52 #define GEN_HOOK_GET_FUNCTION( typ, name ) \
53 NCURSES_IMPEXP Menu_Hook NCURSES_API typ ## _ ## name ( const MENU *menu )\
55 T((T_CALLED(#typ "_" #name "(%p)"), (const void *) menu));\
56 returnMenuHook(Normalize_Menu(menu) -> typ ## name);\
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.h32 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp);
33 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
H A Dtsan_suppressions.cpp67 static const char *conv(ReportType typ) { argument
68 switch (typ) {
106 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp) { argument
111 const char *stype = conv(typ);
125 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp) { argument
130 const char *stype = conv(typ);
H A Dtsan_rtl_report.cpp145 ScopedReportBase::ScopedReportBase(ReportType typ, uptr tag) { argument
149 rep_->typ = typ;
374 ScopedReport::ScopedReport(ReportType typ, uptr tag) argument
375 : ScopedReportBase(typ, tag) {}
408 EventType typ = (EventType)(ev >> kEventPCBits); local
410 DPrintf2(" %zu typ=%d pc=%zx\n", i, typ, pc);
411 if (typ == EventTypeMop) {
413 } else if (typ
622 ReportType typ = ReportTypeRace; local
[all...]
H A Dtsan_debugging.cpp21 static const char *ReportTypeDescription(ReportType typ) { argument
22 switch (typ) {
43 static const char *ReportLocationTypeDescription(ReportLocationType typ) { argument
44 switch (typ) {
78 *description = ReportTypeDescription(rep->typ);
/freebsd-11-stable/sys/dev/mlx5/
H A Ddevice.h49 #define __mlx5_nullp(typ) ((struct mlx5_ifc_##typ##_bits *)0)
50 #define __mlx5_bit_sz(typ, fld) sizeof(__mlx5_nullp(typ)->fld)
51 #define __mlx5_bit_off(typ, fld) __offsetof(struct mlx5_ifc_##typ##_bits, fld)
52 #define __mlx5_16_off(typ, fld) (__mlx5_bit_off(typ, fld) / 16)
53 #define __mlx5_dw_off(typ, fld) (__mlx5_bit_off(typ, fl
[all...]
/freebsd-11-stable/usr.bin/xlint/lint1/
H A Dscan.l464 tspec_t typ;
506 typ = contypes[u_suffix][l_suffix];
525 switch (typ) {
530 typ = UINT;
533 typ = LONG;
536 typ = ULONG;
538 if (typ == UINT || typ == ULONG) {
540 typ = LONG;
552 typ
[all...]
/freebsd-11-stable/sys/netinet/
H A Dip6.h302 * with type "typ".
308 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
313 (val) = (typ)(mtod((m), caddr_t) + (off)); \
319 (val) = (typ)(mtod(t, caddr_t) + tmp); \
321 (val) = (typ)NULL; \
327 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
331 (val) = (typ)mtod(m, caddr_t); \
337 (val) = (typ)mtod(t, caddr_t); \
339 (val) = (typ)NULL; \
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dtasn_new.c315 ASN1_TYPE *typ; local
346 typ = OPENSSL_malloc(sizeof(ASN1_TYPE));
347 if (!typ)
349 typ->value.ptr = NULL;
350 typ->type = -1;
351 *pval = (ASN1_VALUE *)typ;
H A Dtasn_fre.c205 ASN1_TYPE *typ = (ASN1_TYPE *)*pval; local
206 utype = typ->type;
207 pval = &typ->value.asn1_value;
/freebsd-11-stable/contrib/ntp/sntp/libopts/
H A Dconfigfile.c66 parse_keyword(tOptions * opts, char const * txt, tOptionValue * typ);
69 parse_set_mem(tOptions * opts, char const * txt, tOptionValue * typ);
72 parse_value(char const * txt, tOptionValue * typ);
1283 parse_keyword(tOptions * opts, char const * txt, tOptionValue * typ) argument
1286 (void)typ;
1302 parse_set_mem(tOptions * opts, char const * txt, tOptionValue * typ) argument
1305 (void)typ;
1315 * @param[out] typ where to store the type found
1319 parse_value(char const * txt, tOptionValue * typ) argument
1330 typ
[all...]
/freebsd-11-stable/sbin/init/
H A Dinit.c866 struct ttyent *typ; local
902 typ = getttynam("console");
904 if (typ && (typ->ty_status & TTY_SECURE) == 0 &&
1294 new_session(session_t *sprev, struct ttyent *typ) argument
1298 if ((typ->ty_status & TTY_ON) == 0 ||
1299 typ->ty_name == 0 ||
1300 typ->ty_getty == 0)
1307 if ((typ->ty_status & TTY_IFEXISTS) != 0)
1310 if ((typ
1337 setupargv(session_t *sp, struct ttyent *typ) argument
1389 struct ttyent *typ; local
1689 struct ttyent *typ; local
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_warc.c57 mode_t typ; member in struct:warc_s
144 w->typ = 0;
229 w->typ = archive_entry_filetype(entry);
231 if (w->typ == AE_IFREG) {
275 if (w->typ == AE_IFREG) {
298 if (w->typ == AE_IFREG) {
306 w->typ = 0;
/freebsd-11-stable/crypto/openssl/apps/
H A Dasn1pars.c296 int typ; local
314 typ = ASN1_TYPE_get(at);
315 if ((typ == V_ASN1_OBJECT)
316 || (typ == V_ASN1_BOOLEAN)
317 || (typ == V_ASN1_NULL)) {
318 BIO_printf(bio_err, "Can't parse %s type\n", ASN1_tag2str(typ));
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Dcolumn.cpp114 symbol typ; member in class:vjustify_output_line
126 return typ;
224 : position_output_line(d), typ(t)
349 void column::vjustify(vunits pos, symbol typ) argument
352 add_output_line(new vjustify_output_line(pos - bottom, typ));
653 symbol typ; member in class:vjustify_node
663 : typ(t)
669 return new vjustify_node(typ, div_nest_level);
679 return typ == ((vjustify_node *)nd)->typ;
[all...]
/freebsd-11-stable/sys/i386/include/
H A Dmd_var.h71 void setidt(int idx, alias_for_inthand_t *func, int typ, int dpl, int selec);
/freebsd-11-stable/sys/amd64/include/
H A Dmd_var.h73 void setidt(int idx, alias_for_inthand_t *func, int typ, int dpl, int ist);
/freebsd-11-stable/sys/dev/mlx5/mlx5_core/
H A Dmlx5_qp.c211 #define MBOX_ALLOC(mbox, typ) \
212 mbox_alloc(mbox, MLX5_ST_SZ_BYTES(typ##_in), MLX5_ST_SZ_BYTES(typ##_out))
214 #define MOD_QP_IN_SET(typ, in, _opcode, _qpn) \
215 MLX5_SET(typ##_in, in, opcode, _opcode); \
216 MLX5_SET(typ##_in, in, qpn, _qpn)
217 #define MOD_QP_IN_SET_QPC(typ, in, _opcode, _qpn, _opt_p, _qpc) \
218 MOD_QP_IN_SET(typ, in, _opcode, _qpn); \
219 MLX5_SET(typ##_in, in, opt_param_mask, _opt_p); \
220 memcpy(MLX5_ADDR_OF(typ##_i
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Djv-exp.y1222 struct type *typ = java_lookup_class (tmp);
1223 if (typ == NULL || TYPE_CODE (typ) != TYPE_CODE_STRUCT)
1225 return typ;
1308 struct type *typ;
1326 typ = java_lookup_class (tmp);
1327 if (typ != NULL)
1332 write_exp_elt_type(typ);
1345 write_exp_elt_type (typ);
1374 struct type *typ;
[all...]

Completed in 239 milliseconds

123