| /onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
| H A D | scrreg.c | 47 (setscrreg)(top, bottom) 48 int top, bottom; variable 51 __m_trace("setscrreg(%d, %d)", top, bottom); 54 if (top < 0 || bottom < top || stdscr->_maxy <= bottom) 59 stdscr->_bottom = bottom + 1;
|
| H A D | wscrreg.c | 47 wsetscrreg(w, top, bottom) in wsetscrreg() argument 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 D | newterm.c | 178 i = rip.top - rip.bottom; in ripoffline() 183 rip.line[i].dy = --rip.bottom; in ripoffline() 357 n = rip.top - rip.bottom;
|
| /onnv-gate/usr/src/common/openssl/crypto/bn/ |
| H A D | bn_rand.c | 118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) in bnrand() argument 197 if (bottom) /* set bottom bit if requested */ in bnrand() 211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_rand() argument 213 return bnrand(0, rnd, bits, top, bottom); in BN_rand() 216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_pseudo_rand() argument 218 return bnrand(1, rnd, bits, top, bottom); in BN_pseudo_rand() 222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_bntest_rand() argument 224 return bnrand(2, rnd, bits, top, bottom); in BN_bntest_rand()
|
| /onnv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
| H A D | scrreg.c | 52 setscrreg(int top, int bottom) in setscrreg() argument 54 if (top < 0 || bottom < top || stdscr->_maxy <= bottom) in setscrreg() 59 stdscr->_bottom = (short) bottom + 1; in setscrreg()
|
| H A D | wscrreg.c | 50 wsetscrreg(WINDOW *w, int top, int bottom) in wsetscrreg() argument 52 if (top < 0 || bottom < top || w->_maxy <= bottom) in wsetscrreg() 57 w->_bottom = (short) bottom + 1; in wsetscrreg()
|
| H A D | newterm.c | 180 i = rip.top - rip.bottom; in ripoffline() 185 rip.line[i].dy = --rip.bottom; in ripoffline() 369 n = rip.top - rip.bottom; in newterm()
|
| /onnv-gate/usr/src/uts/common/io/ |
| H A D | vuid_queue.c | 55 vq->top = vq->bottom = vq->free = VUID_Q_NODE_NULL; in vq_initialize() 70 for (vp = vq->bottom; vp; vp = vp->prev) { in vq_put() 90 if (vp == vq->bottom) in vq_put() 91 vq->bottom = vqn; in vq_put() 118 if (vq->bottom == vqn) in vq_get() 119 vq->bottom = VUID_Q_NODE_NULL; in vq_get() 152 if (vq->bottom == VUID_Q_NODE_NULL) in vq_putback() 153 vq->bottom = vqn; in vq_putback() 175 tv_interval = tv_subt(vq->bottom->firm_event.time, in vq_compress() 256 if (vq->bottom == vqn) in vq_delete_node() [all …]
|
| /onnv-gate/usr/src/grub/grub-0.97/lib/ |
| H A D | getopt.c | 311 int bottom = first_nonopt; local 343 while (top > middle && middle > bottom) 345 if (top - middle > middle - bottom) 348 int len = middle - bottom; 354 tem = argv[bottom + i]; 355 argv[bottom + i] = argv[top - (middle - bottom) + i]; 356 argv[top - (middle - bottom) + i] = tem; 357 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); 371 tem = argv[bottom + i]; 372 argv[bottom + i] = argv[middle + i]; [all …]
|
| /onnv-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/ |
| H A D | ring.c | 78 #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);
|
| /onnv-gate/usr/src/lib/libeti/menu/common/ |
| H A D | visible.c | 43 int bottom; in item_visible() local 51 bottom = Top(m) + Height(m) - 1; in item_visible() 52 if (Y(i) >= Top(m) && Y(i) <= bottom) { in item_visible()
|
| /onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/awt/ |
| H A D | GBLayout.java | 596 insets.bottom += windowInsets.bottom; in getInsets() 1281 constraints.hardinsets.bottom; in GetLayoutInfo() 1286 constraints.insets.bottom + in GetLayoutInfo() 1288 constraints.hardinsets.bottom; in GetLayoutInfo() 1370 (insets.top + insets.bottom + c.hardinsets.top + in AdjustForGravity() 1371 c.hardinsets.bottom); in AdjustForGravity() 1438 insets.bottom -= diffy/2; in AdjustForGravity() 1440 insets.bottom += insets.top; in AdjustForGravity() 1443 if (insets.bottom < 0) { in AdjustForGravity() 1444 insets.top += insets.bottom; in AdjustForGravity() [all …]
|
| H A D | ScrollPanel.java | 231 size.height -= (insets.top + insets.bottom + in viewSize() 232 scrollAreaInsets.top + scrollAreaInsets.bottom); in viewSize() 287 int insetsHeight = insets.top + insets.bottom + in calcSize() 288 scrollAreaInsets.top + scrollAreaInsets.bottom; in calcSize()
|
| /onnv-gate/usr/src/lib/libcurses/screen/ |
| H A D | overlap.c | 56 top, bottom, left, right; in _overlap() local 71 top = _MAX(sby, dby); bottom = _MIN(sey, dey); in _overlap() 75 dey = bottom - dby - 1; dex = right - dbx - 1; in _overlap()
|
| H A D | init_pair.c | 82 short bottom = -1; in init_pair() local 100 bottom = i; in init_pair() 106 _VIRTBOT = bottom; in init_pair()
|
| /onnv-gate/usr/src/lib/libparted/common/lib/ |
| H A D | getopt.c | 154 int bottom = d->__first_nonopt; in exchange() local 186 while (top > middle && middle > bottom) in exchange() 188 if (top - middle > middle - bottom) in exchange() 191 int len = middle - bottom; in exchange() 197 tem = argv[bottom + i]; in exchange() 198 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange() 199 argv[top - (middle - bottom) + i] = tem; in exchange() 200 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange() 214 tem = argv[bottom + i]; in exchange() 215 argv[bottom + i] = argv[middle + i]; in exchange() [all …]
|
| /onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/type/ |
| H A D | InsetsConverter.java | 67 s = s + /* NOI18N */"bottom=" + insets.bottom in convertToString() 128 insets.bottom = getIntegerFromTable(table, in convertFromString() 149 + i.bottom + /* NOI18N */", " + i.right in convertToCode()
|
| /onnv-gate/usr/src/common/openssl/crypto/err/ |
| H A D | err.c | 693 if (es->top == es->bottom) in ERR_put_error() 694 es->bottom=(es->bottom+1)%ERR_NUM_ERRORS; in ERR_put_error() 713 es->top=es->bottom=0; in ERR_clear_error() 770 if (es->bottom == es->top) return 0; in get_error_values() 774 i=(es->bottom+1)%ERR_NUM_ERRORS; /* first error */ in get_error_values() 779 es->bottom=i; in get_error_values() 1005 ret->bottom=0; in ERR_get_state() 1095 if (es->bottom == es->top) return 0; in ERR_set_mark() 1106 while(es->bottom != es->top in ERR_pop_to_mark() 1114 if (es->bottom == es->top) return 0; in ERR_pop_to_mark()
|
| /onnv-gate/usr/src/common/openssl/doc/crypto/ |
| H A D | BN_rand.pod | 11 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom); 13 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom); 26 numbers will always have 2*B<bits> length. If B<bottom> is true, the
|
| /onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/ui/ |
| H A D | FieldLayout.java | 149 dim.height += insets.top + insets.bottom + vgap; in preferredLayoutSize() 178 dim.height += insets.top + insets.bottom + vgap; in minimumLayoutSize() 199 if ((pDim.height > (dim.height - insets.top - insets.bottom)) || in layoutContainer() 204 ySlop = dim.height - insets.top - insets.bottom - pDim.height; in layoutContainer()
|
| H A D | VerticalButtonLayout.java | 119 dim.height += insets.top + insets.bottom + vgap*2; in preferredLayoutSize() 144 dim.height += insets.top + insets.bottom + vgap*2; in minimumLayoutSize() 187 int maxheight = tdim.height - (insets.top + insets.bottom + vgap*2); in layoutContainer()
|
| H A D | ProportionalLayout.java | 107 dim.height += insets.top + insets.bottom; in computeLayoutSize() 124 int totalHeight = dim.height - insets.bottom; in layoutContainer()
|
| /onnv-gate/usr/src/grub/grub-0.97/stage2/ |
| H A D | common.c | 118 mmap_avail_at (unsigned long bottom) in mmap_avail_at() argument 124 top = bottom; in mmap_avail_at() 148 return (unsigned long) top - bottom; in mmap_avail_at()
|
| /onnv-gate/usr/src/cmd/lp/filter/postscript/font/devpost/charlib/ |
| H A D | BRACKETS_NOTE | 25 and bottom bracket pieces used by eqn. The files are only used if the character 40 Symbol font and then draws a small horizontal line at either the top or bottom 42 properly, but getting to the precise top or bottom of the \(bv (down to the 52 bottom of the bv for the horizontal extender solved the problems I originally
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/ucm/ |
| H A D | macSymbol.ucm | 52 <U0028><UF872> \xE8 |3 # LEFT PARENTHESIS, fragment (bottom) 56 <U0029><UF872> \xF8 |3 # RIGHT PARENTHESIS, fragment (bottom) 80 <U005B><UF872> \xEB |3 # LEFT SQUARE BRACKET, fragment (bottom) 84 <U005D><UF872> \xFB |3 # RIGHT SQUARE BRACKET, fragment (bottom) 89 <U007B><UF872> \xEE |3 # LEFT CURLY BRACKET, fragment (bottom) 94 <U007D><UF872> \xFE |3 # RIGHT CURLY BRACKET, fragment (bottom)
|