Searched refs:bottom (Results 1 - 25 of 39) sorted by relevance

12

/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dscrreg.c47 (setscrreg)(top, bottom)
48 int top, bottom;
51 __m_trace("setscrreg(%d, %d)", top, bottom);
54 if (top < 0 || bottom < top || stdscr->_maxy <= bottom)
59 stdscr->_bottom = bottom + 1;
H A Dwscrreg.c47 wsetscrreg(w, top, bottom)
49 int top, bottom;
52 __m_trace("wsetscrreg(%p, %d, %d)", w, top, bottom);
55 if (top < 0 || bottom < top || w->_maxy <= bottom)
60 w->_bottom = bottom + 1;
H A Dnewterm.c178 i = rip.top - rip.bottom;
183 rip.line[i].dy = --rip.bottom;
357 n = rip.top - rip.bottom;
H A Dprivate.h100 #define W_SCROLL_WINDOW 0x0010 /* Touches bottom-right corner */
138 int bottom; /* # of lines off the bottom (-ve). */ member in struct:__anon4211
140 int dy; /* Distance from screen top/bottom. */
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dscrreg.c52 setscrreg(int top, int bottom) argument
54 if (top < 0 || bottom < top || stdscr->_maxy <= bottom)
59 stdscr->_bottom = (short) bottom + 1;
H A Dwscrreg.c50 wsetscrreg(WINDOW *w, int top, int bottom) argument
52 if (top < 0 || bottom < top || w->_maxy <= bottom)
57 w->_bottom = (short) bottom + 1;
H A Dnewterm.c180 i = rip.top - rip.bottom;
185 rip.line[i].dy = --rip.bottom;
369 n = rip.top - rip.bottom;
H A Dprivate.h84 #define W_SCROLL_WINDOW 0x0010 /* Touches bottom-right corner */
123 int bottom; /* # of lines off the bottom (-ve). */ member in struct:__anon4224
125 int dy; /* Distance from screen top/bottom. */
/illumos-gate/usr/src/lib/libeti/menu/common/
H A Dvisible.c43 int bottom; local
51 bottom = Top(m) + Height(m) - 1;
52 if (Y(i) >= Top(m) && Y(i) <= bottom) {
/illumos-gate/usr/src/lib/libcurses/screen/
H A Doverlap.c56 top, bottom, left, right; local
71 top = _MAX(sby, dby); bottom = _MIN(sey, dey);
75 dey = bottom - dby - 1; dex = right - dbx - 1;
H A Dinit_pair.c82 short bottom = -1; local
100 bottom = i;
106 _VIRTBOT = bottom;
/illumos-gate/usr/src/uts/common/io/
H A Dvuid_queue.c55 vq->top = vq->bottom = vq->free = VUID_Q_NODE_NULL;
70 for (vp = vq->bottom; vp; vp = vp->prev) {
71 /* Put later times closer to the bottom than earlier ones */
89 /* Change bottom */
90 if (vp == vq->bottom)
91 vq->bottom = vqn;
117 /* Change bottom */
118 if (vq->bottom == vqn)
119 vq->bottom = VUID_Q_NODE_NULL;
151 /* Change bottom */
[all...]
/illumos-gate/usr/src/lib/libeti/panel/
H A DMakefile.com30 bottom.o \
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dring.c78 #define ring_decrement(d, a, c) (((a)-(c) >= (d)->bottom)? \
113 ring->supply = ring->consume = ring->bottom = buffer;
115 ring->top = ring->bottom+ring->size;
193 ring->bottom <= ring->clearto &&
194 ring->bottom + ((ring->consume + count) - ring->top))
203 ring->consume = ring->supply = ring->bottom;
348 (*encryptor)(ring->bottom, s - ring->bottom);
H A Dring.h63 unsigned char *bottom; /* lowest address in buffer */ member in struct:__anon145
H A Dterminal.c132 n1 = TerminalWrite((char *)ttyoring.bottom, n1);
/illumos-gate/usr/src/grub/grub-0.97/lib/
H A Dgetopt.c314 int bottom = first_nonopt;
346 while (top > middle && middle > bottom)
348 if (top - middle > middle - bottom)
351 int len = middle - bottom;
357 tem = argv[bottom + i];
358 argv[bottom + i] = argv[top - (middle - bottom) + i];
359 argv[top - (middle - bottom) + i] = tem;
360 SWAP_FLAGS (bottom + i, top - (middle - bottom)
311 int bottom = first_nonopt; local
[all...]
/illumos-gate/usr/src/uts/common/sys/
H A Dvuid_queue.h49 struct vuid_q_node *bottom; /* input queue head (last in line) */ member in struct:vuid_queue
/illumos-gate/usr/src/cmd/mandoc/
H A Deqn_html.c119 if (bp->top || bp->bottom) {
121 if (bp->top && NULL == bp->bottom)
123 else if (bp->top && bp->bottom)
125 else if (bp->bottom)
161 if (NULL != bp->bottom) {
163 print_text(p, bp->bottom);
H A Dtree.c316 if (ep->bottom)
317 printf(" bottom=\"%s\"", ep->bottom);
H A Deqn_term.c123 if (bp->bottom != NULL) {
/illumos-gate/usr/src/lib/libc/i386/gen/
H A D_mul64.s52 xchg %ecx,%eax / ecx = bottom half of ad.
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dcommon.c119 mmap_avail_at (unsigned long bottom) argument
125 top = bottom;
149 return (unsigned long) top - bottom;
/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dcubetype.sh35 comvar=(top=8 bottom=9)
73 b.comvar.bottom=11
/illumos-gate/usr/src/tools/scripts/
H A Dwdiff.pl105 border-bottom: solid 1px #444;
125 table.hidebar { border: none; border-bottom: 1px dotted #000000; }
212 # onclick handler assigned at bottom

Completed in 90 milliseconds

12