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

/haiku-fatelf/src/libs/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.c101 | Function : int free_fieldtype(FIELDTYPE *typ)
110 free_fieldtype(FIELDTYPE *typ) argument
112 T((T_CALLED("free_fieldtype(%p)"), typ));
114 if (!typ)
117 if (typ->ref != 0)
120 if (typ->status & _RESIDENT)
123 if (typ->status & _LINKED_TYPE)
125 if (typ->left)
126 typ->left->ref--;
127 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)
H A Dfrm_driver.c973 | FIELDTYPE * typ,
984 Check_Char(FIELDTYPE *typ, int ch, TypeArgument *argp) argument
986 if (typ)
988 if (typ->status & _LINKED_TYPE)
992 Check_Char(typ->left, ch, argp->left) ||
993 Check_Char(typ->right, ch, argp->right));
997 if (typ->ccheck)
998 return typ->ccheck(ch, (void *)argp);
2873 | FIELDTYPE * typ,
2884 Next_Choice(FIELDTYPE *typ, FIEL argument
2917 Previous_Choice(FIELDTYPE *typ, FIELD *field, TypeArgument *argp) argument
3007 Check_Field(FIELDTYPE *typ, FIELD *field, TypeArgument *argp) argument
[all...]
/haiku-fatelf/src/libs/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);\
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dnetopen.c157 _netopen4(host, serv, typ)
159 int typ;
173 if (_getserv(serv, typ, &p) == 0)
185 s = socket(AF_INET, (typ == 't') ? SOCK_STREAM : SOCK_DGRAM, 0);
212 _netopen6 (host, serv, typ)
214 int typ;
227 hints.ai_socktype = (typ == 't') ? SOCK_STREAM : SOCK_DGRAM;
277 _netopen(host, serv, typ)
279 int typ;
282 return (_netopen6 (host, serv, typ));
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Djv-exp.y1231 struct type *typ = java_lookup_class (tmp);
1232 if (typ == NULL || TYPE_CODE (typ) != TYPE_CODE_STRUCT)
1234 return typ;
1317 struct type *typ;
1335 typ = java_lookup_class (tmp);
1336 if (typ != NULL)
1341 write_exp_elt_type(typ);
1354 write_exp_elt_type (typ);
1383 struct type *typ;
[all...]
H A Djv-exp.c2621 struct type *typ = java_lookup_class (tmp);
2622 if (typ == NULL || TYPE_CODE (typ) != TYPE_CODE_STRUCT)
2624 return typ;
2707 struct type *typ;
2725 typ = java_lookup_class (tmp);
2726 if (typ != NULL)
2731 write_exp_elt_type(typ);
2744 write_exp_elt_type (typ);
2773 struct type *typ;
2617 struct type *typ = java_lookup_class (tmp); local
2703 struct type *typ; local
2769 struct type *typ; local
[all...]
/haiku-fatelf/src/add-ons/translators/icns/openjpeg/
H A Djp2.h62 unsigned short cn, typ, asoc; member in struct:opj_jp2_cdef_info
H A Djp2.c522 unsigned short i, n, cn, typ, asoc, acn; local
533 cn = info[i].cn; typ = info[i].typ; acn = asoc - 1;
579 info[i].typ = (unsigned short)cio_read(cio, 2);
/haiku-fatelf/src/bin/network/tcpdump/
H A Dprint-domain.c351 register u_short typ, len; local
365 typ = EXTRACT_16BITS(cp);
371 else if (class != C_IN && typ != T_OPT)
377 if (typ == T_OPT)
387 printf(" %s", tok2str(ns_type2str, "Type%d", typ));
391 switch (typ) {
/haiku-fatelf/src/libs/print/libgutenprint/src/main/
H A Dprint-vars.c45 stp_parameter_type_t typ; member in struct:__anon5171
127 switch (v->typ)
179 ret->typ = v->typ;
181 switch (v->typ)
442 const char *value, size_t bytes, int typ)
449 val->typ = typ;
458 size_t bytes, int typ)
475 val->typ
441 set_default_raw_parameter(stp_list_t *list, const char *parameter, const char *value, size_t bytes, int typ) argument
457 set_raw_parameter(stp_list_t *list, const char *parameter, const char *value, size_t bytes, int typ) argument
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dcatalog.c1488 xmlCatalogEntryType typ; local
1501 typ = xmlGetXMLCatalogEntryType(type);
1502 if (typ == XML_CATA_NONE) {
1515 if ((orig != NULL) && (cur->type == typ) &&
1537 catal->children = xmlNewCatalogEntry(typ, orig, replace,
1540 cur->next = xmlNewCatalogEntry(typ, orig, replace,
H A Drelaxng.c2407 xmlSchemaTypePtr typ; local
2411 typ = xmlSchemaGetPredefinedType(type,
2414 if (typ == NULL)
2437 xmlSchemaTypePtr typ; local
2442 typ = xmlSchemaGetPredefinedType(type,
2445 if (typ == NULL)
2447 ret = xmlSchemaValPredefTypeNode(typ, value,
2478 xmlSchemaTypePtr typ; local
2483 typ = xmlSchemaGetPredefinedType(type,
2486 if (typ
2570 xmlSchemaTypePtr typ; local
[all...]
/haiku-fatelf/src/bin/gdb/bfd/
H A Dversados.c282 int typ = (*ptr >> 4) & 0xf; local
290 switch (typ)
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A DxsltInternals.h212 #define XSLT_RUNTIME_EXTRA(ctxt, nr, typ) (ctxt)->extras[(nr)].val.typ

Completed in 246 milliseconds