Home
last modified time | relevance | path

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

12345678910>>...29

/netbsd-src/external/apache2/llvm/dist/clang/utils/ABITest/
H A 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 …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
H A Dnouveau_dispnv50_head917d.c48 u32 bounds = 0; in head917d_base() local
53 case 8: bounds |= 0x00000500; break; in head917d_base()
54 case 4: bounds |= 0x00000300; break; in head917d_base()
55 case 2: bounds |= 0x00000100; break; in head917d_base()
56 case 1: bounds |= 0x00000000; break; in head917d_base()
61 bounds |= 0x00020001; in head917d_base()
66 evo_data(push, bounds); in head917d_base()
H A Dnouveau_dispnv50_head907d.c77 u32 bounds = 0; in head907d_ovly() local
82 case 8: bounds |= 0x00000500; break; in head907d_ovly()
83 case 4: bounds |= 0x00000300; break; in head907d_ovly()
84 case 2: bounds |= 0x00000100; break; in head907d_ovly()
89 bounds |= 0x00000001; in head907d_ovly()
91 bounds |= 0x00000100; in head907d_ovly()
96 evo_data(push, bounds); in head907d_ovly()
105 u32 bounds = 0; in head907d_base() local
110 case 8: bounds |= 0x00000500; break; in head907d_base()
111 case 4: bounds |= 0x00000300; break; in head907d_base()
[all …]
H A Dnouveau_dispnv50_head507d.c63 u32 bounds = 0; in head507d_ovly() local
68 case 4: bounds |= 0x00000300; break; in head507d_ovly()
69 case 2: bounds |= 0x00000100; break; in head507d_ovly()
74 bounds |= 0x00000001; in head507d_ovly()
76 bounds |= 0x00000100; in head507d_ovly()
81 evo_data(push, bounds); in head507d_ovly()
90 u32 bounds = 0; in head507d_base() local
95 case 8: bounds |= 0x00000500; break; in head507d_base()
96 case 4: bounds |= 0x00000300; break; in head507d_base()
97 case 2: bounds |= 0x00000100; break; in head507d_base()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/
H A Dsm-taint.cc63 enum bounds enum
103 bool get_taint (state_t s, tree type, enum bounds *out) const;
137 enum bounds has_bounds) in taint_diagnostic()
172 enum bounds m_has_bounds;
182 enum bounds has_bounds) in tainted_array_index()
255 enum bounds has_bounds) in tainted_offset()
365 enum bounds has_bounds) in tainted_size()
434 enum bounds has_bounds, tree callee_fndecl, in tainted_access_attrib_size()
472 enum bounds has_bounds) in tainted_divisor()
520 enum bounds has_bounds, enum memory_space mem_space) in tainted_allocation_size()
[all …]
/netbsd-src/usr.bin/msgs/
H A Dmsgs.c170 FILE *bounds; in main() local
252 bounds = fopen(fname, "r"); in main()
254 if (bounds != NULL) { in main()
255 if (fscanf(bounds, "%d %d\n", &firstmsg, &lastmsg) < 2) in main()
257 fclose(bounds); in main()
264 if (clean || bounds == NULL) { /* relocate message bounds */ in main()
327 bounds = fopen(fname, "w"); in main()
328 if (bounds == NULL) { in main()
333 fprintf(bounds, "%d %d\n", firstmsg, lastmsg); in main()
334 fclose(bounds); in main()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_thread.cc188 const auto bounds = GetStackBounds(); in stack_size() local
189 return bounds.top - bounds.bottom; in stack_size()
389 const auto bounds = GetStackBounds(); in AddrIsInStack() local
390 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_thread.cc190 const auto bounds = GetStackBounds(); in stack_size() local
191 return bounds.top - bounds.bottom; in stack_size()
388 const auto bounds = GetStackBounds(); in AddrIsInStack() local
389 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
/netbsd-src/external/mit/xorg/server/drivers/xf86-video-xgi/
H A DMakefile31 COPTS.init.c= -Wno-array-bounds
32 COPTS.vb_setmode.c= -Wno-array-bounds
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_thread.cpp196 const auto bounds = GetStackBounds(); in stack_size() local
197 return bounds.top - bounds.bottom; in stack_size()
405 const auto bounds = GetStackBounds(); in AddrIsInStack() local
406 return addr >= bounds.bottom && addr < bounds.top; in AddrIsInStack()
/netbsd-src/usr.bin/make/unit-tests/
H A Dvarmod-to-separator.mk152 # Since 2020-11-01, these out-of-bounds values are rejected.
155 . warning The separator \400 is accepted even though it is out of bounds.
157 . warning The separator \400 is accepted even though it is out of bounds.
167 # Since 2020-11-01, these out-of-bounds values are rejected.
170 . warning The separator \x100 is accepted even though it is out of bounds.
172 . warning The separator \x100 is accepted even though it is out of bounds.
/netbsd-src/games/dab/
H A Dboard.cc112 if (!bounds(y, x)) in domove()
135 if (bounds(y, x)) { in domove()
160 int BOARD::bounds(size_t y, size_t x) const in bounds() function in BOARD
/netbsd-src/external/mit/isl/dist/
H A Disl_convex_hull.c396 isl_mat *bounds = NULL; in initial_facet_constraint() local
401 bounds = isl_mat_alloc(set->ctx, 1, 1 + dim); in initial_facet_constraint()
402 if (!bounds) in initial_facet_constraint()
405 isl_seq_clr(bounds->row[0], dim); in initial_facet_constraint()
406 isl_int_set_si(bounds->row[0][1 + dim - 1], 1); in initial_facet_constraint()
407 is_bound = uset_is_bound(set, bounds->row[0], 1 + dim); in initial_facet_constraint()
411 isl_seq_normalize(set->ctx, bounds->row[0], 1 + dim); in initial_facet_constraint()
412 bounds->n_row = 1; in initial_facet_constraint()
416 slice = isl_set_add_basic_set_equality(slice, bounds->row[0]); in initial_facet_constraint()
425 if (!isl_seq_eq(bounds->row[0], face->eq[i], 1 + dim) && in initial_facet_constraint()
[all …]
H A Disl_ast_codegen.c735 int degenerate, __isl_keep isl_basic_set *bounds, in add_implied_guards() argument
750 space = isl_basic_set_get_space(bounds); in add_implied_guards()
754 bounds = isl_basic_set_copy(bounds); in add_implied_guards()
755 bounds = isl_basic_set_drop_constraints_not_involving_dims( in add_implied_guards()
756 bounds, isl_dim_set, depth, 1); in add_implied_guards()
757 set = isl_set_from_basic_set(bounds); in add_implied_guards()
1322 __isl_keep isl_basic_set *bounds, __isl_keep isl_set *domain, in refine_generic() argument
1330 list = isl_basic_set_get_constraint_list(bounds); in refine_generic()
1471 __isl_take isl_basic_set *bounds, __isl_take isl_set *domain, in create_node_scaled() argument
1490 bounds = isl_basic_set_intersect(bounds, hull); in create_node_scaled()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgimple-ssa-warn-restrict.c795 offset_int bounds[2] = { maxobjsize, maxobjsize }; in builtin_access() local
806 bounds[0] = wi::to_offset (range[0]); in builtin_access()
807 bounds[1] = wi::to_offset (range[1]); in builtin_access()
817 dstref->sizrange[0] = bounds[0]; in builtin_access()
818 dstref->sizrange[1] = bounds[1]; in builtin_access()
849 srcref->sizrange[0] = bounds[1] > 0 ? 1 : 0; in builtin_access()
850 offset_int bound = wi::umin (srcref->basesize, bounds[1]); in builtin_access()
880 dstref->sizrange[0] = bounds[0]; in builtin_access()
881 dstref->sizrange[1] = bounds[1]; in builtin_access()
913 dstref->sizrange[0] = bounds[0]; in builtin_access()
[all …]
H A Dtree-ssa-loop-niter.c60 struct bounds struct
491 bounds *bnds) in bound_difference_of_offsetted_base()
543 bounds *bnds) in refine_bounds_using_guard()
706 bound_difference (class loop *loop, tree x, tree y, bounds *bnds) in bound_difference()
798 bounds_add (bounds *bnds, const widest_int &delta, tree type) in bounds_add()
826 bounds_negate (bounds *bnds) in bounds_negate()
898 bounds *bnds, bool exit_must_be_taken) in number_of_iterations_ne_max()
968 bool exit_must_be_taken, bounds *bnds) in number_of_iterations_ne()
1153 bool exit_must_be_taken, bounds *bnds) in number_of_iterations_lt_to_ne()
1339 class tree_niter_desc *niter, bounds *bnds) in assert_loop_rolls_lt()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgimple-ssa-warn-restrict.cc805 offset_int bounds[2] = { maxobjsize, maxobjsize }; in builtin_access() local
816 bounds[0] = wi::to_offset (range[0]); in builtin_access()
817 bounds[1] = wi::to_offset (range[1]); in builtin_access()
827 dstref->sizrange[0] = bounds[0]; in builtin_access()
828 dstref->sizrange[1] = bounds[1]; in builtin_access()
859 srcref->sizrange[0] = bounds[1] > 0 ? 1 : 0; in builtin_access()
860 offset_int bound = wi::umin (srcref->basesize, bounds[1]); in builtin_access()
890 dstref->sizrange[0] = bounds[0]; in builtin_access()
891 dstref->sizrange[1] = bounds[1]; in builtin_access()
923 dstref->sizrange[0] = bounds[0]; in builtin_access()
[all …]
H A Dtree-ssa-loop-niter.cc61 struct bounds struct
509 bounds *bnds) in bound_difference_of_offsetted_base()
561 bounds *bnds) in refine_bounds_using_guard()
724 bound_difference (class loop *loop, tree x, tree y, bounds *bnds) in bound_difference()
816 bounds_add (bounds *bnds, const widest_int &delta, tree type) in bounds_add()
844 bounds_negate (bounds *bnds) in bounds_negate()
916 bounds *bnds, bool exit_must_be_taken) in number_of_iterations_ne_max()
986 bool exit_must_be_taken, bounds *bnds) in number_of_iterations_ne()
1165 bool exit_must_be_taken, bounds *bnds) in number_of_iterations_lt_to_ne()
1351 class tree_niter_desc *niter, bounds *bnds) in assert_loop_rolls_lt()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/analyzer/
H A Dsm-taint.cc86 enum bounds enum
98 enum bounds has_bounds) in tainted_array_index()
183 enum bounds m_has_bounds;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DIntrinsicsAMDGPU.td943 // they behave differently in bounds checking and swizzling.
947 llvm_i32_ty, // offset(VGPR/imm, included in bounds checking and swizzling)
948 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
962 llvm_i32_ty, // offset(VGPR/imm, included in bounds checking and swizzling)
963 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
977 llvm_i32_ty, // offset(VGPR/imm, included in bounds checking and swizzling)
978 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
993 llvm_i32_ty, // offset(VGPR/imm, included in bounds checking and swizzling)
994 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1008 llvm_i32_ty, // offset(VGPR/imm, included in bounds checking and swizzling)
[all …]
/netbsd-src/sbin/savecore/
H A Dsavecore.c647 int bounds, ifd, nr, nw, ofd, tryksyms; in save_core() local
663 bounds = 0; in save_core()
665 bounds = atoi(buf); in save_core()
671 (void)fprintf(fp, "%d\n", bounds + 1); in save_core()
677 dirname, bounds, compress ? ".gz" : ""); in save_core()
752 dirname, bounds, compress ? ".gz" : ""); in save_core()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_checks.inc39 UBSAN_CHECK(OutOfBoundsIndex, "out-of-bounds-index", "bounds")
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_checks.inc47 UBSAN_CHECK(OutOfBoundsIndex, "out-of-bounds-index", "bounds")
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/
H A Darray235 static_assert(_Int < _Nm, "index is out of bounds");
244 static_assert(_Int < _Nm, "index is out of bounds");
252 static_assert(_Int < _Nm, "index is out of bounds");
270 static_assert(_Int < _Nm, "index is out of bounds");
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/
H A Darray315 static_assert(_Int < _Nm, "index is out of bounds");
324 static_assert(_Int < _Nm, "index is out of bounds");
332 static_assert(_Int < _Nm, "index is out of bounds");
341 static_assert(_Int < _Nm, "index is out of bounds");
397 static_assert(_Int < _Nm, "index is out of bounds");

12345678910>>...29