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

1234

/freebsd-11-stable/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-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_diag_standalone.cpp22 uptr bottom = 0; local
24 GetThreadStackTopAndBottom(false, &top, &bottom);
25 Unwind(max_depth, pc, bp, nullptr, top, bottom, true);
/freebsd-11-stable/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-stable/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-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_sparc.cpp63 uptr bottom = stack_bottom; local
65 while (IsValidFrame(bp, stack_top, bottom) && IsAligned(bp, sizeof(uhwptr)) &&
78 bottom = bp;
H A Dsanitizer_stacktrace.cpp81 uptr bottom = stack_bottom; local
83 while (IsValidFrame((uptr)frame, stack_top, bottom) &&
91 if (!IsValidFrame((uptr)caller_frame, stack_top, bottom) ||
108 bottom = (uptr)frame;
109 frame = GetCanonicFrame((uptr)frame[0], stack_top, bottom);
H A Dsanitizer_symbolizer_report.cpp102 uptr bottom = 0; local
107 GetThreadStackTopAndBottom(false, &top, &bottom);
108 stack->Unwind(kStackTraceMax, pc, bp, nullptr, top, bottom, true);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_stack_trace.cpp56 uptr bottom = 0; local
58 GetThreadStackTopAndBottom(false, &top, &bottom);
59 Unwind(max_depth, pc, bp, nullptr, top, bottom, true);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp117 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, argument
124 next_stack_bottom_ = bottom;
125 next_stack_top_ = bottom + size;
183 return GetStackBounds().bottom;
188 return bounds.top - bounds.bottom;
323 uptr bottom = 0;
325 bottom = stack_bottom();
327 bottom = fake_stack()->AddrIsInFakeStack(addr);
328 CHECK(bottom);
329 access->offset = addr - bottom;
364 uptr bottom = 0; local
513 __sanitizer_start_switch_fiber(void **fakestacksave, const void *bottom, uptr size) argument
[all...]
H A Dasan_rtl.cpp566 uptr top, bottom; local
569 bottom = ((uptr)&local_stack - PageSize) & ~(PageSize - 1);
577 GetThreadStackAndTls(/*main=*/false, &bottom, &stack_size, &tls_addr,
579 top = bottom + stack_size;
582 if (top - bottom > kMaxExpectedCleanupSize) {
588 "stack top: %p; bottom %p; size: %p (%zd)\n"
592 top, bottom, top - bottom, top - bottom);
595 PoisonShadow(bottom, to
609 uptr bottom = t->stack_bottom(); local
[all...]
H A Dasan_thread.h105 void StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, uptr size);
145 uptr bottom; member in struct:__asan::AsanThread::StackBounds
/freebsd-11-stable/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:__anon5923
/freebsd-11-stable/contrib/telnet/telnet/
H A Dring.c78 #define ring_decrement(d,a,c) (((a)-(c) >= (d)->bottom)? \
106 ring->supply = ring->consume = ring->bottom = buffer;
108 ring->top = ring->bottom+ring->size;
181 ring->bottom <= ring->clearto &&
182 ring->bottom + ((ring->consume + count) - ring->top))
191 ring->consume = ring->supply = ring->bottom;
302 (*encryptor)(ring->bottom, s - ring->bottom);
H A Dring.h56 *bottom, /* lowest address in buffer */ member in struct:__anon3602
/freebsd-11-stable/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-stable/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-stable/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-stable/contrib/mdocml/
H A Deqn_html.c123 if (bp->top || bp->bottom) {
125 if (bp->top && NULL == bp->bottom)
127 else if (bp->top && bp->bottom)
129 else if (bp->bottom)
212 if (NULL != bp->bottom) {
214 print_text(p, bp->bottom);
H A Deqn_term.c62 ((bp->top != NULL || bp->bottom != NULL) &&
141 if (bp->bottom != NULL) {
/freebsd-11-stable/sys/dev/firewire/
H A Dfwohcivar.h51 struct fwohcidb_tr *top, *bottom, *pdb_tr; member in struct:fwohci_softc::fwohci_dbch
/freebsd-11-stable/crypto/openssl/crypto/err/
H A Derr.c733 if (es->top == es->bottom)
734 es->bottom = (es->bottom + 1) % ERR_NUM_ERRORS;
754 es->top = es->bottom = 0;
830 while (es->bottom != es->top) {
836 i = (es->bottom + 1) % ERR_NUM_ERRORS;
838 es->bottom = i;
839 err_clear(es, es->bottom);
845 if (es->bottom == es->top)
851 i = (es->bottom
[all...]
/freebsd-11-stable/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-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h303 /// <c>__sanitizer_start_switch_fiber()</c> with a pointer to the bottom of the
324 /// \param bottom Bottom address of stack.
327 const void *bottom, size_t size);

Completed in 139 milliseconds

1234