Home
last modified time | relevance | path

Searched refs:bool_count (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/tic/
H A Dtic_read.c161 header.bool_count = swap(header.bool_count); in read_entry()
180 read(fd, UB, min(BoolCount, header.bool_count)); in read_entry()
181 if (header.bool_count > BoolCount) in read_entry()
182 lseek(fd, (long)(header.bool_count - BoolCount), 1); in read_entry()
184 for (i = header.bool_count; i < BoolCount; i++) in read_entry()
187 if ((header.name_size + header.bool_count) % 2 != 0) in read_entry()
H A Dtic_parse.c703 header.bool_count = swap(BoolCount); in write_object()
710 header.bool_count = BoolCount; in write_object()
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dsetup.c154 short bool_count; member
181 (header.bool_count = getnum(fd)) < 0 || in __m_read_terminfo()
201 len = min(__COUNT_BOOL, header.bool_count); in __m_read_terminfo()
205 if (__COUNT_BOOL < header.bool_count) { in __m_read_terminfo()
206 (void) lseek(fd, (off_t) (header.bool_count - __COUNT_BOOL), in __m_read_terminfo()
209 for (len = header.bool_count; len < __COUNT_BOOL; ++len) in __m_read_terminfo()
214 if ((header.name_size + header.bool_count) % 2 != 0) in __m_read_terminfo()
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dsetup.c138 || (header.bool_count = getnum(fd)) < 0
156 len = min(__COUNT_BOOL, header.bool_count);
160 if (__COUNT_BOOL < header.bool_count) {
162 fd, (off_t) (header.bool_count - __COUNT_BOOL),
166 for (len = header.bool_count; len < __COUNT_BOOL; ++len)
171 if ((header.name_size + header.bool_count) % 2 != 0)
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dobject.h123 short bool_count; /* Number of booleans */ member