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

1234

/freebsd-11.0-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)"), (void *) win, top, bottom));
52 bottom >= 0 && bottom <= win->_maxy &&
53 bottom > top) {
55 win->_regbottom = (NCURSES_SIZE_T) bottom;
H A Dlib_scroll.c52 int const bottom,
61 (void *) 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, int const top, int const bottom, NCURSES_CH_T blank) argument
/freebsd-11.0-release/crypto/openssl/crypto/bn/
H A Dbn_rand.c118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
125 if (top != -1 || bottom != 0)
143 /* make a random number and set the top and bottom bits */
185 if (bottom) /* set bottom bit if requested */
203 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
205 return bnrand(0, rnd, bits, top, bottom);
208 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
210 return bnrand(1, rnd, bits, top, bottom);
214 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
[all...]
/freebsd-11.0-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-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cc81 uptr bottom = stack_bottom; local
83 while (IsValidFrame((uptr)frame, stack_top, bottom) &&
91 if (!IsValidFrame((uptr)caller_frame, stack_top, bottom) ||
101 bottom = (uptr)frame;
102 frame = GetCanonicFrame((uptr)frame[0], stack_top, bottom);
/freebsd-11.0-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:__anon5918
H A Dterminal.c128 n1 = TerminalWrite((char *)ttyoring.bottom, n1);
/freebsd-11.0-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:__anon5556
/freebsd-11.0-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-11.0-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-11.0-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-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_thread.cc215 uptr bottom = 0; local
217 bottom = stack_bottom();
219 bottom = fake_stack()->AddrIsInFakeStack(addr);
220 CHECK(bottom);
221 access->offset = addr - bottom;
222 access->frame_pc = ((uptr*)bottom)[2];
223 access->frame_descr = (const char *)((uptr*)bottom)[1];
228 u8 *shadow_bottom = (u8*)MemToShadow(bottom);
H A Dasan_rtl.cc587 uptr top, bottom; local
590 bottom = ((uptr)&local_stack - PageSize) & ~(PageSize - 1);
594 GetThreadStackAndTls(/*main=*/false, &bottom, &stack_size, &tls_addr,
596 top = bottom + stack_size;
599 if (top - bottom > kMaxExpectedCleanupSize) {
605 "stack top: %p; bottom %p; size: %p (%zd)\n"
609 top, bottom, top - bottom, top - bottom);
612 PoisonShadow(bottom, to
[all...]
H A Dasan_fake_stack.cc278 void __asan_allocas_unpoison(uptr top, uptr bottom) { argument
279 if ((!top) || (top > bottom)) return;
281 (bottom - top) / SHADOW_GRANULARITY);
/freebsd-11.0-release/contrib/mdocml/
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);
/freebsd-11.0-release/sys/dev/firewire/
H A Dfwohcivar.h51 struct fwohcidb_tr *top, *bottom, *pdb_tr; member in struct:fwohci_softc::fwohci_dbch
/freebsd-11.0-release/contrib/apr/tables/
H A Dapr_skiplist.c41 apr_skiplistnode *bottom; member in struct:apr_skiplist
371 if (!sl->bottom) {
374 return sl->bottom->next;
471 /* This sets ret to the bottom-most node we are inserting */
492 sl->bottom = sl->bottomend = m;
503 /* This sets ret to the bottom-most node we are inserting */
537 p = sl->bottom;
570 /* This only frees the actual data in the bottom one */
578 /* While the row is empty and we are not on the bottom row */
588 sl->bottom
[all...]
/freebsd-11.0-release/crypto/heimdal/lib/com_err/
H A Dparse.c304 /* The OS might guarantee only one guard page at the bottom of the stack,
755 yy_stack_print (yytype_int16 *bottom, yytype_int16 *top) argument
758 yy_stack_print (bottom, top)
759 yytype_int16 *bottom;
764 for (; bottom <= top; ++bottom)
765 YYFPRINTF (stderr, " %d", *bottom);
/freebsd-11.0-release/contrib/bmake/
H A Dsuff.c131 * bottom-most node added to the graph or NULL
2052 Src *bottom; /* Start of found transformation path */
2089 bottom = NULL;
2187 bottom = SuffFindThem(srcs, slst);
2189 if (bottom == NULL) {
2204 for (targ = bottom; targ->parent != NULL; targ = targ->parent)
2309 while (bottom && bottom->parent != NULL) {
2310 if (Lst_Member(slst, bottom) == NULL) {
2311 Lst_AtEnd(slst, bottom);
2051 Src *bottom; /* Start of found transformation path */ local
[all...]
/freebsd-11.0-release/crypto/openssl/crypto/err/
H A Derr.c729 if (es->top == es->bottom)
730 es->bottom = (es->bottom + 1) % ERR_NUM_ERRORS;
748 es->top = es->bottom = 0;
822 if (es->bottom == es->top)
827 i = (es->bottom + 1) % ERR_NUM_ERRORS; /* first error */
831 es->bottom = i;
1035 ret->bottom = 0;
1124 if (es->bottom == es->top)
1136 while (es->bottom !
[all...]
/freebsd-11.0-release/crypto/heimdal/lib/asn1/
H A Dasn1parse.c452 /* The OS might guarantee only one guard page at the bottom of the stack,
1147 yy_stack_print (yytype_int16 *bottom, yytype_int16 *top) argument
1150 yy_stack_print (bottom, top)
1151 yytype_int16 *bottom;
1156 for (; bottom <= top; ++bottom)
1157 YYFPRINTF (stderr, " %d", *bottom);
/freebsd-11.0-release/contrib/ofed/libsdp/src/
H A Dconfig_parser.c435 /* The OS might guarantee only one guard page at the bottom of the stack,
915 yy_stack_print (yytype_int16 *bottom, yytype_int16 *top) argument
918 yy_stack_print (bottom, top)
919 yytype_int16 *bottom;
924 for (; bottom <= top; ++bottom)
925 YYFPRINTF (stderr, " %d", *bottom);
/freebsd-11.0-release/contrib/libstdc++/src/
H A DMakefile.am41 sed -n '/DO NOT DELETE/,$$p' $@ > tmp.bottom; \
42 cat tmp.top $(port_specific_symbol_files) tmp.bottom > $@; \
43 rm tmp.top tmp.bottom; \

Completed in 173 milliseconds

1234