Home
last modified time | relevance | path

Searched refs:bottom (Results 1 – 25 of 325) sorted by relevance

12345678910>>...13

/openbsd-src/gnu/llvm/compiler-rt/lib/msan/
H A Dmsan_thread.cpp25 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_size, &tls_begin_, in SetThreadStackAndTls()
27 stack_.top = stack_.bottom + stack_size; in SetThreadStackAndTls()
35 __msan_unpoison((void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS()
47 CHECK(MEM_IS_APP(stack_.bottom)); in Init()
83 return {stack_.bottom, stack_.top}; in GetStackBounds()
88 if (cur_stack >= next_stack_.bottom && cur_stack < next_stack_.top) in GetStackBounds()
89 return {next_stack_.bottom, next_stack_.top}; in GetStackBounds()
90 return {stack_.bottom, stack_.top}; in GetStackBounds()
95 uptr MsanThread::stack_bottom() { return GetStackBounds().bottom; } in stack_bottom()
99 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
[all …]
/openbsd-src/regress/usr.bin/mandoc/tbl/layout/
H A Dlines.out_ascii85 hline bottom left:
88 vline bottom left:
92 hline and vline bottom left:
96 vline and hline bottom left:
100 double hline bottom:
103 hline, vline, hline bottom:
107 hline bottom right:
110 vline bottom right:
114 vline and hline bottom right:
118 hline and vline bottom right:
[all …]
/openbsd-src/lib/libcurses/base/
H A Dlib_scrreg.c49 wsetscrreg(WINDOW *win, int top, int bottom) in NCURSES_EXPORT()
51 T((T_CALLED("wsetscrreg(%p,%d,%d)"), (void *) win, top, bottom)); in NCURSES_EXPORT()
55 bottom >= 0 && bottom <= win->_maxy && in NCURSES_EXPORT()
56 bottom > top) { in NCURSES_EXPORT()
58 win->_regbottom = (NCURSES_SIZE_T) bottom; in NCURSES_EXPORT()
H A Dlib_scroll.c55 int const bottom, in NCURSES_EXPORT()
64 (void *) win, n, (long) top, (long) bottom)); in NCURSES_EXPORT()
67 || bottom < top in NCURSES_EXPORT()
68 || bottom > win->_maxy) { in NCURSES_EXPORT()
84 #define TopLimit(n) ((n) <= win->_maxy && (n) <= bottom) in NCURSES_EXPORT()
89 for (line = bottom; line >= limit && BottomLimit(line); line--) { in NCURSES_EXPORT()
107 limit = bottom - n; in NCURSES_EXPORT()
115 for (line = bottom; line > limit && BottomLimit(line); line--) { in NCURSES_EXPORT()
121 touchline(win, top, bottom - top + 1); in NCURSES_EXPORT()
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_thread.cpp125 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, in StartSwitchFiber() argument
132 next_stack_bottom_ = bottom; in StartSwitchFiber()
133 next_stack_top_ = bottom + size; in StartSwitchFiber()
191 return GetStackBounds().bottom; in stack_bottom()
196 return bounds.top - bounds.bottom; in stack_size()
335 uptr bottom = 0; in GetStackFrameAccessByAddr() local
337 bottom = stack_bottom(); in GetStackFrameAccessByAddr()
339 bottom = fake_stack->AddrIsInFakeStack(addr); in GetStackFrameAccessByAddr()
340 CHECK(bottom); in GetStackFrameAccessByAddr()
341 access->offset = addr - bottom; in GetStackFrameAccessByAddr()
[all …]
H A Dasan_rtl.cpp530 void UnpoisonStack(uptr bottom, uptr top, const char *type) { in UnpoisonStack() argument
532 if (top - bottom > kMaxExpectedCleanupSize) { in UnpoisonStack()
543 type, (void *)top, (void *)bottom, (void *)(top - bottom), in UnpoisonStack()
544 top - bottom); in UnpoisonStack()
547 PoisonShadow(bottom, RoundUpTo(top - bottom, ASAN_SHADOW_GRANULARITY), 0); in UnpoisonStack()
551 uptr bottom, top; in UnpoisonDefaultStack() local
557 bottom = ((uptr)&local_stack - page_size) & ~(page_size - 1); in UnpoisonDefaultStack()
562 GetThreadStackAndTls(/*main=*/false, &bottom, &stack_size, &tls_addr, in UnpoisonDefaultStack()
564 top = bottom + stack_size; in UnpoisonDefaultStack()
567 UnpoisonStack(bottom, top, "default"); in UnpoisonDefaultStack()
[all …]
H A Dasan_fuchsia.cpp74 uptr bottom = curr_thread->stack_bottom(); in PlatformUnpoisonStacks() local
78 if (local_stack >= bottom && local_stack <= top) { in PlatformUnpoisonStacks()
81 bottom = RoundDownTo(local_stack, GetPageSize()); in PlatformUnpoisonStacks()
82 UnpoisonStack(bottom, top, "default"); in PlatformUnpoisonStacks()
86 UnpoisonStack(bottom, top, "default"); in PlatformUnpoisonStacks()
87 bottom = RoundDownTo(local_stack, GetPageSize()); in PlatformUnpoisonStacks()
88 top = bottom + GetPageSize(); in PlatformUnpoisonStacks()
89 UnpoisonStack(bottom, top, "unknown"); in PlatformUnpoisonStacks()
/openbsd-src/usr.bin/tmux/
H A Dcmd-capture-pane.c114 u_int i, sx, top, bottom, tmp; in cmd_capture_pane_history() local
151 bottom = gd->hsize + gd->sy - 1; in cmd_capture_pane_history()
156 bottom = gd->hsize + gd->sy - 1; in cmd_capture_pane_history()
159 bottom = 0; in cmd_capture_pane_history()
161 bottom = gd->hsize + n; in cmd_capture_pane_history()
162 if (bottom > gd->hsize + gd->sy - 1) in cmd_capture_pane_history()
163 bottom = gd->hsize + gd->sy - 1; in cmd_capture_pane_history()
166 if (bottom < top) { in cmd_capture_pane_history()
167 tmp = bottom; in cmd_capture_pane_history()
168 bottom = top; in cmd_capture_pane_history()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/dfsan/
H A Ddfsan_thread.cpp26 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_size, &tls_begin_, in SetThreadStackAndTls()
28 stack_.top = stack_.bottom + stack_size; in SetThreadStackAndTls()
36 dfsan_set_label(0, (void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS()
87 return {stack_.bottom, stack_.top}; in GetStackBounds()
92 uptr DFsanThread::stack_bottom() { return GetStackBounds().bottom; } in stack_bottom()
96 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
/openbsd-src/lib/libcrypto/bn/
H A Dbn_rand.c123 bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) in bnrand() argument
190 if (bottom) /* set bottom bit if requested */ in bnrand()
202 BN_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_rand() argument
204 return bnrand(0, rnd, bits, top, bottom); in BN_rand()
209 BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_pseudo_rand() argument
211 return bnrand(1, rnd, bits, top, bottom); in BN_pseudo_rand()
217 BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_bntest_rand() argument
219 return bnrand(2, rnd, bits, top, bottom); in BN_bntest_rand()
/openbsd-src/gnu/usr.bin/cvs/lib/
H A Dgetopt.c229 int bottom = first_nonopt; local
239 while (top > middle && middle > bottom)
241 if (top - middle > middle - bottom)
244 int len = middle - bottom;
250 tem = argv[bottom + i];
251 argv[bottom + i] = argv[top - (middle - bottom) + i];
252 argv[top - (middle - bottom) + i] = tem;
266 tem = argv[bottom + i];
267 argv[bottom + i] = argv[middle + i];
271 bottom += len;
/openbsd-src/gnu/usr.sbin/mkhybrid/src/
H A Dgetopt.c236 int bottom = first_nonopt; local
246 while (top > middle && middle > bottom)
248 if (top - middle > middle - bottom)
251 int len = middle - bottom;
257 tem = argv[bottom + i];
258 argv[bottom + i] = argv[top - (middle - bottom) + i];
259 argv[top - (middle - bottom) + i] = tem;
273 tem = argv[bottom + i];
274 argv[bottom + i] = argv[middle + i];
278 bottom += len;
/openbsd-src/gnu/lib/libiberty/src/
H A Dgetopt.c319 int bottom = first_nonopt; in exchange() local
351 while (top > middle && middle > bottom) in exchange()
353 if (top - middle > middle - bottom) in exchange()
356 int len = middle - bottom; in exchange()
362 tem = argv[bottom + i]; in exchange()
363 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
364 argv[top - (middle - bottom) + i] = tem; in exchange()
365 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange()
379 tem = argv[bottom + i]; in exchange()
380 argv[bottom + i] = argv[middle + i]; in exchange()
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/doxygen/
H A Dstyle.css12 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top…
16 DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }
25 padding-bottom : 2px;
29 margin-bottom : 2px
37 padding-bottom : 2px;
41 margin-bottom : 2px
/openbsd-src/gnu/gcc/libstdc++-v3/docs/doxygen/
H A Dstyle.css23 margin-bottom: 3px;
29 margin-bottom: 6px;
49 padding-bottom : 2px;
53 margin-bottom : 2px
62 padding-bottom : 2px;
66 margin-bottom : 2px
/openbsd-src/gnu/llvm/clang/www/analyzer/
H A Dcontent.css16 h3 { padding-top: 0.5em; margin-bottom: -0.25em; color:#2d58b7 }
19 li { padding-bottom: 0.5em }
56 border-bottom: 2px solid #cccccc;
61 table.options { margin-left:0px; margin-top:20px; margin-bottom:20px }
62 table.options td { border-bottom: 1px #cccccc dotted }
69 margin:0px; margin-top:20px; margin-bottom:20px;
79 border-bottom: 2px solid #cccccc;
82 table.checkers td { border-right: 1px #cccccc dotted; border-bottom: 1px #cccccc dotted; }
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dgcore.c165 derive_stack_segment (bfd_vma *bottom, bfd_vma *top) in derive_stack_segment() argument
169 gdb_assert (bottom); in derive_stack_segment()
192 *bottom = get_frame_base (fi); in derive_stack_segment()
196 if (*bottom > *top) in derive_stack_segment()
201 *top = *bottom; in derive_stack_segment()
202 *bottom = tmp_vma; in derive_stack_segment()
213 derive_heap_segment (bfd *abfd, bfd_vma *bottom, bfd_vma *top) in derive_heap_segment() argument
222 gdb_assert (bottom); in derive_heap_segment()
279 *bottom = top_of_data_memory; in derive_heap_segment()
/openbsd-src/gnu/llvm/compiler-rt/lib/ubsan/
H A Dubsan_diag_standalone.cpp22 uptr bottom = 0; in UnwindImpl() local
23 GetThreadStackTopAndBottom(false, &top, &bottom); in UnwindImpl()
25 Unwind(max_depth, pc, bp, context, top, bottom, fast); in UnwindImpl()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cpp108 uptr bottom = stack_bottom; in UnwindFast() local
110 while (IsValidFrame((uptr)frame, stack_top, bottom) && in UnwindFast()
118 if (!IsValidFrame((uptr)caller_frame, stack_top, bottom) || in UnwindFast()
138 bottom = (uptr)frame; in UnwindFast()
145 frame = GetCanonicFrame(new_bp, stack_top, bottom); in UnwindFast()
H A Dsanitizer_stacktrace_sparc.cpp63 uptr bottom = stack_bottom; in UnwindFast() local
65 while (IsValidFrame(bp, stack_top, bottom) && IsAligned(bp, sizeof(uhwptr)) && in UnwindFast()
78 bottom = bp; in UnwindFast()
/openbsd-src/games/worms/
H A Dworms.c175 int CO, LI, last, bottom, ch, length, number, trail; in main() local
241 bottom = LI - 1; in main()
299 mvaddch(y = w->ypos[h] = bottom, in main()
320 else if (y == bottom) in main()
327 else if (y == bottom) in main()
334 else if (y == bottom) in main()
/openbsd-src/gnu/llvm/lldb/docs/_static/
H A Dlldb.css34 border-bottom: 2px #fefefe solid;
44 padding-bottom: 15px;
60 margin-bottom: 0;
72 border-bottom: 1px solid #fefefe;
/openbsd-src/usr.bin/mandoc/
H A Deqn_html.c123 if (bp->top || bp->bottom) { in eqn_box()
125 if (bp->top && NULL == bp->bottom) in eqn_box()
127 else if (bp->top && bp->bottom) in eqn_box()
129 else if (bp->bottom) in eqn_box()
212 if (NULL != bp->bottom) { in eqn_box()
214 print_text(p, bp->bottom); in eqn_box()
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_stack_trace.cpp52 uptr bottom = 0; in UnwindImpl() local
53 GetThreadStackTopAndBottom(false, &top, &bottom); in UnwindImpl()
55 Unwind(max_depth, pc, bp, context, top, bottom, fast); in UnwindImpl()
/openbsd-src/gnu/usr.bin/texinfo/lib/
H A Dgetopt.c174 int bottom = d->__first_nonopt; in exchange() local
206 while (top > middle && middle > bottom) in exchange()
208 if (top - middle > middle - bottom) in exchange()
211 int len = middle - bottom; in exchange()
217 tem = argv[bottom + i]; in exchange()
218 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
219 argv[top - (middle - bottom) + i] = tem; in exchange()
220 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange()
234 tem = argv[bottom + i]; in exchange()
235 argv[bottom + i] = argv[middle + i]; in exchange()
[all …]

12345678910>>...13