Home
last modified time | relevance | path

Searched refs:str_table (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dalloc_entry.c172 free(tp->str_table); in _nc_wrap_entry()
196 TYPE_MALLOC(char, next_free, tp->str_table); in _nc_wrap_entry()
197 (void) memcpy(tp->str_table, stringbuf, next_free); in _nc_wrap_entry()
199 tp->term_names = tp->str_table + n; in _nc_wrap_entry()
207 tp->Strings[i] = tp->str_table + offsets[i]; in _nc_wrap_entry()
239 ep->uses[i].name = strdup(tp->str_table + useoffsets[i]); in _nc_wrap_entry()
254 char *str_table; in _nc_merge_entry() local
284 if ((str_table = malloc(str_size)) == NULL) in _nc_merge_entry()
286 str_copied = str_table; in _nc_merge_entry()
310 free(to->str_table); in _nc_merge_entry()
[all …]
H A Dfree_ttype.c54 FreeIfNeeded(ptr->str_table); in really_free_termtype()
H A Dcomp_parse.c257 FreeIfNeeded(thisentry.tterm.str_table); in _nc_read_entry_source()
593 FreeIfNeeded(qp->tterm.str_table); in _nc_resolve_uses2()
H A Dparse_entry.c333 entryp->tterm.str_table = entryp->tterm.term_names = _nc_save_str(ptr); in _nc_parse_entry()
335 if (entryp->tterm.str_table == 0) in _nc_parse_entry()
H A Dalloc_ttype.c578 dst->str_table = new_table; in copy_termtype()
H A Dread_entry.c355 ptr->str_table = string_table; in _nc_read_termtype()
/freebsd/sys/dev/qat/qat_common/
H A Dqat_uclo.c89 qat_uclo_get_string(struct icp_qat_uof_strtable *str_table, in qat_uclo_get_string() argument
92 if (!str_table->table_len || str_offset > str_table->table_len) in qat_uclo_get_string()
94 return (char *)(((uintptr_t)(str_table->strings)) + str_offset); in qat_uclo_get_string()
266 str = qat_uclo_get_string(&obj_handle->str_table, init_mem->sym_name); in qat_uclo_fetch_initmem_ae()
759 qat_uclo_get_string(&obj_handle->str_table, in UcLo_checkTGroupList2X()
838 struct icp_qat_uof_strtable *str_table) in qat_uclo_map_str_table() argument
849 memcpy(&str_table->table_len, in qat_uclo_map_str_table()
851 sizeof(str_table->table_len)); in qat_uclo_map_str_table()
852 hdr_size = (char *)&str_table->strings - (char *)str_table; in qat_uclo_map_str_table()
853 str_table->strings = (uintptr_t)obj_hdr->file_buff + in qat_uclo_map_str_table()
[all …]
/freebsd/sys/dev/qat/include/common/
H A Dicp_qat_uclo.h217 struct icp_qat_uof_strtable str_table; member
/freebsd/contrib/ncurses/include/
H A DMKterm.h.awk.in4 print " char *term_names; /* str_table offset of term names */"
5 print " char *str_table; /* pointer to string table */"
/freebsd/contrib/ncurses/progs/
H A Dtic.c295 free(ep->tterm.str_table); in immedhook()
/freebsd/contrib/ncurses/
H A DNEWS756 + alter copy_termtype() to allocate new str_table and ext_str_table
7943 part of the str_table, a better fix for a memory leak (cf: 20030809).