Home
last modified time | relevance | path

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

12345678910>>...13

/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_thread.cpp23 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_.top, &tls_begin_, in SetThreadStackAndTls()
30 __msan_unpoison((void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS()
42 CHECK(MEM_IS_APP(stack_.bottom)); in Init()
77 return {stack_.bottom, stack_.top}; in GetStackBounds()
82 if (cur_stack >= next_stack_.bottom && cur_stack < next_stack_.top) in GetStackBounds()
83 return {next_stack_.bottom, next_stack_.top}; in GetStackBounds()
84 return {stack_.bottom, stack_.top}; in GetStackBounds()
89 uptr MsanThread::stack_bottom() { return GetStackBounds().bottom; } in stack_bottom()
93 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
96 void MsanThread::StartSwitchFiber(uptr bottom, uptr size) { in StartSwitchFiber() argument
[all …]
/freebsd/contrib/processor-trace/libipt/src/
H A Dpt_retstack.c40 retstack->bottom = 0; in pt_retstack_init()
48 return (retstack->top == retstack->bottom ? 1 : 0); in pt_retstack_is_empty()
60 if (top == retstack->bottom) in pt_retstack_pop()
75 uint8_t top, bottom; in pt_retstack_push() local
81 bottom = retstack->bottom; in pt_retstack_push()
87 if (bottom == top) in pt_retstack_push()
88 bottom = (bottom == pt_retstack_size ? 0 : bottom + 1); in pt_retstack_push()
91 retstack->bottom = bottom; in pt_retstack_push()
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/
H A Dnsan_thread.cpp32 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_.top, &tls_begin_, in SetThreadStackAndTls()
39 __nsan_set_value_unknown((const u8 *)stack_.bottom, in ClearShadowForThreadStackAndTLS()
40 stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS()
85 return {stack_.bottom, stack_.top}; in GetStackBounds()
90 if (cur_stack >= next_stack_.bottom && cur_stack < next_stack_.top) in GetStackBounds()
91 return {next_stack_.bottom, next_stack_.top}; in GetStackBounds()
92 return {stack_.bottom, stack_.top}; in GetStackBounds()
97 uptr NsanThread::stack_bottom() { return GetStackBounds().bottom; } in stack_bottom()
101 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
104 void NsanThread::StartSwitchFiber(uptr bottom, uptr size) { in StartSwitchFiber() argument
[all …]
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_scrreg.c47 wsetscrreg(WINDOW *win, int top, int bottom) in NCURSES_EXPORT()
49 T((T_CALLED("wsetscrreg(%p,%d,%d)"), (void *) win, top, bottom)); in NCURSES_EXPORT()
53 bottom >= 0 && bottom <= win->_maxy && in NCURSES_EXPORT()
54 bottom > top) { in NCURSES_EXPORT()
56 win->_regbottom = (NCURSES_SIZE_T) bottom; in NCURSES_EXPORT()
H A Dlib_scroll.c53 int const bottom, in NCURSES_EXPORT()
62 (void *) win, n, (long) top, (long) bottom)); in NCURSES_EXPORT()
65 || bottom < top in NCURSES_EXPORT()
66 || bottom > win->_maxy) { in NCURSES_EXPORT()
82 #define TopLimit(n) ((n) <= win->_maxy && (n) <= bottom) in NCURSES_EXPORT()
87 for (line = bottom; line >= limit && BottomLimit(line); line--) { in NCURSES_EXPORT()
105 limit = bottom - n; in NCURSES_EXPORT()
113 for (line = bottom; line > limit && BottomLimit(line); line--) { in NCURSES_EXPORT()
119 touchline(win, top, bottom - top + 1); in NCURSES_EXPORT()
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_rand.c25 static int bnrand(BNRAND_FLAG flag, BIGNUM *rnd, int bits, int top, int bottom, in bnrand() argument
33 if (top != BN_RAND_TOP_ANY || bottom != BN_RAND_BOTTOM_ANY) in bnrand()
87 if (bottom) /* set bottom bit if requested */ in bnrand()
102 int BN_rand_ex(BIGNUM *rnd, int bits, int top, int bottom, in BN_rand_ex() argument
105 return bnrand(NORMAL, rnd, bits, top, bottom, strength, ctx); in BN_rand_ex()
108 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_rand() argument
110 return bnrand(NORMAL, rnd, bits, top, bottom, 0, NULL); in BN_rand()
113 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_bntest_rand() argument
115 return bnrand(TESTING, rnd, bits, top, bottom, 0, NULL); in BN_bntest_rand()
119 int BN_priv_rand_ex(BIGNUM *rnd, int bits, int top, int bottom, in BN_priv_rand_ex() argument
[all …]
/freebsd/crypto/openssl/crypto/err/
H A Derr_mark.c23 if (es->bottom == es->top) in ERR_set_mark()
34 if (es == NULL || es->bottom == es->top) in ERR_pop()
50 while (es->bottom != es->top in ERR_pop_to_mark()
56 if (es->bottom == es->top) in ERR_pop_to_mark()
72 while (es->bottom != top in ERR_count_to_mark()
91 while (es->bottom != top in ERR_clear_last_mark()
96 if (es->bottom == top) in ERR_clear_last_mark()
H A Derr_save.c60 es->top = es->bottom = 0; in OSSL_ERR_STATE_save_to_mark()
66 thread_es->bottom != top in OSSL_ERR_STATE_save_to_mark()
102 es->bottom = ERR_NUM_ERRORS - 1; in OSSL_ERR_STATE_save_to_mark()
105 es->top = es->bottom = 0; in OSSL_ERR_STATE_save_to_mark()
118 if (es == NULL || es->bottom == es->top) in OSSL_ERR_STATE_restore()
125 for (i = (size_t)es->bottom; i != (size_t)es->top;) { in OSSL_ERR_STATE_restore()
/freebsd/crypto/heimdal/doc/doxyout/gssapi/html/
H A Ddoxygen.css120 margin-bottom: 4px;
126 padding-bottom: 4px;
132 margin-bottom: 3px;
139 margin-bottom: 6px;
159 padding-bottom : 2px;
163 margin-bottom : 2px;
172 padding-bottom : 2px;
176 margin-bottom : 2px;
209 border-bottom: 1px none #E0E0E0;
220 border-bottom: 1px none #E0E0E0;
[all …]
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/crypto/heimdal/doc/doxyout/hcrypto/html/
H A Ddoxygen.css120 margin-bottom: 4px;
126 padding-bottom: 4px;
132 margin-bottom: 3px;
139 margin-bottom: 6px;
159 padding-bottom : 2px;
163 margin-bottom : 2px;
172 padding-bottom : 2px;
176 margin-bottom : 2px;
209 border-bottom: 1px none #E0E0E0;
220 border-bottom: 1px none #E0E0E0;
[all …]
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/crypto/heimdal/doc/doxyout/hdb/html/
H A Ddoxygen.css120 margin-bottom: 4px;
126 padding-bottom: 4px;
132 margin-bottom: 3px;
139 margin-bottom: 6px;
159 padding-bottom : 2px;
163 margin-bottom : 2px;
172 padding-bottom : 2px;
176 margin-bottom : 2px;
209 border-bottom: 1px none #E0E0E0;
220 border-bottom: 1px none #E0E0E0;
[all …]
/freebsd/crypto/heimdal/doc/doxyout/hx509/html/
H A Ddoxygen.css120 margin-bottom: 4px;
126 padding-bottom: 4px;
132 margin-bottom: 3px;
139 margin-bottom: 6px;
159 padding-bottom : 2px;
163 margin-bottom : 2px;
172 padding-bottom : 2px;
176 margin-bottom : 2px;
209 border-bottom: 1px none #E0E0E0;
220 border-bottom: 1px none #E0E0E0;
[all …]
/freebsd/crypto/heimdal/doc/doxyout/krb5/html/
H A Ddoxygen.css120 margin-bottom: 4px;
126 padding-bottom: 4px;
132 margin-bottom: 3px;
139 margin-bottom: 6px;
159 padding-bottom : 2px;
163 margin-bottom : 2px;
172 padding-bottom : 2px;
176 margin-bottom : 2px;
209 border-bottom: 1px none #E0E0E0;
220 border-bottom: 1px none #E0E0E0;
[all …]
/freebsd/crypto/heimdal/doc/doxyout/ntlm/html/
H A Ddoxygen.css120 margin-bottom: 4px;
126 padding-bottom: 4px;
132 margin-bottom: 3px;
139 margin-bottom: 6px;
159 padding-bottom : 2px;
163 margin-bottom : 2px;
172 padding-bottom : 2px;
176 margin-bottom : 2px;
209 border-bottom: 1px none #E0E0E0;
220 border-bottom: 1px none #E0E0E0;
[all …]
/freebsd/crypto/heimdal/doc/doxyout/wind/html/
H A Ddoxygen.css120 margin-bottom: 4px;
126 padding-bottom: 4px;
132 margin-bottom: 3px;
139 margin-bottom: 6px;
159 padding-bottom : 2px;
163 margin-bottom : 2px;
172 padding-bottom : 2px;
176 margin-bottom : 2px;
209 border-bottom: 1px none #E0E0E0;
220 border-bottom: 1px none #E0E0E0;
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp151 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, in StartSwitchFiber() argument
158 next_stack_bottom_ = bottom; in StartSwitchFiber()
159 next_stack_top_ = bottom + size; in StartSwitchFiber()
214 uptr AsanThread::stack_bottom() { return GetStackBounds().bottom; } in stack_bottom()
218 return bounds.top - bounds.bottom; in stack_size()
336 uptr bottom = 0; in GetStackFrameAccessByAddr() local
338 bottom = stack_bottom(); in GetStackFrameAccessByAddr()
340 bottom = fake_stack->AddrIsInFakeStack(addr); in GetStackFrameAccessByAddr()
341 CHECK(bottom); in GetStackFrameAccessByAddr()
342 access->offset = addr - bottom; in GetStackFrameAccessByAddr()
[all …]
H A Dasan_fuchsia.cpp77 uptr bottom = curr_thread->stack_bottom(); in PlatformUnpoisonStacks() local
81 if (local_stack >= bottom && local_stack <= top) { in PlatformUnpoisonStacks()
84 bottom = RoundDownTo(local_stack, GetPageSize()); in PlatformUnpoisonStacks()
85 UnpoisonStack(bottom, top, "default"); in PlatformUnpoisonStacks()
89 UnpoisonStack(bottom, top, "default"); in PlatformUnpoisonStacks()
90 bottom = RoundDownTo(local_stack, GetPageSize()); in PlatformUnpoisonStacks()
91 top = bottom + GetPageSize(); in PlatformUnpoisonStacks()
92 UnpoisonStack(bottom, top, "unknown"); in PlatformUnpoisonStacks()
H A Dasan_rtl.cpp594 void UnpoisonStack(uptr bottom, uptr top, const char *type) { in UnpoisonStack() argument
596 if (top - bottom > kMaxExpectedCleanupSize) { in UnpoisonStack()
607 type, (void *)top, (void *)bottom, (void *)(top - bottom), in UnpoisonStack()
608 top - bottom); in UnpoisonStack()
611 PoisonShadow(bottom, RoundUpTo(top - bottom, ASAN_SHADOW_GRANULARITY), 0); in UnpoisonStack()
615 uptr bottom, top; in UnpoisonDefaultStack() local
621 bottom = ((uptr)&local_stack - page_size) & ~(page_size - 1); in UnpoisonDefaultStack()
626 GetThreadStackAndTls(/*main=*/false, &bottom, &top, &tls_begin, &tls_end); in UnpoisonDefaultStack()
629 UnpoisonStack(bottom, top, "default"); in UnpoisonDefaultStack()
666 uptr bottom = t->stack_bottom(); in __asan_handle_vfork() local
[all …]
/freebsd/contrib/dialog/
H A Darrows.c73 int bottom; in dlg_draw_helpline() local
77 && (bottom = getmaxy(win) - 1) > 0) { in dlg_draw_helpline()
89 (void) wmove(win, bottom, other + (avail - limit) / 2); in dlg_draw_helpline()
104 int bottom, in dlg_draw_arrows2() argument
139 (void) wmove(win, bottom, x); in dlg_draw_arrows2()
148 mouse_mkbutton(bottom, x - 1, 6, KEY_NPAGE); in dlg_draw_arrows2()
165 int bottom, in dlg_draw_scrollbar() argument
195 (void) wmove(win, bottom, right - 7); in dlg_draw_scrollbar()
206 int all_high = (bottom - top - 1); in dlg_draw_scrollbar()
252 bottom, in dlg_draw_scrollbar()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_thread.cpp24 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_.top, &tls_begin_, in SetThreadStackAndTls()
31 dfsan_set_label(0, (void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS()
82 return {stack_.bottom, stack_.top}; in GetStackBounds()
87 uptr DFsanThread::stack_bottom() { return GetStackBounds().bottom; } in stack_bottom()
91 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
/freebsd/contrib/telnet/telnet/
H A Dring.c76 #define ring_decrement(d,a,c) (((a)-(c) >= (d)->bottom)? \
104 ring->supply = ring->consume = ring->bottom = buffer; in ring_init()
106 ring->top = ring->bottom+ring->size; in ring_init()
179 ring->bottom <= ring->clearto && in ring_consumed()
180 ring->bottom + ((ring->consume + count) - ring->top)) in ring_consumed()
189 ring->consume = ring->supply = ring->bottom; in ring_consumed()
300 (*encryptor)(ring->bottom, s - ring->bottom); in ring_encrypt()
/freebsd/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; in ring_init()
91 ring->top = ring->bottom+ring->size; in ring_init()
164 ring->bottom <= ring->clearto && in ring_consumed()
165 ring->bottom + ((ring->consume + count) - ring->top)) in ring_consumed()
174 ring->consume = ring->supply = ring->bottom; in ring_consumed()
305 (*encryptor)(ring->bottom, s - ring->bottom); in ring_encrypt()
/freebsd/contrib/libxo/doc/_static/
H A Dbasic.css_t71 margin-bottom: 0;
156 margin-bottom: 0;
181 border-bottom: 1px solid #ddd;
188 border-bottom: 1px solid #ddd;
315 margin-bottom: 10px;
324 margin-bottom: 0;
360 border-bottom: 1px solid #aaa;
364 border-bottom: 2px solid #aaa;
383 border-bottom: none;
449 margin-bottom: 15px;
[all …]

12345678910>>...13