HomeSort by: relevance | last modified time | path
    Searched defs:bottom (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag_standalone.cc 24 uptr bottom = 0; local in function:__sanitizer_print_stack_trace
27 __sanitizer::GetThreadStackTopAndBottom(false, &top, &bottom);
32 stack.Unwind(kStackTraceMax, pc, bp, nullptr, top, bottom,
ubsan_diag.cc 33 uptr bottom = 0; local in function:__ubsan::GetStackTrace
35 GetThreadStackTopAndBottom(false, &top, &bottom);
36 stack->Unwind(max_depth, pc, bp, context, top, bottom, fast);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stacktrace_sparc.cc 37 uptr bottom = stack_bottom; local in function:__sanitizer::BufferedStackTrace::FastUnwindStack
39 while (IsValidFrame((uptr)frame, stack_top, bottom) &&
51 bottom = (uptr)frame;
sanitizer_stacktrace.cc 81 uptr bottom = stack_bottom; local in function:__sanitizer::BufferedStackTrace::FastUnwindStack
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);
sanitizer_symbolizer_report.cc 103 uptr bottom = 0; local in function:__sanitizer::ReportMmapWriteExec
108 GetThreadStackTopAndBottom(false, &top, &bottom);
109 stack->Unwind(kStackTraceMax, pc, bp, nullptr, top, bottom, fast);
  /src/usr.bin/telnet/
ring.h 49 *bottom, /* lowest address in buffer */ member in struct:__anon5726843e0108
  /src/games/dab/
box.h 55 bottom = 1, enumerator in enum:BOX::EDGE
  /src/lib/libpuffs/
callcontext.c 338 uintptr_t bottom; local in function:puffs_cc_getcc
343 bottom = ((uintptr_t)&bottom) & ~(stacksize-1);
344 return (struct puffs_cc *)bottom;
  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_draw.c 97 drawable->self_bitmap_area.bottom = 0;
142 int left, right, top, bottom; local in function:qxl_draw_dirty_fb
166 bottom = clips->y2;
174 bottom = max_t(int, bottom, (int)clips_ptr->y2);
178 height = bottom - top;
198 drawable_rect.bottom = bottom;
227 drawable->u.copy.src_area.bottom = height;
246 rects[i].bottom = clips_ptr->y2
    [all...]
  /src/sys/arch/vax/include/
qevent.h 109 short bottom; member in struct:_vs_box
  /src/sys/dev/ieee1394/
fwohcivar.h 53 struct fwohcidb_tr *bottom; member in struct:fwohci_softc::fwohci_dbch
  /src/sys/dev/qbus/
qevent.h 109 short bottom; member in struct:_vs_box
  /src/tests/usr.bin/xlint/lint1/
lang_level_c99.c 150 short top, left, bottom, right; member in struct:short_rect
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_rtl.cc 556 uptr top, bottom; local in function:__asan_handle_no_return
559 bottom = ((uptr)&local_stack - PageSize) & ~(PageSize - 1);
567 GetThreadStackAndTls(/*main=*/false, &bottom, &stack_size, &tls_addr,
569 top = bottom + stack_size;
572 if (top - bottom > kMaxExpectedCleanupSize) {
578 "stack top: %p; bottom %p; size: %p (%zd)\n"
582 top, bottom, top - bottom, top - bottom);
585 PoisonShadow(bottom, top - bottom, 0)
    [all...]
asan_thread.h 106 void StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, uptr size);
144 uptr bottom; member in struct:__asan::AsanThread::StackBounds
asan_interceptors.cc 256 uptr bottom = stack & ~(PageSize - 1); local in function:ClearShadowMemoryForContextStack
257 ssize += stack - bottom;
260 if (AddrIsInMem(bottom) && ssize && ssize <= kMaxSaneContextStackSize) {
261 PoisonShadow(bottom, ssize, 0);
asan_thread.cc 118 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom,
125 next_stack_bottom_ = bottom;
126 next_stack_top_ = bottom + size;
184 return GetStackBounds().bottom;
189 return bounds.top - bounds.bottom;
325 uptr bottom = 0; local in function:__asan::AsanThread::GetStackFrameAccessByAddr
327 bottom = stack_bottom();
329 bottom = fake_stack()->AddrIsInFakeStack(addr);
330 CHECK(bottom);
331 access->offset = addr - bottom;
366 uptr bottom = 0; local in function:__asan::AsanThread::GetStackVariableShadowStart
    [all...]
  /src/sys/external/bsd/drm2/dist/include/uapi/drm/
qxl_drm.h 103 __u32 bottom; member in struct:drm_qxl_update_area
  /src/games/worms/
worms.c 203 int CO, LI, last, bottom, ch, number, trail; local in function:main
436 bottom = LI - 1;
505 mvaddch(y = w->ypos[h] = bottom,
524 : (y == bottom ? lowleft : left))
527 : (y == bottom ? lowright : right))
529 : (y == bottom ? lower : normal)))
  /src/sys/arch/mac68k/dev/
grfvar.h 133 u_int16_t bottom; member in struct:image_data
  /src/sys/arch/atari/dev/
grfabs_reg.h 60 long bottom; member in struct:rectangle
  /src/sys/arch/amiga/dev/
grfabs_reg.h 60 long bottom; member in struct:rectangle
269 (r)->bottom = (b)->y + (b)->height -1; \
276 (b)->height = (r)->bottom - (r)->top +1; \
280 #define INIT_RECT(rc,l,t,r,b) do{(rc)->left = l; (rc)->right = r; (rc)->top = t; (rc)->bottom = b;}while (0)
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn10/
amdgpu_dcn10_dpp_dscl.c 101 int bottom = data->v_active - data->recout.y - data->recout.height; local in function:dpp1_dscl_set_overscan
107 if (bottom < 0) {
109 bottom = 0;
117 EXT_OVERSCAN_BOTTOM, bottom,
  /src/lib/libintl/
gettext.c 851 int top, bottom, middle, omiddle; local in function:lookup_bsearch
856 bottom = mohandle->mo.mo_nstring;
860 if (top > bottom)
862 middle = (top + bottom) / 2;
876 bottom = middle;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.cc 333 uptr bottom = 0; local in function:__tsan::OnStackUnwind
335 if (fast) GetThreadStackTopAndBottom(false, &top, &bottom);
336 stack->Unwind(kStackTraceMax, sig.pc, sig.bp, sig.context, top, bottom, fast);

Completed in 71 milliseconds

1 2