/freebsd-src/contrib/ncurses/form/ |
H A D | fty_regex.c | 160 if (((preg->pRegExp = typeMalloc(regex_t, 1)) != 0) in Generic_RegularExpression_Type() 165 if ((preg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type() 184 pArg = typeMalloc(RegExp_Arg, 1); in Generic_RegularExpression_Type() 192 if ((pArg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type() 197 char *buf = typeMalloc(char, blen); in Generic_RegularExpression_Type()
|
H A D | fty_enum.c | 73 argp = typeMalloc(enumARG, 1); in Generic_Enum_Type() 104 argp->kwds = typeMalloc(char *, cnt + 1); in Generic_Enum_Type() 158 result = typeMalloc(enumARG, 1); in Copy_Enum_Type() 169 result->kwds = typeMalloc(char *, 1 + ap->count); in Copy_Enum_Type()
|
H A D | fty_alpha.c | 63 argp = typeMalloc(thisARG, 1); in Generic_This_Type() 102 thisARG *result = typeMalloc(thisARG, 1); in Copy_This_Type()
|
H A D | fty_alnum.c | 63 argp = typeMalloc(thisARG, 1); in Generic_This_Type() 102 thisARG *result = typeMalloc(thisARG, 1); in Copy_This_Type()
|
H A D | fld_def.c | 95 TypeArgument *p = typeMalloc(TypeArgument, 1); in _nc_Make_Argument() 142 TypeArgument *p = typeMalloc(TypeArgument, 1); in _nc_Copy_Argument() 292 (New_Field = typeMalloc(FIELD, 1)) != 0) in new_field()
|
H A D | fty_int.c | 80 argp = typeMalloc(thisARG, 1); in Generic_This_Type() 127 result = typeMalloc(thisARG, 1); in Copy_This_Type()
|
H A D | fty_generic.c | 125 res = typeMalloc(FIELDTYPE, 1); in _nc_generic_fieldtype() 178 TypeArgument *p = typeMalloc(TypeArgument, 1); in GenericArgument()
|
H A D | fty_num.c | 91 argn = typeMalloc(thisARG, 1); in Generic_This_Type() 146 result = typeMalloc(thisARG, 1); in Copy_This_Type()
|
H A D | fld_ftlink.c | 60 nftyp = typeMalloc(FIELDTYPE, 1); in FORM_EXPORT()
|
H A D | frm_def.c | 189 if ((pg = typeMalloc(_PAGE, page_nr)) != (_PAGE *) 0) in Connect_Fields() 310 form = typeMalloc(FORM, 1); in NCURSES_SP_NAME()
|
H A D | fld_newftyp.c | 88 nftyp = typeMalloc(FIELDTYPE, 1); in new_fieldtype()
|
H A D | fld_link.c | 61 (New_Field = typeMalloc(FIELD, 1))) in FORM_EXPORT()
|
H A D | fld_dup.c | 60 (New_Field = typeMalloc(FIELD, 1))) in FORM_EXPORT()
|
/freebsd-src/contrib/ncurses/panel/ |
H A D | p_new.c | 51 PANEL *result = typeMalloc(PANEL, 1); in AllocPanel() 62 #define AllocPanel(name) typeMalloc(PANEL, 1)
|
/freebsd-src/contrib/ncurses/ncurses/base/ |
H A D | safe_sprintf.c | 66 if ((format = typeMalloc(char, fmt_len)) == 0) in _nc_printf_length() 68 if ((buffer = typeMalloc(char, length)) == 0) { in _nc_printf_length()
|
H A D | lib_insnstr.c | 66 wchar_t *buffer = typeMalloc(wchar_t, nn + 1); in NCURSES_EXPORT()
|
H A D | wresize.c | 175 s = typeMalloc(NCURSES_CH_T, (unsigned) ToCols + 1); in wresize() 195 s = typeMalloc(NCURSES_CH_T, (unsigned) ToCols + 1); in wresize()
|
/freebsd-src/contrib/ncurses/ncurses/trace/ |
H A D | trace_tries.c | 72 if ((my_buffer = typeMalloc(unsigned char, my_length = 80)) != 0) { in _nc_trace_tries()
|
H A D | varargs.c | 69 MyBuffer = typeMalloc(char, MyLength = BUFSIZ); in _nc_varargs()
|
/freebsd-src/contrib/ncurses/ncurses/tinfo/ |
H A D | name_match.c | 71 FirstName = typeMalloc(char, MAX_NAME_SIZE + 1); in _nc_first_name()
|
H A D | lib_print.c | 75 || (mybuf = typeMalloc(char, need + 1)) == 0) { in NCURSES_EXPORT()
|
H A D | comp_error.c | 79 TermType = typeMalloc(char, MY_SIZE + 1); in _nc_set_type()
|
H A D | comp_scan.c | 489 tok_buf = typeMalloc(char, TOK_BUF_SIZE); in _nc_get_token() 1029 pushname = typeMalloc(char, MAX_NAME_SIZE + 1); in _nc_push_token()
|
/freebsd-src/contrib/ncurses/include/ |
H A D | nc_alloc.h | 117 #define typeMalloc(type,elts) (type *)malloc((size_t)(elts)*sizeof(type)) macro
|
/freebsd-src/contrib/ncurses/menu/ |
H A D | m_global.c | 213 if ((menu->pattern = typeMalloc(char, (unsigned)(1 + menu->namelen)))) in _nc_Connect_Items() 265 && (temp = typeMalloc(wchar_t, 2 + count)) != 0) in _nc_Calculate_Text_Width()
|