Home
last modified time | relevance | path

Searched refs:ext_Booleans (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dalloc_ttype.c107 int ext_Booleans, in realign_data() argument
112 int to_Booleans = to->ext_Booleans; in realign_data()
118 ext_Booleans, in realign_data()
121 to->ext_Booleans, in realign_data()
125 if (to->ext_Booleans != ext_Booleans) { in realign_data()
129 EXTEND_NUM(num_Booleans, ext_Booleans); in realign_data()
131 for (n = to->ext_Booleans - 1, in realign_data()
132 m = ext_Booleans - 1, in realign_data()
140 to->ext_Booleans = UShort(ext_Booleans); in realign_data()
146 from = ext_Booleans; in realign_data()
[all …]
H A Dparse_entry.c80 last = tp->ext_Booleans; in _nc_extend_names()
81 offset = tp->ext_Booleans; in _nc_extend_names()
85 first = tp->ext_Booleans; in _nc_extend_names()
87 offset = (unsigned) (tp->ext_Booleans + tp->ext_Numbers); in _nc_extend_names()
91 first = (unsigned) (tp->ext_Booleans + tp->ext_Numbers); in _nc_extend_names()
93 offset = (unsigned) (tp->ext_Booleans + tp->ext_Numbers + tp->ext_Strings); in _nc_extend_names()
100 if (n > (unsigned) (tp->ext_Booleans + tp->ext_Numbers)) { in _nc_extend_names()
102 } else if (n > tp->ext_Booleans) { in _nc_extend_names()
152 tp->ext_Booleans++; in _nc_extend_names()
H A Dwrite_entry.c666 for (i = 0; i < tp->ext_Booleans; ++i) { in extended_Booleans()
882 LITTLE_ENDIAN(buf + 0, tp->ext_Booleans); in _nc_write_object()
892 TRACE_OUT(("WRITE %d booleans @%d", tp->ext_Booleans, *offset)); in _nc_write_object()
893 if (tp->ext_Booleans in _nc_write_object()
895 tp->ext_Booleans) != tp->ext_Booleans) { in _nc_write_object()
899 if (even_boundary(tp->ext_Booleans)) { in _nc_write_object()
H A Dread_entry.c236 tp->ext_Booleans = 0; in _nc_init_termtype()
454 if ((ptr->ext_Booleans = UShort(ext_bool_count)) != 0) { in _nc_read_termtype()
548 ptr->num_Booleans, ptr->ext_Booleans, in _nc_read_termtype()
H A Dcomp_parse.c305 limit += p->ext_Booleans;
/freebsd/contrib/ncurses/ncurses/trace/
H A Dtrace_xnames.c46 int limit = tp->ext_Booleans + tp->ext_Numbers + tp->ext_Strings; in NCURSES_EXPORT()
50 int begin_num = tp->ext_Booleans; in NCURSES_EXPORT()
51 int begin_str = tp->ext_Booleans + tp->ext_Numbers; in NCURSES_EXPORT()
56 tp->ext_Booleans, tp->ext_Numbers, tp->ext_Strings, in NCURSES_EXPORT()
73 tp->Booleans[tp->num_Booleans + n - tp->ext_Booleans]); in NCURSES_EXPORT()
/freebsd/contrib/ncurses/include/
H A Dterm_entry.h68 #define NUM_EXT_NAMES(tp) (unsigned) ((tp)->ext_Booleans + (tp)->ext_Numbers + (tp)->ext_Strings)
80 …oolname(tp,i,names) EXT_NAMES(tp, i, BOOLCOUNT, (i - (tp->num_Booleans - tp->ext_Booleans)), names)
81 …s) EXT_NAMES(tp, i, NUMCOUNT, (i - (tp->num_Numbers - tp->ext_Numbers)) + tp->ext_Booleans, names)
82 … STRCOUNT, (i - (tp->num_Strings - tp->ext_Strings)) + (tp->ext_Numbers + tp->ext_Booleans), names)
H A DMKterm.h.awk.in18 print " unsigned short ext_Booleans;/* count extensions to Booleans */";