Home
last modified time | relevance | path

Searched full:bottom (Results 1 – 25 of 1051) sorted by relevance

12345678910>>...43

/freebsd/contrib/llvm-project/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()
84 return {stack_.bottom, stack_.top}; in GetStackBounds()
89 if (cur_stack >= next_stack_.bottom && cur_stack < next_stack_.top) in GetStackBounds()
90 return {next_stack_.bottom, next_stack_.top}; in GetStackBounds()
91 return {stack_.bottom, stack_.top}; in GetStackBounds()
96 uptr MsanThread::stack_bottom() { return GetStackBounds().bottom; } in stack_bottom()
100 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
[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/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 …]
/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/llvm/lib/Target/WebAssembly/
H A DWebAssemblySortRegion.cpp53 MachineBasicBlock *Bottom = ML->getHeader(); in getBottom() local
55 if (MBB->getNumber() > Bottom->getNumber()) in getBottom()
56 Bottom = MBB; in getBottom()
59 // purpose of CFG sorting and stackification, we need a bottom BB among all in getBottom()
61 // WebAssemblyException contained in this loop, and computes the most bottom in getBottom()
65 if (ExBottom->getNumber() > Bottom->getNumber()) in getBottom()
66 Bottom = ExBottom; in getBottom()
69 return Bottom; in getBottom()
73 MachineBasicBlock *Bottom = WE->getHeader(); in getBottom() local
75 if (MBB->getNumber() > Bottom->getNumber()) in getBottom()
[all …]
/freebsd/contrib/bsddialog/examples_library/
H A Dmixedlist.c24 { "+", true, 0, "Name 1", "Desc 1", "Bottom Desc 1" }, in main()
25 { "" , false, 0, "Name 2", "Desc 2", "Bottom Desc 2" }, in main()
26 { "+", true, 0, "Name 3", "Desc 3", "Bottom Desc 3" }, in main()
27 { "" , false, 0, "Name 4", "Desc 4", "Bottom Desc 4" }, in main()
28 { "+", true, 0, "Name 5", "Desc 5", "Bottom Desc 5" } in main()
35 { "", true, 0, "Name 1", "Desc 1", "Bottom Desc 1" }, in main()
36 { "+", false, 0, "Name 2", "Desc 2", "Bottom Desc 2" }, in main()
37 { "", false, 0, "Name 3", "Desc 3", "Bottom Desc 3" }, in main()
38 { "+", false, 0, "Name 4", "Desc 4", "Bottom Desc 4" }, in main()
39 { "", false, 0, "Name 5", "Desc 5", "Bottom Desc 5" } in main()
H A Dchecklist.c19 {"i", true, 0, "Name 1", "Desc 1", "Bottom Desc 1"}, in main()
20 {"ii", false, 0, "Name 2", "Desc 2", "Bottom Desc 2"}, in main()
21 {"iii", true, 0, "Name 3", "Desc 3", "Bottom Desc 3"}, in main()
22 {"iv", false, 0, "Name 4", "Desc 4", "Bottom Desc 4"}, in main()
23 {"v", true, 0, "Name 5", "Desc 5", "Bottom Desc 5"} in main()
H A Dmenu.c19 {"I", true, 0, "Name 1", "Desc 1", "Bottom Desc 1"}, in main()
20 {"II", false, 0, "Name 2", "Desc 2", "Bottom Desc 2"}, in main()
21 {"III", true, 0, "Name 3", "Desc 3", "Bottom Desc 3"}, in main()
22 {"IV", false, 0, "Name 4", "Desc 4", "Bottom Desc 4"}, in main()
23 {"V", true, 0, "Name 5", "Desc 5", "Bottom Desc 5"} in main()
H A Dradiolist.c19 {"I", true, 0, "Name 1", "Desc 1", "Bottom Desc 1"}, in main()
20 {"II", false, 0, "Name 2", "Desc 2", "Bottom Desc 2"}, in main()
21 {"III", true, 0, "Name 3", "Desc 3", "Bottom Desc 3"}, in main()
22 {"IV", false, 0, "Name 4", "Desc 4", "Bottom Desc 4"}, in main()
23 {"V", true, 0, "Name 5", "Desc 5", "Bottom Desc 5"} in main()
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_rand.c23 static int bnrand(BNRAND_FLAG flag, BIGNUM *rnd, int bits, int top, int bottom, in bnrand() argument
31 if (top != BN_RAND_TOP_ANY || bottom != BN_RAND_BOTTOM_ANY) in bnrand()
49 /* make a random number and set the top and bottom bits */ 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
119 BN_priv_rand_ex(BIGNUM * rnd,int bits,int top,int bottom,unsigned int strength,BN_CTX * ctx) BN_priv_rand_ex() argument
126 BN_priv_rand(BIGNUM * rnd,int bits,int top,int bottom) BN_priv_rand() argument
231 BN_pseudo_rand(BIGNUM * rnd,int bits,int top,int bottom) BN_pseudo_rand() argument
[all...]
/freebsd/contrib/dialog/
H A Darrows.c68 * decorations at the bottom of the dialog window.
73 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()
[all …]
/freebsd/share/doc/usd/22.trofftut/
H A Dtt0961 ^fo 'left bottom'center bottom'right bottom'
104 at the bottom of each page,
107 of the bottom of the page,
118 `measure up from the bottom of the page',
120 `\-1i' means `one inch from the bottom'.
138 and after a line is printed within one inch from the bottom,
274 To get a footer at the bottom of a page,
283 at the bottom margin and a header macro invoked
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp153 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, in StartSwitchFiber() argument
160 next_stack_bottom_ = bottom; in StartSwitchFiber()
161 next_stack_top_ = bottom + size; in StartSwitchFiber()
216 uptr AsanThread::stack_bottom() { return GetStackBounds().bottom; } in stack_bottom()
220 return bounds.top - bounds.bottom; in stack_size()
341 uptr bottom = 0; in GetStackFrameAccessByAddr() local
343 bottom = stack_bottom(); in GetStackFrameAccessByAddr()
345 bottom = fake_stack->AddrIsInFakeStack(addr); in GetStackFrameAccessByAddr()
346 CHECK(bottom); in GetStackFrameAccessByAddr()
347 access->offset = addr - bottom; in GetStackFrameAccessByAddr()
[all …]
/freebsd/sys/dev/asmc/
H A Dasmcvar.h173 #define ASMC_MB71_TEMPDESCS { "Enclosure Bottom 0", "Battery 1", "Battery 2", "CPU Package", "CPU P…
227 #define ASMC_MBP51_TEMPDESCS { "Enclosure Bottom 0", "Enclosure Bottom 1", \
228 "Enclosure Bottom 2", "Enclosure Bottom 3", \
255 #define ASMC_MBP62_TEMPDESCS { "Enclosure Bottom 0", "Enclosure Bottom 1", \
256 "Enclosure Bottom 2", "CPU 0", \
282 #define ASMC_MBP55_TEMPDESCS { "Enclosure Bottom 0", "Enclosure Bottom 1", \
283 "Enclosure Bottom 2", "Enclosure Bottom 3", \
347 #define ASMC_MBP91_TEMPDESCS { "Ambient", "Enclosure Bottom 1", "Enclosure Bottom 2", \
348 "Enclosure Bottom 3", "CPU Die PECI 0", "CPU Die PECI 1", \
357 "Bottom Skin", "Tsqf" }
[all …]
/freebsd/contrib/less/
H A Dbrac.c22 * which appears in the bottom displayed line (!forwdir).
37 * This is either the top or bottom line on the screen, in match_brac()
40 pos = position((forwdir) ? TOP : BOTTOM); in match_brac()
46 error("Nothing in bottom line", NULL_PARG); in match_brac()
60 error("No bracket in bottom line", NULL_PARG); in match_brac()
92 * If searching forward, put it on the bottom line. in match_brac()
H A Dposition.c36 * the bottom line on the screen
37 * the line after the bottom line on the screen
43 case BOTTOM: in position()
57 * Add a new file position to the bottom of the position table.
177 case BOTTOM: case BOTTOM_PLUS_ONE: in get_scrpos()
213 * (The bottom line, sc_height-1, is reserved for prompts, etc.)
217 * relative to the bottom of the screen.
223 * relative to the bottom of the screen. in sindex_from_sline()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/ncurses/ncurses/base/
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/doc/man3/
H A DBN_rand.pod14 int BN_rand_ex(BIGNUM *rnd, int bits, int top, int bottom,
16 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom);
18 int BN_priv_rand_ex(BIGNUM *rnd, int bits, int top, int bottom,
20 int BN_priv_rand(BIGNUM *rnd, int bits, int top, int bottom);
34 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom);
45 accommodate the requirements specified by the I<top> and I<bottom>
54 If I<bottom> is B<BN_RAND_BOTTOM_ODD>, the number will be odd; if it

12345678910>>...43