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

12

/freebsd-9.3-release/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)"), typ, next_choice, prev_choice));
56 if (!typ || !next_choice || !prev_choice)
59 typ->status |= _HAS_CHOICE;
60 typ->next = next_choice;
61 typ->prev = prev_choice;
H A Dfld_arg.c40 | FIELDTYPE *typ,
64 set_fieldtype_arg(FIELDTYPE *typ, argument
70 typ, make_arg, copy_arg, free_arg));
72 if (typ != 0 && make_arg != (void *)0)
74 typ->status |= _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)"), 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)"), form));\
51 returnFormHook( Normalize_Form( form ) -> typ ## name );\
H A Dfld_newftyp.c102 | Function : int free_fieldtype(FIELDTYPE *typ)
111 free_fieldtype(FIELDTYPE *typ) argument
113 T((T_CALLED("free_fieldtype(%p)"), typ));
115 if (!typ)
118 if (typ->ref != 0)
121 if (typ->status & _RESIDENT)
124 if (typ->status & _LINKED_TYPE)
126 if (typ->left)
127 typ->left->ref--;
128 if (typ
[all...]
H A Dfld_def.c74 | const FIELDTYPE *typ,
86 _nc_Make_Argument(const FIELDTYPE *typ, va_list *ap, int *err) argument
91 if (typ != 0 && (typ->status & _HAS_ARGS) != 0)
94 if ((typ->status & _LINKED_TYPE) != 0)
100 p->left = _nc_Make_Argument(typ->left, ap, err);
101 p->right = _nc_Make_Argument(typ->right, ap, err);
111 assert(typ->makearg != (void *)0);
112 if (!(res = (TypeArgument *)typ->makearg(ap)))
123 | Function : TypeArgument *_nc_Copy_Argument(const FIELDTYPE *typ,
134 _nc_Copy_Argument(const FIELDTYPE *typ, const TypeArgument *argp, int *err) argument
183 _nc_Free_Argument(const FIELDTYPE *typ, TypeArgument *argp) argument
[all...]
H A Dllib-lform67 FIELDTYPE *typ,
130 const FIELDTYPE *typ,
137 const FIELDTYPE *typ,
144 const FIELDTYPE *typ,
187 FIELDTYPE *typ,
281 FIELDTYPE *typ)
H A Dllib-lformw67 FIELDTYPE *typ,
130 const FIELDTYPE *typ,
137 const FIELDTYPE *typ,
144 const FIELDTYPE *typ,
187 FIELDTYPE *typ,
281 FIELDTYPE *typ)
/freebsd-9.3-release/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)"), 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)"), menu));\
56 returnMenuHook(Normalize_Menu(menu) -> typ ## name);\
/freebsd-9.3-release/usr.bin/xlint/lint1/
H A Dscan.l460 tspec_t typ;
502 typ = contypes[u_suffix][l_suffix];
521 switch (typ) {
526 typ = UINT;
528 typ = LONG;
530 typ = ULONG;
532 if (typ == UINT || typ == ULONG) {
534 typ = LONG;
546 typ
[all...]
/freebsd-9.3-release/sys/netinet/
H A Dip6.h307 * with type "typ".
313 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
318 (val) = (typ)(mtod((m), caddr_t) + (off)); \
324 (val) = (typ)(mtod(t, caddr_t) + tmp); \
326 (val) = (typ)NULL; \
332 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
336 (val) = (typ)mtod(m, caddr_t); \
342 (val) = (typ)mtod(t, caddr_t); \
344 (val) = (typ)NULL; \
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dtasn_new.c311 ASN1_TYPE *typ; local
341 typ = OPENSSL_malloc(sizeof(ASN1_TYPE));
342 if (!typ)
344 typ->value.ptr = NULL;
345 typ->type = -1;
346 *pval = (ASN1_VALUE *)typ;
H A Dtasn_fre.c208 ASN1_TYPE *typ = (ASN1_TYPE *)*pval; local
209 utype = typ->type;
210 pval = &typ->value.asn1_value;
H A Dtasn_dec.c850 ASN1_TYPE *typ = NULL; local
861 typ = ASN1_TYPE_new();
862 if (typ == NULL)
864 *pval = (ASN1_VALUE *)typ;
866 typ = (ASN1_TYPE *)*pval;
868 if (utype != typ->type)
869 ASN1_TYPE_set(typ, utype, NULL);
871 pval = &typ->value.asn1_value;
969 if (typ && (utype == V_ASN1_NULL))
970 typ
[all...]
H A Dasn1_gen.c428 ASN1_TYPE *ret = NULL, *typ = NULL; local
444 typ = ASN1_generate_v3(sk_CONF_VALUE_value(sect, i)->value, cnf);
445 if (!typ)
447 if (!sk_ASN1_TYPE_push(sk, typ))
449 typ = NULL;
491 if (typ)
492 ASN1_TYPE_free(typ);
/freebsd-9.3-release/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-9.3-release/sbin/init/
H A Dinit.c653 struct ttyent *typ; local
686 typ = getttynam("console");
688 if (typ && (typ->ty_status & TTY_SECURE) == 0 &&
1031 new_session(session_t *sprev, int session_index, struct ttyent *typ) argument
1036 if ((typ->ty_status & TTY_ON) == 0 ||
1037 typ->ty_name == 0 ||
1038 typ->ty_getty == 0)
1046 sp->se_device = malloc(sizeof(_PATH_DEV) + strlen(typ->ty_name));
1047 sprintf(sp->se_device, "%s%s", _PATH_DEV, typ
1082 setupargv(session_t *sp, struct ttyent *typ) argument
1135 struct ttyent *typ; local
1408 struct ttyent *typ; local
[all...]
/freebsd-9.3-release/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-9.3-release/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-9.3-release/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...]
H A Djv-exp.c2596 struct type *typ = java_lookup_class (tmp);
2597 if (typ == NULL || TYPE_CODE (typ) != TYPE_CODE_STRUCT)
2599 return typ;
2682 struct type *typ;
2700 typ = java_lookup_class (tmp);
2701 if (typ != NULL)
2706 write_exp_elt_type(typ);
2719 write_exp_elt_type (typ);
2748 struct type *typ;
2592 struct type *typ = java_lookup_class (tmp); local
2678 struct type *typ; local
2744 struct type *typ; local
[all...]
/freebsd-9.3-release/sys/dev/ppbus/
H A Dppb_msq.h52 #define MS_PARAM(ins,arg,typ) \
55 ((typ<<MS_TYP_OFFSET) & MS_TYP_MASK))
/freebsd-9.3-release/crypto/openssh/
H A Daudit-bsm.c258 bsm_audit_record(int typ, char *string, au_event_t event_no) argument
271 rc = (typ == 0) ? 0 : -1;
273 debug3("BSM audit: typ %d rc %d \"%s\"", typ, rc, string);
283 (void) au_write(ad, AUToReturnFunc(typ, rc));
/freebsd-9.3-release/sys/i386/include/
H A Dmd_var.h103 void setidt(int idx, alias_for_inthand_t *func, int typ, int dpl, int selec);
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_conf.c313 ASN1_TYPE *typ; local
315 typ = ASN1_generate_v3(value, ctx);
316 if (typ == NULL)
318 *ext_len = i2d_ASN1_TYPE(typ, &ext_der);
319 ASN1_TYPE_free(typ);
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-domain.c362 register u_short typ, len; local
376 typ = EXTRACT_16BITS(cp);
385 if (class != C_IN && typ != T_OPT)
392 if (typ == T_OPT) {
414 printf(" %s", tok2str(ns_type2str, "Type%d", typ));
418 switch (typ) {

Completed in 225 milliseconds

12