Searched refs:chs (Results 1 - 17 of 17) sorted by relevance

/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Daddchn.c49 addchnstr(chs, n)
50 const chtype *chs;
56 __m_trace("addchnstr(%p, %d)", chs, n);
59 code = waddchnstr(stdscr, chs, n);
67 mvaddchnstr(y, x, chs, n)
69 const chtype *chs;
75 __m_trace("mvaddchnstr(%d, %d, %p, %d)", y, x, chs, n);
79 code = waddchnstr(stdscr, chs, n);
87 mvwaddchnstr(w, y, x, chs, n)
90 const chtype *chs;
[all...]
H A Dinchn.c47 (inchnstr)(chs, n)
48 chtype *chs;
54 __m_trace("inchnstr(%p, %d)", chs, n);
57 code = winchnstr(stdscr, chs, n);
63 (mvinchnstr)(y, x, chs, n)
65 chtype *chs;
71 __m_trace("mvinchnstr(%d, %d, %p, %d)", y, x, chs, n);
75 code = winchnstr(stdscr, chs, n);
81 (mvwinchnstr)(w, y, x, chs, n)
84 chtype *chs;
[all...]
H A Dwaddchn.c47 waddchnstr(WINDOW *w, const chtype *chs, int n) argument
53 __m_trace("waddchnstr(%p, %p, %d)", w, chs, n);
59 for (x = w->_curx; x < n && *chs != 0; x += width, ++chs) {
60 (void) __m_chtype_cc(*chs, &cc);
H A Dwinchn.c47 winchnstr(w, chs, n)
49 chtype *chs;
56 __m_trace("winchnstr(%p, %p, %d)", w, chs, n);
61 for (cp = w->_line[w->_cury], x = w->_curx; x < eol; ++x, ++chs) {
62 if ((*chs = __m_cc_chtype(&cp[x])) == (chtype) ERR)
70 *chs = 0;
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Daddchn.c52 addchnstr(const chtype *chs, int n) argument
56 code = waddchnstr(stdscr, chs, n);
64 mvaddchnstr(int y, int x, const chtype *chs, int n) argument
69 code = waddchnstr(stdscr, chs, n);
77 mvwaddchnstr(WINDOW *w, int y, int x, const chtype *chs, int n) argument
82 code = waddchnstr(w, chs, n);
90 addchstr(const chtype *chs) argument
94 code = waddchnstr(stdscr, chs, -1);
102 mvaddchstr(int y, int x, const chtype *chs) argument
107 code = waddchnstr(stdscr, chs,
115 mvwaddchstr(WINDOW *w, int y, int x, const chtype *chs) argument
128 waddchstr(WINDOW *w, const chtype *chs) argument
[all...]
H A Dinchn.c52 inchnstr(chtype *chs, int n) argument
56 code = winchnstr(stdscr, chs, n);
64 mvinchnstr(int y, int x, chtype *chs, int n) argument
69 code = winchnstr(stdscr, chs, n);
77 mvwinchnstr(WINDOW *w, int y, int x, chtype *chs, int n) argument
82 code = winchnstr(w, chs, n);
90 inchstr(chtype *chs) argument
94 code = winchnstr(stdscr, chs, -1);
102 mvinchstr(int y, int x, chtype *chs) argument
107 code = winchnstr(stdscr, chs,
115 mvwinchstr(WINDOW *w, int y, int x, chtype *chs) argument
128 winchstr(WINDOW *w, chtype *chs) argument
[all...]
H A Dwaddchn.c52 waddchnstr(WINDOW *w, const chtype *chs, int n) argument
60 for (x = w->_curx, y = w->_cury; x < n && *chs != 0;
61 x = xnew, y = ynew, ++chs) {
62 (void) __m_chtype_cc(*chs, &cc);
H A Dwinchn.c50 winchnstr(WINDOW *w, chtype *chs, int n) argument
57 for (cp = w->_line[w->_cury], x = w->_curx; x < eol; ++x, ++chs) {
58 if ((*chs = __m_cc_chtype(&cp[x])) == (chtype) ERR)
67 *chs = 0;
/illumos-gate/usr/src/lib/libc/
H A Dextract-copyright.pl96 if ($path =~ /\.[chs]$/) {
/illumos-gate/usr/src/lib/libxcurses2/h/
H A Dcurses.h745 #define addchnstr(chs, n) waddchnstr(stdscr, chs, n)
746 #define addchstr(chs) waddchstr(stdscr, chs)
747 #define mvaddchnstr(y, x, chs, n) \
748 (move(y, x) ? ((chs), (n), ERR) : addchnstr(chs, n))
750 #define mvaddchstr(y, x, chs) \
751 (move(y, x) ? ((chs), ERR) : addchstr(chs))
[all...]
/illumos-gate/usr/src/uts/sun/sys/dada/impl/
H A Dcommands.h50 struct chs { struct in union:dcd_cmd::__anon9722
/illumos-gate/usr/src/lib/libxcurses/h/
H A Dcurses.h842 #define addchnstr(chs,n) waddchnstr(stdscr,chs,n)
843 #define addchstr(chs) waddchstr(stdscr,chs)
844 #define mvaddchnstr(y,x,chs,n) (move(y,x)?ERR:addchnstr(chs,n))
845 #define mvaddchstr(y,x,chs) (move(y,x)?ERR:addchstr(chs))
846 #define mvwaddchnstr(w,y,x,chs,n) (wmove(w,y,x)?ERR:waddchnstr(w,chs,
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dutf8.c455 krb5_ucs4 chs, ch; local
460 if (krb5int_utf8_to_ucs4(str, &chs) == 0 && chs == ch)
/illumos-gate/usr/src/uts/intel/io/dktp/controller/ata/
H A Data_disk.c273 short *chs; local
307 (void) sprintf(buf, "SUNW-ata-%p-d%d-chs", (void *) ata_ctlp->ac_data,
310 buf, (caddr_t)&chs, &len) == DDI_PROP_SUCCESS) {
317 if (chs[1] == (ata_drvp->ad_drvrhd - 1) &&
318 chs[2] == ata_drvp->ad_drvrsec)
319 /* Set chs[0] to zero-based number of cylinders. */
320 chs[0] = aidp->ai_fixcyls - 1;
334 * chs[0,1] are zero-based; make them one-based.
336 ata_drvp->ad_drvrcyl = chs[0] + 1;
337 ata_drvp->ad_drvrhd = chs[
[all...]
/illumos-gate/usr/src/boot/sys/boot/i386/pmbr/
H A Dpmbr.s106 cmpw $0xaa55, %bx # chs support is not
/illumos-gate/usr/src/uts/common/io/usb/clients/audio/usb_ac/
H A Dusb_ac.c4201 int ch, chs, id; local
4213 chs = asreg->reg_formats[0].fmt_chns;
4216 for (ch = 0; ch <= chs; ch++) {
4234 "usb_ac_mixer_registration:n= [%d] - mode=%d chs=%d"
4236 n, asreg->reg_mode, chs,
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dql_api.c15184 ql_config_space_t chs; local
15203 chs.chs_command = (uint16_t)ql_pci_config_get16(ha, PCI_CONF_COMM);
15204 chs.chs_header_type = (uint8_t)ql_pci_config_get8(ha,
15206 if ((chs.chs_header_type & PCI_HEADER_TYPE_M) == PCI_HEADER_ONE) {
15207 chs.chs_bridge_control = (uint8_t)ql_pci_config_get8(ha,
15211 chs.chs_cache_line_size = (uint8_t)ql_pci_config_get8(ha,
15214 chs.chs_latency_timer = (uint8_t)ql_pci_config_get8(ha,
15217 if ((chs.chs_header_type & PCI_HEADER_TYPE_M) == PCI_HEADER_ONE) {
15218 chs.chs_sec_latency_timer = (uint8_t)ql_pci_config_get8(ha,
15222 chs
[all...]

Completed in 155 milliseconds