Searched defs:chs (Results 1 - 9 of 9) sorted by relevance

/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
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);
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
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;
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...]
/osnet-11/usr/src/lib/libparted/common/libparted/
H A Dunit.c79 "chs",
205 const PedCHSGeometry *chs = &dev->bios_geom; local
207 sector / chs->sectors / chs->heads,
208 (sector / chs->sectors) % chs->heads,
209 sector % chs->sectors);
372 PedCHSGeometry chs; local
381 &chs.cylinders, &chs
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dutf8.c456 krb5_ucs4 chs, ch; local
461 if (krb5int_utf8_to_ucs4(str, &chs) == 0 && chs == ch)
/osnet-11/usr/src/cmd/parted/
H A Dparted.c1516 PedCHSGeometry* chs = &(*dev)->bios_geom; local
1518 chs->heads * chs->sectors,
1523 chs->cylinders, chs->heads, chs->sectors, cyl_size);
1527 chs->cylinders, chs->heads, chs->sectors, cyl_size);
/osnet-11/usr/src/lib/libparted/common/libparted/labels/
H A Ddos.c323 chs_get_cylinder (const RawCHS* chs) argument
325 return chs->cylinder + ((chs->sector >> 6) << 8);
329 chs_get_head (const RawCHS* chs) argument
331 return chs->head;
336 chs_get_sector (const RawCHS* chs) argument
338 return (chs->sector & 0x3f) - 1;
343 const RawCHS* chs)
350 PED_ASSERT (chs != NULL, return 0);
352 c = chs_get_cylinder (chs);
342 chs_to_sector(const PedDevice* dev, const PedCHSGeometry *bios_geom, const RawCHS* chs) argument
364 sector_to_chs(const PedDevice* dev, const PedCHSGeometry* bios_geom, PedSector sector, RawCHS* chs) argument
[all...]

Completed in 146 milliseconds