Home
last modified time | relevance | path

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

12345678910>>...25

/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_thread.cc118 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, in StartSwitchFiber() argument
125 next_stack_bottom_ = bottom; in StartSwitchFiber()
126 next_stack_top_ = bottom + size; in StartSwitchFiber()
184 return GetStackBounds().bottom; in stack_bottom()
189 return bounds.top - bounds.bottom; in stack_size()
325 uptr bottom = 0; in GetStackFrameAccessByAddr() local
327 bottom = stack_bottom(); in GetStackFrameAccessByAddr()
329 bottom = fake_stack()->AddrIsInFakeStack(addr); in GetStackFrameAccessByAddr()
330 CHECK(bottom); in GetStackFrameAccessByAddr()
331 access->offset = addr - bottom; in GetStackFrameAccessByAddr()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_thread.cc120 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, in StartSwitchFiber() argument
127 next_stack_bottom_ = bottom; in StartSwitchFiber()
128 next_stack_top_ = bottom + size; in StartSwitchFiber()
186 return GetStackBounds().bottom; in stack_bottom()
191 return bounds.top - bounds.bottom; in stack_size()
319 uptr bottom = 0; in GetStackFrameAccessByAddr() local
321 bottom = stack_bottom(); in GetStackFrameAccessByAddr()
323 bottom = fake_stack()->AddrIsInFakeStack(addr); in GetStackFrameAccessByAddr()
324 CHECK(bottom); in GetStackFrameAccessByAddr()
325 access->offset = addr - bottom; in GetStackFrameAccessByAddr()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_thread.cpp126 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, in StartSwitchFiber() argument
133 next_stack_bottom_ = bottom; in StartSwitchFiber()
134 next_stack_top_ = bottom + size; in StartSwitchFiber()
192 return GetStackBounds().bottom; in stack_bottom()
197 return bounds.top - bounds.bottom; in stack_size()
338 uptr bottom = 0; in GetStackFrameAccessByAddr() local
340 bottom = stack_bottom(); in GetStackFrameAccessByAddr()
342 bottom = fake_stack->AddrIsInFakeStack(addr); in GetStackFrameAccessByAddr()
343 CHECK(bottom); in GetStackFrameAccessByAddr()
344 access->offset = addr - bottom; in GetStackFrameAccessByAddr()
[all …]
H A Dasan_rtl.cpp547 void UnpoisonStack(uptr bottom, uptr top, const char *type) { in UnpoisonStack() argument
549 if (top - bottom > kMaxExpectedCleanupSize) { in UnpoisonStack()
560 type, (void *)top, (void *)bottom, (void *)(top - bottom), in UnpoisonStack()
561 top - bottom); in UnpoisonStack()
564 PoisonShadow(bottom, RoundUpTo(top - bottom, SHADOW_GRANULARITY), 0); in UnpoisonStack()
568 uptr bottom, top; in UnpoisonDefaultStack() local
574 bottom = ((uptr)&local_stack - page_size) & ~(page_size - 1); in UnpoisonDefaultStack()
579 GetThreadStackAndTls(/*main=*/false, &bottom, &stack_size, &tls_addr, in UnpoisonDefaultStack()
581 top = bottom + stack_size; in UnpoisonDefaultStack()
584 UnpoisonStack(bottom, top, "default"); in UnpoisonDefaultStack()
[all …]
H A Dasan_fuchsia.cpp73 uptr bottom = curr_thread->stack_bottom(); in PlatformUnpoisonStacks() local
77 if (local_stack >= bottom && local_stack <= top) { in PlatformUnpoisonStacks()
80 bottom = RoundDownTo(local_stack, GetPageSize()); in PlatformUnpoisonStacks()
81 UnpoisonStack(bottom, top, "default"); in PlatformUnpoisonStacks()
85 UnpoisonStack(bottom, top, "default"); in PlatformUnpoisonStacks()
86 bottom = RoundDownTo(local_stack, GetPageSize()); in PlatformUnpoisonStacks()
87 top = bottom + GetPageSize(); in PlatformUnpoisonStacks()
88 UnpoisonStack(bottom, top, "unknown"); in PlatformUnpoisonStacks()
/netbsd-src/crypto/external/bsd/openssl/dist/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()
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 …]
/netbsd-src/sys/arch/amiga/dev/
H A Dite_rh.c147 screen_up(struct ite_softc *ip, int top, int bottom, int lines) in screen_up() argument
151 if (top >= bottom) in screen_up()
154 if (top + lines >= bottom) { in screen_up()
155 RZ3AlphaErase(ip->grf, 0, top, bottom - top, ip->cols); in screen_up()
159 RZ3AlphaCopy(ip->grf, 0, top+lines, 0, top, ip->cols, bottom-top-lines+1); in screen_up()
160 RZ3AlphaErase(ip->grf, 0, bottom - lines + 1, ip->cols, lines); in screen_up()
165 screen_down (struct ite_softc *ip, int top, int bottom, int lines) in screen_down() argument
169 if (top >= bottom) in screen_down()
172 if (top + lines >= bottom) { in screen_down()
173 RZ3AlphaErase(ip->grf, 0, top, bottom - top, ip->cols); in screen_down()
[all …]
H A Dite_ul.c300 static void screen_up(struct ite_softc *ip, int top, int bottom, int lines) in screen_up() argument
309 printf("screen_up %d %d %d ->",top,bottom,lines); in screen_up()
313 if (top >= bottom) in screen_up()
316 if (top + lines >= bottom) in screen_up()
318 ulowell_clear (ip, top, 0, bottom - top, ip->cols); in screen_up()
326 cmd[4] = (bottom-top+1) * ip->ftheight; /* h */ in screen_up()
331 ulowell_clear(ip, bottom-lines+1, 0, lines-1, ip->cols); in screen_up()
334 static void screen_down(struct ite_softc *ip, int top, int bottom, int lines) in screen_down() argument
343 printf("screen_down %d %d %d ->",top,bottom,lines); in screen_down()
348 if (top >= bottom) in screen_down()
[all …]
H A Dite_rt.c146 screen_up(struct ite_softc *ip, int top, int bottom, int lines) in screen_up() argument
153 if (top >= bottom) in screen_up()
156 if (top + lines >= bottom) in screen_up()
158 retina_clear (ip, top, 0, bottom - top, ip->cols); in screen_up()
199 short x = (1 + bottom - (top + lines)) * (md->TX / 16) - 1; in screen_up()
241 f += (1 + bottom - lines) * md->TX * 2; in screen_up()
256 p += (1 + bottom - lines) * (md->TX/4); in screen_up()
274 screen_down(struct ite_softc *ip, int top, int bottom, int lines) in screen_down() argument
281 if (top >= bottom) in screen_down()
284 if (top + lines >= bottom) in screen_down()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/bn/
H A Dbn_rand.c21 static int bnrand(BNRAND_FLAG flag, BIGNUM *rnd, int bits, int top, int bottom) in bnrand() argument
27 if (top != BN_RAND_TOP_ANY || bottom != BN_RAND_BOTTOM_ANY) in bnrand()
82 if (bottom) /* set bottom bit if requested */ in bnrand()
97 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_rand() argument
99 return bnrand(NORMAL, rnd, bits, top, bottom); in BN_rand()
102 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_bntest_rand() argument
104 return bnrand(TESTING, rnd, bits, top, bottom); in BN_bntest_rand()
107 int BN_priv_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_priv_rand() argument
109 return bnrand(PRIVATE, rnd, bits, top, bottom); in BN_priv_rand()
187 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_pseudo_rand() argument
[all …]
/netbsd-src/lib/libcurses/
H A Dscroll.c70 * Set the top and bottom of the scrolling region for stdscr.
73 setscrreg(int top, int bottom) in setscrreg() argument
76 return wsetscrreg(stdscr, top, bottom); in setscrreg()
81 * Get the top and bottom of the scrolling region for stdscr.
84 getscrreg(int *top, int *bottom)
87 return wgetscrreg(stdscr, top, bottom); in wscrl()
128 * Set the top and bottom of the scrolling region for win.
131 wsetscrreg(WINDOW *win, int top, int bottom) in has_ic()
136 if (top < 0 || bottom >= win->maxy || bottom in has_ic()
117 wsetscrreg(WINDOW * win,int top,int bottom) wsetscrreg() argument
[all...]
H A Dborder.c51 border(chtype left, chtype right, chtype top, chtype bottom, chtype topleft, in border() argument
54 return wborder(stdscr, left, right, top, bottom, topleft, topright, in border()
66 wborder(WINDOW *win, chtype left, chtype right, chtype top, chtype bottom, in wborder() argument
82 if (!(bottom & __CHARTEXT)) in wborder()
83 bottom |= ACS_HLINE; in wborder()
100 __CTRACE(__CTRACE_INPUT, "wborder: bottom = %c, 0x%x\n", in wborder()
101 bottom & __CHARTEXT, bottom & __ATTRIBUTES); in wborder()
118 bottom |= (bottom in wborder()
[all...]
/netbsd-src/external/bsd/tmux/dist/
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 …]
/netbsd-src/external/gpl2/mkhybrid/dist/
H A Dgetopt.c235 int bottom = first_nonopt; in exchange() local
245 while (top > middle && middle > bottom) in exchange()
247 if (top - middle > middle - bottom) in exchange()
250 int len = middle - bottom; in exchange()
256 tem = argv[bottom + i]; in exchange()
257 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
258 argv[top - (middle - bottom) + i] = tem; in exchange()
272 tem = argv[bottom + i]; in exchange()
273 argv[bottom + i] = argv[middle + i]; in exchange()
277 bottom += len; in exchange()
/netbsd-src/external/mit/libcbor/dist/docs/doxygen/
H A Dcustomdoxygen.css24 //border-bottom: 1px solid #879ECB;
25 border-bottom: none;
32 margin-bottom: 20px;
34 //padding-bottom: 4px;
84 margin-bottom: 0px;
88 margin-bottom: 4px;
92 margin-bottom: 2px;
233 padding-bottom: 0px;
272 margin-bottom: 3px;
282 …background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(…
[all …]
H A Ddoxygen.css21 border-bottom: 1px solid #879ECB;
27 padding-bottom: 4px;
68 margin-bottom: 0px;
72 margin-bottom: 4px;
76 margin-bottom: 2px;
195 padding-bottom: 0px;
248 margin-bottom: 3px;
258 …background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(…
330 margin-bottom: 0px;
410 margin-bottom: 0px;
[all …]
/netbsd-src/external/gpl3/binutils/dist/libiberty/
H A Dgetopt.c318 int bottom = first_nonopt; in exchange() local
350 while (top > middle && middle > bottom) in exchange()
352 if (top - middle > middle - bottom) in exchange()
355 int len = middle - bottom; in exchange()
361 tem = argv[bottom + i]; in exchange()
362 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
363 argv[top - (middle - bottom) + i] = tem; in exchange()
364 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange()
378 tem = argv[bottom + i]; in exchange()
379 argv[bottom + i] = argv[middle + i]; in exchange()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libiberty/
H A Dgetopt.c318 int bottom = first_nonopt; in exchange() local
350 while (top > middle && middle > bottom) in exchange()
352 if (top - middle > middle - bottom) in exchange()
355 int len = middle - bottom; in exchange()
361 tem = argv[bottom + i]; in exchange()
362 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
363 argv[top - (middle - bottom) + i] = tem; in exchange()
364 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange()
378 tem = argv[bottom + i]; in exchange()
379 argv[bottom + i] = argv[middle + i]; in exchange()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/
H A Dgetopt.c318 int bottom = first_nonopt; in exchange() local
350 while (top > middle && middle > bottom) in exchange()
352 if (top - middle > middle - bottom) in exchange()
355 int len = middle - bottom; in exchange()
361 tem = argv[bottom + i]; in exchange()
362 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
363 argv[top - (middle - bottom) + i] = tem; in exchange()
364 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange()
378 tem = argv[bottom + i]; in exchange()
379 argv[bottom + i] = argv[middle + i]; in exchange()
[all …]
/netbsd-src/external/gpl2/gmake/dist/
H A Dgetopt.c302 int bottom = first_nonopt; in exchange() local
334 while (top > middle && middle > bottom) in exchange()
336 if (top - middle > middle - bottom) in exchange()
339 int len = middle - bottom; in exchange()
345 tem = argv[bottom + i]; in exchange()
346 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
347 argv[top - (middle - bottom) + i] = tem; in exchange()
348 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange()
362 tem = argv[bottom + i]; in exchange()
363 argv[bottom + i] = argv[middle + i]; in exchange()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/
H A Dgetopt.c318 int bottom = first_nonopt; in exchange() local
350 while (top > middle && middle > bottom) in exchange()
352 if (top - middle > middle - bottom) in exchange()
355 int len = middle - bottom; in exchange()
361 tem = argv[bottom + i]; in exchange()
362 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
363 argv[top - (middle - bottom) + i] = tem; in exchange()
364 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange()
378 tem = argv[bottom + i]; in exchange()
379 argv[bottom + i] = argv[middle + i]; in exchange()
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/qxl/
H A Dqxl_draw.c97 drawable->self_bitmap_area.bottom = 0; in make_drawable()
142 int left, right, top, bottom; in qxl_draw_dirty_fb() local
166 bottom = clips->y2; in qxl_draw_dirty_fb()
174 bottom = max_t(int, bottom, (int)clips_ptr->y2); in qxl_draw_dirty_fb()
178 height = bottom - top; in qxl_draw_dirty_fb()
198 drawable_rect.bottom = bottom; in qxl_draw_dirty_fb()
227 drawable->u.copy.src_area.bottom = height; in qxl_draw_dirty_fb()
246 rects[i].bottom = clips_ptr->y2; in qxl_draw_dirty_fb()
/netbsd-src/external/gpl2/diffutils/dist/lib/
H A Dgetopt.c316 int bottom = first_nonopt; local
348 while (top > middle && middle > bottom)
350 if (top - middle > middle - bottom)
353 int len = middle - bottom;
359 tem = argv[bottom + i];
360 argv[bottom + i] = argv[top - (middle - bottom) + i];
361 argv[top - (middle - bottom) + i] = tem;
362 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
376 tem = argv[bottom + i];
377 argv[bottom + i] = argv[middle + i];
[all …]
/netbsd-src/external/gpl2/grep/dist/lib/
H A Dgetopt.c308 int bottom = first_nonopt; local
340 while (top > middle && middle > bottom)
342 if (top - middle > middle - bottom)
345 int len = middle - bottom;
351 tem = argv[bottom + i];
352 argv[bottom + i] = argv[top - (middle - bottom) + i];
353 argv[top - (middle - bottom) + i] = tem;
354 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
368 tem = argv[bottom + i];
369 argv[bottom + i] = argv[middle + i];
[all …]
/netbsd-src/external/gpl2/groff/dist/src/roff/troff/
H A Dcolumn.cpp48 vunits bottom; member in column
283 : bottom(V0), col(0), tail(&col), out(0) in column()
332 return bottom; in get_bottom()
338 bottom += ln->distance(); in add_output_line()
339 bottom += ln->height(); in add_output_line()
348 add_output_line(new node_output_line(pos - bottom, nd, page_offset, before, after)); in print_line()
354 add_output_line(new vjustify_output_line(pos - bottom, typ)); in vjustify()
373 add_output_line(new copy_file_output_line(pos - bottom, filename, page_offset)); in copy_file()
390 bottom -= ln->distance(); in trim()
391 bottom -= ln->height(); in trim()
[all …]

12345678910>>...25