Home
last modified time | relevance | path

Searched refs:bounds (Results 1 – 25 of 255) sorted by relevance

1234567891011

/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
D20021010-2.c26 IOGBounds bounds = global_bounds; in main() local
28 if (saveRect.minx < bounds.minx) saveRect.minx = bounds.minx; in main()
29 if (saveRect.maxx > bounds.maxx) saveRect.maxx = bounds.maxx; in main()
31 vramPtr = global_vramPtr + (saveRect.miny - bounds.miny) ; in main()
/openbsd/src/gnu/llvm/clang/utils/ABITest/
DEnumeration.py176 bounds = [maxElement**i for i in range(1, maxSize+1)]
177 S,M = getNthPairVariableBounds(N, bounds)
190 def getNthPairVariableBounds(N, bounds): argument
197 if not bounds:
199 if not (0 <= N < sum(bounds)):
203 active = list(range(len(bounds)))
204 active.sort(key=lambda i: bounds[i])
207 level = bounds[index]
223 def getNthPairVariableBoundsChecked(N, bounds, GNVP=getNthPairVariableBounds): argument
224 x,y = GNVP(N,bounds)
[all …]
/openbsd/src/regress/gnu/egcs/gcc-bounds/
Dmemcpy-4.c.exp.gcc42 memcpy-4.c:6: warning: non-positive bounds length (-100) detected
3 memcpy-4.c:6: warning: non-positive bounds length (-100) detected
4 memcpy-4.c:6: warning: non-positive bounds length (-100) detected
5 memcpy-4.c:6: warning: non-positive bounds length (-100) detected
Dmemcpy-4.c.exp.gcc32 memcpy-4.c:6: warning: non-positive bounds length (-100) detected
3 memcpy-4.c:6: warning: non-positive bounds length (-100) detected
Dsnprintf-5.cpp.exp.gcc42 snprintf-5.cpp:5: warning: non-positive bounds length (-10) detected
3 snprintf-5.cpp:5: warning: non-positive bounds length (-10) detected
Dsnprintf-5.cpp.exp.gcc32 snprintf-5.cpp:5: warning: non-positive bounds length (-10) detected
3 snprintf-5.cpp:5: warning: non-positive bounds length (-10) detected
Dstrlcat-2.c.exp.gcc32 strlcat-2.c:6: warning: non-positive bounds length (-1) detected
Dstrlcat-6.c.exp.gcc32 strlcat-6.c:6: warning: non-positive bounds length (-1) detected
Dgetcwd-2.c.exp.gcc32 getcwd-2.c:5: warning: non-positive bounds length (-990) detected
Dstrlcat-6.c.exp.gcc42 strlcat-6.c:6: warning: non-positive bounds length (-1) detected
Dgetcwd-2.c.exp.gcc42 getcwd-2.c:5: warning: non-positive bounds length (-990) detected
Dstrlcat-2.c.exp.gcc42 strlcat-2.c:6: warning: non-positive bounds length (-1) detected
/openbsd/src/gnu/llvm/libcxx/docs/DesignDocs/
DDebugMode.rst38 Iterator bounds checking
40 The library provides iterators that ensure they are within the bounds of their container when deref…
41 Arithmetic can be performed on these iterators to create out-of-bounds iterators, but they cannot b…
42 when out-of-bounds. The following classes currently provide iterators that have bounds checking:
48 .. TODO: Add support for iterator bounds checking in ``std::string_view`` and ``std::array``
/openbsd/src/gnu/llvm/lldb/source/Core/
DIOHandlerCursesGUI.cpp363 Surface SubSurface(Rect bounds) { in SubSurface() argument
367 ::subpad(m_window, bounds.size.height, bounds.size.width, in SubSurface()
368 bounds.origin.y, bounds.origin.x); in SubSurface()
371 ::derwin(m_window, bounds.size.height, bounds.size.width, in SubSurface()
372 bounds.origin.y, bounds.origin.x); in SubSurface()
455 void Box(const Rect &bounds, chtype v_char = ACS_VLINE, in Box() argument
457 MoveCursor(bounds.origin.x, bounds.origin.y); in Box()
458 VerticalLine(bounds.size.height); in Box()
459 HorizontalLine(bounds.size.width); in Box()
462 MoveCursor(bounds.origin.x + bounds.size.width - 1, bounds.origin.y); in Box()
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/dfsan/
Ddfsan_thread.cpp95 const auto bounds = GetStackBounds(); in AddrIsInStack() local
96 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
/openbsd/src/gnu/llvm/compiler-rt/lib/msan/
Dmsan_thread.cpp98 const auto bounds = GetStackBounds(); in AddrIsInStack() local
99 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
/openbsd/src/gnu/llvm/compiler-rt/lib/asan/
Dasan_thread.cpp195 const auto bounds = GetStackBounds(); in stack_size() local
196 return bounds.top - bounds.bottom; in stack_size()
402 const auto bounds = GetStackBounds(); in AddrIsInStack() local
403 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
/openbsd/src/sbin/savecore/
Dsavecore.c397 int bounds, ifd, nr, nw, ofd = -1; in save_core() local
413 bounds = 0; in save_core()
420 bounds = strtonum(buf, 0, INT_MAX, &errstr); in save_core()
429 (void)fprintf(fp, "%d\n", bounds + 1); in save_core()
435 dirn, _PATH_UNIX, bounds, zcompress ? ".Z" : ""); in save_core()
510 dirn, _PATH_UNIX, bounds, zcompress ? ".Z" : ""); in save_core()
/openbsd/src/gnu/llvm/clang/docs/
DUndefinedBehaviorSanitizer.rst15 * Array subscript out of bounds, where the bounds can be statically determined
16 * Bitwise shifts that are out of bounds for their data type
86 - ``-fsanitize=bounds``: Out of bounds array indexing, in cases
88 ``-fsanitize=array-bounds`` and ``-fsanitize=local-bounds``. Note that
89 ``-fsanitize=local-bounds`` is not included in ``-fsanitize=undefined``.
187 ``implicit-conversion``, ``local-bounds`` and the ``nullability-*`` group
217 The ``null``, ``alignment``, ``object-size``, ``local-bounds``, and ``vptr`` checks do not apply
/openbsd/src/regress/gnu/egcs/
DMakefile3 SUBDIR= gcc-bounds gcc-builtins
/openbsd/src/gnu/usr.bin/binutils/gdb/
Dada-typeprint.c186 print_range_bound (struct type *type, char *bounds, int *n, in print_range_bound() argument
190 if (ada_scan_number (bounds, *n, &B, n)) in print_range_bound()
203 if (bounds[*n - 1] == 'm' && TYPE_CODE (type) == TYPE_CODE_INT) in print_range_bound()
206 if (bounds[*n] == '_') in print_range_bound()
212 char *bound = bounds + *n; in print_range_bound()
/openbsd/src/gnu/llvm/lldb/tools/intel-features/intel-mpx/test/
DMakefile5 CFLAGS_EXTRAS += -mmpx -fcheck-pointer-bounds -lmpxwrappers -lmpx -fuse-ld=bfd
/openbsd/src/gnu/llvm/llvm/include/llvm/IR/
DIntrinsicsAMDGPU.td1036 // they behave differently in bounds checking and swizzling.
1040 llvm_i32_ty, // offset(VGPR/imm, included in bounds checking and swizzling)
1041 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1055 llvm_i32_ty, // offset(VGPR/imm, included in bounds checking and swizzling)
1056 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1070 llvm_i32_ty, // offset(VGPR/imm, included in bounds checking and swizzling)
1071 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1086 llvm_i32_ty, // offset(VGPR/imm, included in bounds checking and swizzling)
1087 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1101 llvm_i32_ty, // offset(VGPR/imm, included in bounds checking and swizzling)
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/ubsan/
Dubsan_checks.inc55 UBSAN_CHECK(OutOfBoundsIndex, "out-of-bounds-index", "bounds")
/openbsd/src/gnu/llvm/clang/include/clang/Basic/
DSanitizers.def84 SANITIZER("array-bounds", ArrayBounds)
184 SANITIZER("local-bounds", LocalBounds)
185 SANITIZER_GROUP("bounds", Bounds, ArrayBounds | LocalBounds)

1234567891011