Home
last modified time | relevance | path

Searched refs:range (Results 1 – 25 of 2370) sorted by relevance

12345678910>>...95

/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgimple-ssa-sprintf.cc394 range.min = min; in fmtresult()
395 range.max = min; in fmtresult()
396 range.likely = min; in fmtresult()
397 range.unlikely = min; in fmtresult()
408 range.min = min; in fmtresult()
409 range.max = max; in fmtresult()
410 range.likely = max < likely ? min : likely; in fmtresult()
411 range.unlikely = max; in fmtresult()
434 result_range range; member in __anon347ca6030111::fmtresult
471 if (range.min < (unsigned HOST_WIDE_INT)adjust[0]) in adjust_for_width_or_precision()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgimple-ssa-sprintf.c391 range.min = min; in argmin()
392 range.max = min; in argmin()
393 range.likely = min; in argmin()
394 range.unlikely = min; in argmin()
405 range.min = min; in argmin()
406 range.max = max; in argmin()
407 range.likely = max < likely ? min : likely; in argmin()
408 range.unlikely = max; in argmin()
431 result_range range; variable
468 if (range.min < (unsigned HOST_WIDE_INT)adjust[0]) in adjust_for_width_or_precision()
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/docs/
H A DOneRangesProposalStatus.csv27 [range.iter.op.advance],ranges::advance,[iterator.concepts],Christopher Di Bella,"`D101922 <https:/…
28 [range.iter.op.distance],ranges::distance,"[iterator.concepts], [range.range], [range.sized]",Chris…
29 [range.iter.op.next],ranges::next,[iterator.concepts],Christopher Di Bella,"`D102563 <https://llvm.…
30 [range.iter.op.prev],ranges::prev,[iterator.concepts],Christopher Di Bella,"`D102564 <https://llvm.…
37 …tuff not specified elsewhere. ,"[range.access], [iterator.concepts], [range.all], [range.subrange]…
38 [ranges.syn]: pt. 2,"iterator_t, sentinel_t, and safe_iterator_t",[range.access],Christopher Di Bel…
39 [range.access],"ranges::begin, end, cbegin, cend, rbegin, rend, crbegin, and crend",[iterator.conce…
41 [range.range],,[range.access],,,
42 [range.sized],"ranges::sized_range","[range.primitives], [range.range]",Christopher Di Bella,"`D102…
43 [range.view],View and enable_view,[range.range],Louis Dionne,https://reviews.llvm.org/D101547,✅
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DTransformActions.cpp67 CharRange(CharSourceRange range, SourceManager &srcMgr, Preprocessor &PP) { in CharRange()
68 SourceLocation beginLoc = range.getBegin(), endLoc = range.getEnd(); in CharRange()
70 if (range.isTokenRange()) { in CharRange()
135 void remove(SourceRange range);
137 void replace(SourceRange range, StringRef text);
138 void replace(SourceRange range, SourceRange replacementRange);
142 void increaseIndentation(SourceRange range,
145 bool clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
152 bool canRemoveRange(SourceRange range);
153 bool canReplaceRange(SourceRange range, SourceRange replacementRange);
[all …]
H A DInternals.h33 bool clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
34 bool hasDiagnostic(ArrayRef<unsigned> IDs, SourceRange range) const;
65 void remove(SourceRange range);
67 void replace(SourceRange range, StringRef text);
68 void replace(SourceRange range, SourceRange replacementRange);
72 void increaseIndentation(SourceRange range,
75 bool clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
76 bool clearAllDiagnostics(SourceRange range) { in clearAllDiagnostics() argument
77 return clearDiagnostic(None, range); in clearAllDiagnostics()
79 bool clearDiagnostic(unsigned ID1, unsigned ID2, SourceRange range) { in clearDiagnostic() argument
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_rand.c133 static int bnrand_range(BNRAND_FLAG flag, BIGNUM *r, const BIGNUM *range, in bnrand_range() argument
144 if (range->neg || BN_is_zero(range)) { in bnrand_range()
149 n = BN_num_bits(range); /* n > 0 */ in bnrand_range()
155 else if (!BN_is_bit_set(range, n - 2) && !BN_is_bit_set(range, n - 3)) { in bnrand_range()
171 if (BN_cmp(r, range) >= 0) { in bnrand_range()
172 if (!BN_sub(r, r, range)) in bnrand_range()
174 if (BN_cmp(r, range) >= 0) in bnrand_range()
175 if (!BN_sub(r, r, range)) in bnrand_range()
185 while (BN_cmp(r, range) >= 0); in bnrand_range()
198 while (BN_cmp(r, range) >= 0); in bnrand_range()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dnumeric167 _GLIBCXX_THROW_OR_ABORT("std::lcm result is out of range of type");
254 * @brief Calculate reduction of values in a range.
256 * @param __first Start of range.
257 * @param __last End of range.
262 * Reduce the values in the range `[first,last)` using a binary operation.
300 * @brief Calculate reduction of values in a range.
302 * @param __first Start of range.
303 * @param __last End of range.
307 * Reduce the values in the range `[first,last)` using addition.
317 * @brief Calculate reduction of values in a range.
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dnumeric266 * @brief Calculate reduction of values in a range.
268 * @param __first Start of range.
269 * @param __last End of range.
274 * Reduce the values in the range `[first,last)` using a binary operation.
312 * @brief Calculate reduction of values in a range.
314 * @param __first Start of range.
315 * @param __last End of range.
319 * Reduce the values in the range `[first,last)` using addition.
329 * @brief Calculate reduction of values in a range.
331 * @param __first Start of range.
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Dmutation.d80 import std.range.primitives;
170 import std.range.primitives : popFrontN;
219 import std.range : take, Take;
458 import std.range;
486 import std.algorithm, std.range;
596 void fill(Range, Value)(auto ref Range range, auto ref Value value)
597 if ((isInputRange!Range && is(typeof(range.front = value)) ||
598 isSomeChar!Value && is(typeof(range[] = value))))
602 static if (is(typeof(range[] = value)))
604 range[] = value;
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/bn/
H A Dbn_rand.c113 static int bnrand_range(BNRAND_FLAG flag, BIGNUM *r, const BIGNUM *range) in bnrand_range() argument
118 if (range->neg || BN_is_zero(range)) { in bnrand_range()
123 n = BN_num_bits(range); /* n > 0 */ in bnrand_range()
129 else if (!BN_is_bit_set(range, n - 2) && !BN_is_bit_set(range, n - 3)) { in bnrand_range()
144 if (BN_cmp(r, range) >= 0) { in bnrand_range()
145 if (!BN_sub(r, r, range)) in bnrand_range()
147 if (BN_cmp(r, range) >= 0) in bnrand_range()
148 if (!BN_sub(r, r, range)) in bnrand_range()
158 while (BN_cmp(r, range) >= 0); in bnrand_range()
170 while (BN_cmp(r, range) >= 0); in bnrand_range()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Edit/
H A DCommit.cpp65 CharSourceRange range, in insertFromRange() argument
69 if (!canRemoveRange(range, RangeOffs, RangeLen)) { in insertFromRange()
82 PPRec->areInDifferentConditionalDirectiveRegion(loc, range.getBegin())) { in insertFromRange()
91 bool Commit::remove(CharSourceRange range) { in remove() argument
94 if (!canRemoveRange(range, Offs, Len)) { in remove()
99 addRemove(range.getBegin(), Offs, Len); in remove()
103 bool Commit::insertWrap(StringRef before, CharSourceRange range, in insertWrap() argument
105 bool commitableBefore = insert(range.getBegin(), before, /*afterToken=*/false, in insertWrap()
108 if (range.isTokenRange()) in insertWrap()
109 commitableAfter = insertAfterToken(range.getEnd(), after); in insertWrap()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dcodecvt.cc62 struct range struct
68 range& operator=(Elem e) in operator =() argument
81 range& operator++() in operator ++() argument
88 range& operator+=(size_t n) in operator +=() argument
104 struct range<Elem, false> struct
115 range& operator=(Elem e) in operator =() argument
139 range& operator++() in operator ++() argument
146 range& operator+=(size_t n) in operator +=() argument
167 write_bom(range<C, A>& to, const unsigned char (&bom)[N]) in write_bom()
182 read_bom(range<C, A>& from, const unsigned char (&bom)[N]) in read_bom()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dcodecvt.cc62 struct range struct
68 range& operator=(Elem e) in operator =() argument
81 range& operator++() in operator ++() argument
88 range& operator+=(size_t n) in operator +=() argument
104 struct range<Elem, false> struct
115 range& operator=(Elem e) in operator =() argument
139 range& operator++() in operator ++() argument
146 range& operator+=(size_t n) in operator +=() argument
167 write_bom(range<C, A>& to, const unsigned char (&bom)[N]) in write_bom()
182 read_bom(range<C, A>& from, const unsigned char (&bom)[N]) in read_bom()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Rewrite/Core/
H A DRewriter.h145 bool RemoveText(CharSourceRange range,
147 return RemoveText(range.getBegin(), getRangeSize(range, opts), opts);
151 bool RemoveText(SourceRange range, RewriteOptions opts = RewriteOptions()) {
152 return RemoveText(range.getBegin(), getRangeSize(range, opts), opts);
164 bool ReplaceText(CharSourceRange range, StringRef NewStr) { in ReplaceText() argument
165 return ReplaceText(range.getBegin(), getRangeSize(range), NewStr); in ReplaceText()
171 bool ReplaceText(SourceRange range, StringRef NewStr) { in ReplaceText() argument
172 return ReplaceText(range.getBegin(), getRangeSize(range), NewStr); in ReplaceText()
178 bool ReplaceText(SourceRange range, SourceRange replacementRange);
184 bool IncreaseIndentation(CharSourceRange range, SourceLocation parentIndent);
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
H A Dmutation.d80 import std.range.primitives;
152 import std.range : take, Take;
233 import std.range.primitives : popFrontN;
454 import std.range;
482 import std.algorithm, std.range;
555 void fill(Range, Value)(auto ref Range range, auto ref Value value)
556 if ((isInputRange!Range && is(typeof(range.front = value)) ||
557 isSomeChar!Value && is(typeof(range[] = value))))
561 static if (is(typeof(range[] = value)))
563 range[] = value;
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dcasefold_test.ref4 > range 0x0 0xD7FF
5 range completed: 0x0..0xd7ff
6 > range 0xD800 0xD800
7 skipping surrogate range
8 range completed: 0xd800..0xd800
9 > range 0xDFFF 0xDFFF
10 skipping surrogate range
11 range completed: 0xdfff..0xdfff
12 > range 0xE000 0x10FFFF
13 range completed: 0xe000..0x10ffff
[all …]
/netbsd-src/games/hack/
H A Dhack.makemon.c188 int range; in enexto() local
191 range = 1; in enexto()
193 for (x = xx - range; x <= xx + range; x++) in enexto()
194 if (goodpos(x, yy - range)) { in enexto()
196 tfoo++->y = yy - range; in enexto()
200 for (x = xx - range; x <= xx + range; x++) in enexto()
201 if (goodpos(x, yy + range)) { in enexto()
203 tfoo++->y = yy + range; in enexto()
207 for (y = yy + 1 - range; y < yy + range; y++) in enexto()
208 if (goodpos(xx - range, y)) { in enexto()
[all …]
/netbsd-src/external/bsd/elftosb/dist/common/
H A DDataTarget.cpp24 AddressRange range; in getRangeForSegment() local
25 range.m_begin = m_begin; in getRangeForSegment()
31 range.m_end = std::min<uint32_t>(m_end, m_begin + segment.getLength()); in getRangeForSegment()
36 range.m_end = m_begin + segment.getLength(); in getRangeForSegment()
39 return range; in getRangeForSegment()
54 AddressRange range; in getRangeForSegment() local
55 range.m_begin = segment.getBaseAddress(); in getRangeForSegment()
56 range.m_end = segment.getBaseAddress() + segment.getLength(); in getRangeForSegment()
57 return range; in getRangeForSegment()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dranges21 // [range.access], range access
31 // [range.range], ranges
33 concept range = see below;
42 template<range R>
44 template<range R>
46 template<range R>
48 template<range R>
50 template<range R>
53 // [range.sized]
60 // [range.view], views
[all …]
/netbsd-src/sys/arch/arm/acpi/
H A Dacpipchb.c70 struct acpipchb_bus_range range[ACPIPCHB_MAX_RANGES]; member
232 struct acpipchb_bus_range * const range = &abs->range[i]; in acpipchb_bus_space_map() local
233 if (bpa >= range->min && bpa + size - 1 <= range->max) { in acpipchb_bus_space_map()
234 return abs->map(t, bpa + range->offset, size, in acpipchb_bus_space_map()
249 struct acpipchb_bus_range *range; in acpipchb_setup_ranges_cb() local
279 range = &abs->range[abs->nrange]; in acpipchb_setup_ranges_cb()
282 range in acpipchb_setup_ranges_cb()
[all...]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_libignore.cpp59 for (const auto &range : mod.ranges()) { in OnLibraryLoaded() local
60 if (!range.executable) in OnLibraryLoaded()
84 ignored_code_ranges_[idx].begin = range.beg; in OnLibraryLoaded()
85 ignored_code_ranges_[idx].end = range.end; in OnLibraryLoaded()
103 for (const auto &range : mod.ranges()) { in OnLibraryLoaded() local
104 if (!range.executable) in OnLibraryLoaded()
106 if (IsPcInstrumented(range.beg) && IsPcInstrumented(range.end - 1)) in OnLibraryLoaded()
109 range.beg, range.end, mod.full_name()); in OnLibraryLoaded()
113 instrumented_code_ranges_[idx].begin = range.beg; in OnLibraryLoaded()
114 instrumented_code_ranges_[idx].end = range.end; in OnLibraryLoaded()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_libignore.cc60 for (const auto &range : mod.ranges()) { in OnLibraryLoaded() local
61 if (!range.executable) in OnLibraryLoaded()
85 ignored_code_ranges_[idx].begin = range.beg; in OnLibraryLoaded()
86 ignored_code_ranges_[idx].end = range.end; in OnLibraryLoaded()
104 for (const auto &range : mod.ranges()) { in OnLibraryLoaded() local
105 if (!range.executable) in OnLibraryLoaded()
107 if (IsPcInstrumented(range.beg) && IsPcInstrumented(range.end - 1)) in OnLibraryLoaded()
110 range.beg, range.end, mod.full_name()); in OnLibraryLoaded()
114 instrumented_code_ranges_[idx].begin = range.beg; in OnLibraryLoaded()
115 instrumented_code_ranges_[idx].end = range.end; in OnLibraryLoaded()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_libignore.cc58 for (const auto &range : mod.ranges()) { in OnLibraryLoaded() local
59 if (!range.executable) in OnLibraryLoaded()
83 ignored_code_ranges_[idx].begin = range.beg; in OnLibraryLoaded()
84 ignored_code_ranges_[idx].end = range.end; in OnLibraryLoaded()
102 for (const auto &range : mod.ranges()) { in OnLibraryLoaded() local
103 if (!range.executable) in OnLibraryLoaded()
105 if (IsPcInstrumented(range.beg) && IsPcInstrumented(range.end - 1)) in OnLibraryLoaded()
108 range.beg, range.end, mod.full_name()); in OnLibraryLoaded()
112 instrumented_code_ranges_[idx].begin = range.beg; in OnLibraryLoaded()
113 instrumented_code_ranges_[idx].end = range.end; in OnLibraryLoaded()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/csky/
H A Dconstraints.md52 "Constant in range [0, 65535]"
57 "Constant in range [1, 32]"
62 "Constant in range [0, 31]"
67 "Constant in range [1, 8]"
72 "Constant in range [1, 4096]"
77 "Constant in range [1, 256]"
82 "Constant in range [0, 4095]"
87 "Constant in range [4, 508] that is divisible by 4"
92 "Constant in range [-256, -1]"
117 "Constant in range [-508, -4] that is divisible by 4"
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/csky/
H A Dconstraints.md58 "Constant in range [0, 65535]"
63 "Constant in range [1, 32]"
68 "Constant in range [0, 31]"
73 "Constant in range [1, 8]"
78 "Constant in range [1, 4096]"
83 "Constant in range [1, 256]"
88 "Constant in range [0, 4095]"
93 "Constant in range [4, 508] that is divisible by 4"
98 "Constant in range [-256, -1]"
123 "Constant in range [-508, -4] that is divisible by 4"
[all …]

12345678910>>...95