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

1234567891011>>

/macosx-10.10.1/ncurses-44/ncurses/ncurses/base/
H A Dlib_scrreg.c46 wsetscrreg(WINDOW *win, int top, int bottom) argument
48 T((T_CALLED("wsetscrreg(%p,%d,%d)"), win, top, bottom));
52 bottom >= 0 && bottom <= win->_maxy &&
53 bottom > top) {
55 win->_regbottom = (NCURSES_SIZE_T) bottom;
H A Dlib_scroll.c52 NCURSES_SIZE_T const bottom,
61 win, n, (long) top, (long) bottom));
64 || bottom < top
65 || bottom > win->_maxy) {
84 for (line = bottom; line >= limit && line >= 0; line--) {
102 limit = bottom - n;
110 for (line = bottom; line > limit && line >= 0; line--) {
116 touchline(win, top, bottom - top + 1);
49 _nc_scroll_window(WINDOW *win, int const n, NCURSES_SIZE_T const top, NCURSES_SIZE_T const bottom, NCURSES_CH_T blank) argument
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_rshd.c35 register mp_digit *bottom, *top; local
39 /* bottom */
40 bottom = a->dp;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
61 *bottom++ = 0;
H A Dbn_mp_lshd.c36 register mp_digit *top, *bottom; local
45 bottom = a->dp + a->used - 1 - b;
49 * the bottom to the top. see bn_mp_rshd.c for more info.
52 *top-- = *bottom--;
/macosx-10.10.1/tcl-105/tcl/tcl/libtommath/
H A Dbn_mp_rshd.c35 register mp_digit *bottom, *top; local
39 /* bottom */
40 bottom = a->dp;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
61 *bottom++ = 0;
H A Dbn_mp_lshd.c36 register mp_digit *top, *bottom; local
45 bottom = a->dp + a->used - 1 - b;
49 * the bottom to the top. see bn_mp_rshd.c for more info.
52 *top-- = *bottom--;
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DApplicationCacheFrameContentView.css31 bottom: 0;
H A DClusterContentView.css31 bottom: 0;
H A DCookieStorageContentView.css31 bottom: 0;
H A DDatabaseTableContentView.css31 bottom: 0;
H A DScriptContentView.css31 bottom: 0;
H A DTextContentView.css31 bottom: 0;
H A DTextResourceContentView.css31 bottom: 0;
H A DContentViewContainer.css36 bottom: 0;
H A DDOMTreeDataGrid.css29 border-bottom: none;
H A DTimelineView.css31 bottom: 0;
40 background-image: linear-gradient(to bottom, transparent, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03));
H A DTimelineOverview.css30 bottom: 0;
49 bottom: 0;
57 bottom: 0;
H A DLayoutTimelineView.css31 bottom: 0;
H A DNetworkTimelineView.css31 bottom: 0;
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_sleep.rb9 bottom = /linux/ =~ RUBY_PLATFORM && /Linux ([\d.]+)/ =~ `uname -sr` && ($1.split('.')<=>%w/2 6 18/)<1 ? 4.98 : 5.0
10 assert_operator(bottom, :<=, slept)
/macosx-10.10.1/cups-408/cups/ppdc/
H A Dppdc-mediasize.cxx51 bottom = bm;
59 if (bottom < 0.0f)
60 bottom = 0.0f;
/macosx-10.10.1/dcerpc-61/www/content/css/blueprint/src/
H A Dtypography.css22 h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
23 h2 { font-size: 2em; margin-bottom: 0.75em; }
24 h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
25 h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
26 h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
52 acronym { border-bottom: 1px dotted #666; }
76 table { margin-bottom: 1.4em; width:100%; }
87 .small { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
88 .large { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
100 .bottom { margi
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/
H A Dbn_rand.c118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
141 /* make a random number and set the top and bottom bits */
197 if (bottom) /* set bottom bit if requested */
211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
213 return bnrand(0, rnd, bits, top, bottom);
216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
218 return bnrand(1, rnd, bits, top, bottom);
222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
224 return bnrand(2, rnd, bits, top, bottom);
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_rand.c65 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
88 /* make a random number and set the top and bottom bits */
144 if (bottom) /* set bottom bit if requested */
157 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
159 return bnrand(0, rnd, bits, top, bottom);
162 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
164 return bnrand(1, rnd, bits, top, bottom);
168 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom)
170 return bnrand(2, rnd, bits, top, bottom);
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dpanedwindow2.rb9 bottom = pw.add(:margin=>10, :minimum=>10)
20 pw.paneconfigure(bottom, :margin=>15)

Completed in 185 milliseconds

1234567891011>>