Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/ncurses/ncurses/tinfo/
H A Dalloc_entry.c172 free(tp->str_table); in _nc_wrap_entry()
199 tp->term_names = tp->str_table + n; 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()
311 to->str_table = str_table; in _nc_merge_entry()
312 free(from->str_table); in _nc_merge_entry()
333 if ((str_table = malloc(str_size)) == NULL) in _nc_merge_entry()
335 str_copied = 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-14.2/usr.bin/bc/
H A Dbc.y108 static char str_table[UCHAR_MAX][2]; variable
373 $$ = cs(str_table[macro_char]);
869 p = str_table['0' + num]; in numnode()
871 p = str_table['A' - 10 + num]; in numnode()
922 return (cs(str_table[(int)str[0]])); in letter_node()
934 return (cs(str_table[(int)str[0] - 'a' + ARRAY_CHAR])); in array_node()
946 return (cs(str_table[(int)str[0] - 'a' + FUNC_CHAR])); in function_node()
1021 str_table[i][0] = i; in init()
1022 str_table[i][1] = '\0'; in init()
/freebsd-14.2/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()
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()
855 return str_table; in qat_uclo_map_str_table()
[all …]
/freebsd-14.2/sys/dev/qat/include/common/
H A Dicp_qat_uclo.h217 struct icp_qat_uof_strtable str_table; member
/freebsd-14.2/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-14.2/contrib/ncurses/progs/
H A Dtic.c295 free(ep->tterm.str_table); in immedhook()
/freebsd-14.2/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).