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

1234

/freebsd-10.1-release/contrib/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
/freebsd-10.1-release/crypto/openssl/crypto/bn/
H A Dbn_rand.c118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
144 /* make a random number and set the top and bottom bits */
190 if (bottom) /* set bottom bit if requested */
204 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
206 return bnrand(0, rnd, bits, top, bottom);
209 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
211 return bnrand(1, rnd, bits, top, bottom);
215 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
217 return bnrand(2, rnd, bits, top, bottom);
[all...]
/freebsd-10.1-release/contrib/dialog/
H A Darrows.c68 * decorations at the bottom of the dialog window.
74 int bottom; local
78 && (bottom = getmaxy(win) - 1) > 0) {
88 (void) wmove(win, bottom, other + (avail - limit) / 2);
103 int bottom,
138 (void) wmove(win, bottom, x);
147 mouse_mkbutton(bottom, x - 1, 6, KEY_NPAGE);
164 int bottom,
193 (void) wmove(win, bottom, right - 7);
204 int all_high = (bottom
98 dlg_draw_arrows2(WINDOW *win, int top_arrow, int bottom_arrow, int x, int top, int bottom, chtype attr, chtype borderattr) argument
156 dlg_draw_scrollbar(WINDOW *win, long first_data, long this_data, long next_data, long total_data, int left, int right, int top, int bottom, chtype attr, chtype borderattr) argument
259 dlg_draw_arrows(WINDOW *win, int top_arrow, int bottom_arrow, int x, int top, int bottom) argument
[all...]
/freebsd-10.1-release/crypto/heimdal/doc/doxyout/gssapi/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
8 margin-bottom : 4px;
34 border-bottom : 1px solid #84B0C7;
94 padding-bottom : 6px;
101 border-bottom : 1px solid #84B0C7;
/freebsd-10.1-release/crypto/heimdal/doc/doxyout/hcrypto/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
8 margin-bottom : 4px;
34 border-bottom : 1px solid #84B0C7;
94 padding-bottom : 6px;
101 border-bottom : 1px solid #84B0C7;
/freebsd-10.1-release/crypto/heimdal/doc/doxyout/hdb/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
8 margin-bottom : 4px;
34 border-bottom : 1px solid #84B0C7;
94 padding-bottom : 6px;
101 border-bottom : 1px solid #84B0C7;
/freebsd-10.1-release/crypto/heimdal/doc/doxyout/hx509/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
8 margin-bottom : 4px;
34 border-bottom : 1px solid #84B0C7;
94 padding-bottom : 6px;
101 border-bottom : 1px solid #84B0C7;
/freebsd-10.1-release/crypto/heimdal/doc/doxyout/krb5/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
8 margin-bottom : 4px;
34 border-bottom : 1px solid #84B0C7;
94 padding-bottom : 6px;
101 border-bottom : 1px solid #84B0C7;
/freebsd-10.1-release/crypto/heimdal/doc/doxyout/ntlm/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
8 margin-bottom : 4px;
34 border-bottom : 1px solid #84B0C7;
94 padding-bottom : 6px;
101 border-bottom : 1px solid #84B0C7;
/freebsd-10.1-release/crypto/heimdal/doc/doxyout/wind/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
8 margin-bottom : 4px;
34 border-bottom : 1px solid #84B0C7;
94 padding-bottom : 6px;
101 border-bottom : 1px solid #84B0C7;
/freebsd-10.1-release/contrib/telnet/telnet/
H A Dring.c82 #define ring_decrement(d,a,c) (((a)-(c) >= (d)->bottom)? \
110 ring->supply = ring->consume = ring->bottom = buffer;
112 ring->top = ring->bottom+ring->size;
185 ring->bottom <= ring->clearto &&
186 ring->bottom + ((ring->consume + count) - ring->top))
195 ring->consume = ring->supply = ring->bottom;
306 (*encryptor)(ring->bottom, s - ring->bottom);
H A Dring.h60 *bottom, /* lowest address in buffer */ member in struct:__anon4569
/freebsd-10.1-release/crypto/heimdal/appl/telnet/telnet/
H A Dring.c57 #define ring_decrement(d,a,c) (((a)-(c) >= (d)->bottom)? \
89 ring->supply = ring->consume = ring->bottom = buffer;
91 ring->top = ring->bottom+ring->size;
164 ring->bottom <= ring->clearto &&
165 ring->bottom + ((ring->consume + count) - ring->top))
174 ring->consume = ring->supply = ring->bottom;
305 (*encryptor)(ring->bottom, s - ring->bottom);
H A Dring.h51 *bottom, /* lowest address in buffer */ member in struct:__anon4935
/freebsd-10.1-release/contrib/gcclibs/libiberty/
H A Dgetopt.c322 int bottom = first_nonopt;
354 while (top > middle && middle > bottom)
356 if (top - middle > middle - bottom)
359 int len = middle - bottom;
365 tem = argv[bottom + i];
366 argv[bottom + i] = argv[top - (middle - bottom) + i];
367 argv[top - (middle - bottom) + i] = tem;
368 SWAP_FLAGS (bottom + i, top - (middle - bottom)
319 int bottom = first_nonopt; local
[all...]
/freebsd-10.1-release/contrib/mdocml/
H A Dstyle.css14 h1 { margin-bottom: 1ex; font-size: 110%; margin-left: -4ex; } /* Section header (Sh, SH). */
15 h2 { margin-bottom: 1ex; font-size: 105%; margin-left: -2ex; } /* Sub-section header (Ss, SS). */
16 table { width: 100%; margin-top: 0ex; margin-bottom: 0ex; } /* All tables. */
19 blockquote { margin-left: 5ex; margin-top: 0ex; margin-bottom: 0ex; } /* D1. */
20 div.section { margin-bottom: 2ex; margin-left: 5ex; } /* Sections (Sh, SH). */
29 table.head { font-size: smaller; margin-bottom: 1em; border-bottom: 1px dotted #dddddd; } /* Document header. */
H A Dexample.style.css12 div.mandoc h1 { margin-bottom: 0ex; font-size: inherit; margin-left: -4ex; } /* Section header (Sh, SH). */
13 div.mandoc h2 { margin-bottom: 0ex; font-size: inherit; margin-left: -2ex; } /* Sub-section header (Ss, SS). */
14 div.mandoc table { width: 100%; margin-top: 0ex; margin-bottom: 0ex; } /* All tables. */
17 div.mandoc blockquote { margin-left: 5ex; margin-top: 0ex; margin-bottom: 0ex; } /* D1, Dl. */
18 div.mandoc div.section { margin-bottom: 2ex; margin-left: 5ex; } /* Sections (Sh, SH). */
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dgcore.c165 derive_stack_segment (bfd_vma *bottom, bfd_vma *top) argument
169 gdb_assert (bottom);
192 *bottom = get_frame_base (fi);
196 if (*bottom > *top)
201 *top = *bottom;
202 *bottom = tmp_vma;
213 derive_heap_segment (bfd *abfd, bfd_vma *bottom, bfd_vma *top) argument
222 gdb_assert (bottom);
279 *bottom = top_of_data_memory;
/freebsd-10.1-release/contrib/groff/src/roff/troff/
H A Dcolumn.cpp46 vunits bottom; member in class:column
281 : bottom(V0), col(0), tail(&col), out(0)
330 return bottom;
336 bottom += ln->distance();
337 bottom += ln->height();
346 add_output_line(new node_output_line(pos - bottom, nd, page_offset, before, after));
352 add_output_line(new vjustify_output_line(pos - bottom, typ));
371 add_output_line(new copy_file_output_line(pos - bottom, filename, page_offset));
388 bottom -= ln->distance();
389 bottom
[all...]
/freebsd-10.1-release/contrib/libyaml/doc/html/
H A Ddoxygen.css38 margin-bottom: 0px;
42 margin-bottom: 4px;
46 margin-bottom: 2px;
154 margin-bottom: 3px;
163 background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
170 margin-bottom: 6px;
225 margin-bottom: 0px;
298 margin-bottom: 0px;
393 margin-bottom: 10px;
425 border-bottom
[all...]
/freebsd-10.1-release/usr.sbin/pkg_install/
H A Dtkpkg34 .f {bottom expand fill} \
35 .frame {bottom expand fill}
109 pack append $w $w.ok {bottom fillx} $w.t {expand fill}
/freebsd-10.1-release/contrib/apr/tables/
H A Dapr_skiplist.c35 apr_skiplistnode *bottom; member in struct:apr_skiplist
169 sl->bottom = NULL;
253 if (!sl->bottom) {
256 return sl->bottom->next;
357 sl->topend = sl->bottomend = sl->top = sl->bottom =
444 /* This sets ret to the bottom-most node we are inserting */
486 p = sl->bottom;
519 /* This only frees the actual data in the bottom one */
527 /* While the row is empty and we are not on the bottom row */
537 sl->bottom
[all...]
/freebsd-10.1-release/sys/dev/firewire/
H A Dfwohcivar.h55 struct fwohcidb_tr *top, *bottom, *pdb_tr; member in struct:fwohci_softc::fwohci_dbch
/freebsd-10.1-release/usr.bin/make/
H A Dsuff.c89 * bottom-most node added to the graph or NULL
1644 Src *bottom; /* Start of found transformation path */ local
1758 bottom = SuffFindThem(&srcs, slst);
1760 if (bottom == NULL) {
1775 for (targ = bottom; targ->parent != NULL; targ = targ->parent)
1895 while (bottom && bottom->parent != NULL) {
1896 if (Lst_Member(slst, bottom) == NULL) {
1897 Lst_AtEnd(slst, bottom);
1899 bottom
[all...]

Completed in 240 milliseconds

1234