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

1 2 3 4 5 6 7 8 91011>>

  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_mp_rshd.c 37 register mp_digit *bottom, *top; local
41 /* bottom */
42 bottom = a->dp;
49 * the top of the window are copied to the bottom
58 *bottom++ = *top++;
63 *bottom++ = 0;
bn_mp_lshd.c 38 register mp_digit *top, *bottom; local
47 bottom = a->dp + a->used - 1 - b;
51 * the bottom to the top. see bn_mp_rshd.c for more info.
54 *top-- = *bottom--;
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag_standalone.cc 24 uptr bottom = 0; local
27 __sanitizer::GetThreadStackTopAndBottom(false, &top, &bottom);
32 stack.Unwind(kStackTraceMax, pc, bp, nullptr, top, bottom,
  /src/lib/libcurses/
scroll.c 70 * Set the top and bottom of the scrolling region for stdscr.
73 setscrreg(int top, int bottom)
76 return wsetscrreg(stdscr, top, bottom);
81 * Get the top and bottom of the scrolling region for stdscr.
84 getscrreg(int *top, int *bottom)
87 return wgetscrreg(stdscr, top, bottom);
128 * Set the top and bottom of the scrolling region for win.
131 wsetscrreg(WINDOW *win, int top, int bottom)
136 if (top < 0 || bottom >= win->maxy || bottom - top < 1
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/err/
err_mark.c 23 if (es->bottom == es->top)
34 if (es == NULL || es->bottom == es->top)
50 while (es->bottom != es->top
56 if (es->bottom == es->top)
72 while (es->bottom != top
91 while (es->bottom != top
96 if (es->bottom == top)
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_diag_standalone.cpp 22 uptr bottom = 0; local
23 GetThreadStackTopAndBottom(false, &top, &bottom);
25 Unwind(max_depth, pc, bp, context, top, bottom, fast);
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_diag_standalone.cpp 22 uptr bottom = 0; local
23 GetThreadStackTopAndBottom(false, &top, &bottom);
25 Unwind(max_depth, pc, bp, context, top, bottom, fast);
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-tcl-tk/
hello.tcl 19 pack .my.label -side bottom
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stacktrace_sparc.cc 37 uptr bottom = stack_bottom; local
39 while (IsValidFrame((uptr)frame, stack_top, bottom) &&
51 bottom = (uptr)frame;
sanitizer_stacktrace.cc 81 uptr bottom = stack_bottom; local
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);
  /src/crypto/external/bsd/libsaslc/dist/
style.css 19 margin-bottom: 20px;
28 margin-bottom: 10px;
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.thread/
tlsstack.d 13 auto bottom = getStackBottom();
16 printf("stack bottom:%p\n", getStackBottom());
17 printf("used stack: %lld\n", cast(ulong)(bottom - top));
  /src/sys/arch/vax/include/
qevent.h 109 short bottom; member in struct:_vs_box
  /src/sys/dev/qbus/
qevent.h 109 short bottom; member in struct:_vs_box
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stacktrace_sparc.cpp 57 uptr bottom = stack_bottom; local
59 while (IsValidFrame(bp, stack_top, bottom) && IsAligned(bp, sizeof(uhwptr)) &&
72 bottom = bp;
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_stack_trace.cpp 52 uptr bottom = 0; local
53 GetThreadStackTopAndBottom(false, &top, &bottom);
55 Unwind(max_depth, pc, bp, context, top, bottom, fast);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_stacktrace_sparc.cpp 63 uptr bottom = stack_bottom; local
65 while (IsValidFrame(bp, stack_top, bottom) && IsAligned(bp, sizeof(uhwptr)) &&
78 bottom = bp;
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_stack_trace.cpp 52 uptr bottom = 0; local
53 GetThreadStackTopAndBottom(false, &top, &bottom);
55 Unwind(max_depth, pc, bp, context, top, bottom, fast);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
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;
327 bottom = stack_bottom();
329 bottom = fake_stack()->AddrIsInFakeStack(addr);
330 CHECK(bottom);
331 access->offset = addr - bottom;
366 uptr bottom = 0; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_thread.cpp 126 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom,
133 next_stack_bottom_ = bottom;
134 next_stack_top_ = bottom + size;
192 return GetStackBounds().bottom;
197 return bounds.top - bounds.bottom;
338 uptr bottom = 0;
340 bottom = stack_bottom();
342 bottom = fake_stack->AddrIsInFakeStack(addr);
343 CHECK(bottom);
344 access->offset = addr - bottom;
379 uptr bottom = 0; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/bn/
bn_rand.c 25 static int bnrand(BNRAND_FLAG flag, BIGNUM *rnd, int bits, int top, int bottom,
33 if (top != BN_RAND_TOP_ANY || bottom != BN_RAND_BOTTOM_ANY)
49 /* make a random number and set the top and bottom bits */
87 if (bottom) /* set bottom bit if requested */
102 int BN_rand_ex(BIGNUM *rnd, int bits, int top, int bottom,
105 return bnrand(NORMAL, rnd, bits, top, bottom, strength, ctx);
108 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom)
110 return bnrand(NORMAL, rnd, bits, top, bottom, 0, NULL);
113 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bn/
bn_rand.c 23 static int bnrand(BNRAND_FLAG flag, BIGNUM *rnd, int bits, int top, int bottom,
31 if (top != BN_RAND_TOP_ANY || bottom != BN_RAND_BOTTOM_ANY)
49 /* make a random number and set the top and bottom bits */
87 if (bottom) /* set bottom bit if requested */
102 int BN_rand_ex(BIGNUM *rnd, int bits, int top, int bottom,
105 return bnrand(NORMAL, rnd, bits, top, bottom, strength, ctx);
108 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom)
110 return bnrand(NORMAL, rnd, bits, top, bottom, 0, NULL);
113 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom)
    [all...]
  /src/sys/arch/amiga/dev/
ite_rh.c 147 screen_up(struct ite_softc *ip, int top, int bottom, int lines)
151 if (top >= bottom)
154 if (top + lines >= bottom) {
155 RZ3AlphaErase(ip->grf, 0, top, bottom - top, ip->cols);
159 RZ3AlphaCopy(ip->grf, 0, top+lines, 0, top, ip->cols, bottom-top-lines+1);
160 RZ3AlphaErase(ip->grf, 0, bottom - lines + 1, ip->cols, lines);
165 screen_down (struct ite_softc *ip, int top, int bottom, int lines)
169 if (top >= bottom)
172 if (top + lines >= bottom) {
173 RZ3AlphaErase(ip->grf, 0, top, bottom - top, ip->cols)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
bn_rand.c 21 static int bnrand(BNRAND_FLAG flag, BIGNUM *rnd, int bits, int top, int bottom)
27 if (top != BN_RAND_TOP_ANY || bottom != BN_RAND_BOTTOM_ANY)
45 /* make a random number and set the top and bottom bits */
82 if (bottom) /* set bottom bit if requested */
97 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom)
99 return bnrand(NORMAL, rnd, bits, top, bottom);
102 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom)
104 return bnrand(TESTING, rnd, bits, top, bottom);
107 int BN_priv_rand(BIGNUM *rnd, int bits, int top, int bottom)
    [all...]
  /src/external/bsd/tmux/dist/
cmd-capture-pane.c 116 u_int i, sx, top, bottom, tmp; local
165 bottom = gd->hsize + gd->sy - 1;
170 bottom = gd->hsize + gd->sy - 1;
173 bottom = 0;
175 bottom = gd->hsize + n;
176 if (bottom > gd->hsize + gd->sy - 1)
177 bottom = gd->hsize + gd->sy - 1;
180 if (bottom < top) {
181 tmp = bottom;
182 bottom = top
    [all...]

Completed in 45 milliseconds

1 2 3 4 5 6 7 8 91011>>