Home
last modified time | relevance | path

Searched refs:Bound (Results 1 - 25 of 26) sorted by relevance

12

/third_party/rust/crates/clap/src/builder/
H A Drange.rs104 fn start_bound(&self) -> std::ops::Bound<&usize> { in start_bound()
105 std::ops::Bound::Included(&self.start_inclusive) in start_bound()
108 fn end_bound(&self) -> std::ops::Bound<&usize> { in end_bound()
109 std::ops::Bound::Included(&self.end_inclusive) in end_bound()
199 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_fixed()
200 assert_eq!(range.end_bound(), std::ops::Bound::Included(&5)); in from_fixed()
210 assert_eq!(range.start_bound(), std::ops::Bound::Included(&0)); in from_fixed_empty()
211 assert_eq!(range.end_bound(), std::ops::Bound::Included(&0)); in from_fixed_empty()
221 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_range()
222 assert_eq!(range.end_bound(), std::ops::Bound in from_range()
[all...]
/third_party/rust/crates/regex/regex-syntax/src/hir/
H A Dinterval.rs252 let (min, max) = (I::Bound::min_value(), I::Bound::max_value()); in negate()
265 if self.ranges[0].lower() > I::Bound::min_value() { in negate()
267 self.ranges.push(I::create(I::Bound::min_value(), upper)); in negate()
274 if self.ranges[drain_end - 1].upper() < I::Bound::max_value() { in negate()
276 self.ranges.push(I::create(lower, I::Bound::max_value())); in negate()
338 type Bound: Bound; in next() types
340 fn lower(&self) -> Self::Bound; in next()
341 fn upper(&self) -> Self::Bound; in next()
466 pub trait Bound: global() traits
[all...]
H A Dmod.rs999 type Bound = char; types
1196 type Bound = u8; types
/third_party/node/deps/v8/src/compiler/
H A Dloop-variable-optimizer.h30 struct Bound { struct in v8::internal::compiler::InductionVariable
31 Bound(Node* bound, ConstraintKind kind) : bound(bound), kind(kind) {} in Bound() function
37 const ZoneVector<Bound>& lower_bounds() { return lower_bounds_; } in lower_bounds()
38 const ZoneVector<Bound>& upper_bounds() { return upper_bounds_; } in upper_bounds()
65 ZoneVector<Bound> lower_bounds_;
66 ZoneVector<Bound> upper_bounds_;
H A Dloop-variable-optimizer.cc84 upper_bounds_.push_back(Bound(bound, kind)); in AddUpperBound()
94 lower_bounds_.push_back(Bound(bound, kind)); in AddLowerBound()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1023 const SCEV *Bound = SE->getMinusSCEV(S, Size); in isKnownLessThan() local
1024 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Bound)) { in isKnownLessThan()
2540 BoundInfo *Bound = new BoundInfo[MaxLevels + 1]; in banerjeeMIVtest() local
2547 Bound[K].Iterations = A[K].Iterations ? A[K].Iterations : B[K].Iterations; in banerjeeMIVtest()
2548 Bound[K].Direction = Dependence::DVEntry::ALL; in banerjeeMIVtest()
2549 Bound[K].DirSet = Dependence::DVEntry::NONE; in banerjeeMIVtest()
2550 findBoundsALL(A, B, Bound, K); in banerjeeMIVtest()
2553 if (Bound[K].Lower[Dependence::DVEntry::ALL]) in banerjeeMIVtest()
2554 LLVM_DEBUG(dbgs() << *Bound[K].Lower[Dependence::DVEntry::ALL] << '\t'); in banerjeeMIVtest()
2557 if (Bound[ in banerjeeMIVtest()
2609 exploreDirections(unsigned Level, CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, const SmallBitVector &Loops, unsigned &DepthExpanded, const SCEV *Delta) const exploreDirections() argument
2714 testBounds(unsigned char DirKind, unsigned Level, BoundInfo *Bound, const SCEV *Delta) const testBounds() argument
2742 findBoundsALL(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const findBoundsALL() argument
2781 findBoundsEQ(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const findBoundsEQ() argument
2821 findBoundsLT(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const findBoundsLT() argument
2865 findBoundsGT(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const findBoundsGT() argument
[all...]
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc31 void FontData::Bound(int32_t offset, int32_t length) { in Bound() function in sfntly::FontData
66 Bound(data->bound_offset_ + offset, length); in FontData()
71 Bound(data->bound_offset_ + offset, in FontData()
H A Dfont_data.h61 virtual void Bound(int32_t offset, int32_t length);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h800 const SCEV *getLowerBound(BoundInfo *Bound) const;
805 const SCEV *getUpperBound(BoundInfo *Bound) const;
809 /// in the DirSet field of Bound. Returns the number of distinct
815 BoundInfo *Bound,
823 BoundInfo *Bound,
827 /// using the * direction. Records them in Bound.
830 BoundInfo *Bound,
834 /// using the < direction. Records them in Bound.
837 BoundInfo *Bound,
841 /// using the > direction. Records them in Bound
[all...]
/third_party/rust/crates/proc-macro2/src/
H A Dfallback.rs1063 use core::ops::Bound; in subspan()
1066 Bound::Included(start) => { in subspan()
1070 Bound::Excluded(start) => { in subspan()
1074 Bound::Unbounded => self.span.lo, in subspan()
1077 Bound::Included(end) => { in subspan()
1081 Bound::Excluded(end) => { in subspan()
1085 Bound::Unbounded => self.span.hi, in subspan()
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource9.js155 if (symbol.flags & SymbolFlags.Bound) {
160 typeSymbol.flags |= SymbolFlags.Bound;
355 if (symbol.flags & SymbolFlags.Bound) {
359 typeSymbol.flags |= SymbolFlags.Bound;
H A DparserRealSource2.js147 Bound = 1 << 18,
417 SymbolFlags[SymbolFlags["Bound"] = 262144] = "Bound";
/third_party/rust/crates/serde/test_suite/tests/
H A Dtest_ser.rs12 use std::ops::Bound;
538 &Bound::Unbounded::<()>, in test_bound()
540 Token::Enum { name: "Bound" }, in test_bound()
546 &Bound::Included(0u8), in test_bound()
548 Token::Enum { name: "Bound" }, in test_bound()
554 &Bound::Excluded(0u8), in test_bound()
556 Token::Enum { name: "Bound" }, in test_bound()
H A Dtest_de.rs28 use std::ops::Bound;
1944 Bound::Unbounded::<()>, in test_bound()
1946 Token::Enum { name: "Bound" }, in test_bound()
1952 Bound::Included(0), in test_bound()
1954 Token::Enum { name: "Bound" }, in test_bound()
1960 Bound::Excluded(0), in test_bound()
1962 Token::Enum { name: "Bound" }, in test_bound()
/third_party/node/test/parallel/
H A Dtest-net-server-listen-handle.js59 `Bound ${handleName} has fd -1 and errno ${errno}`);
H A Dtest-net-connect-options-fd.js82 console.error(`[Pipe]Bound handle with Pipe ${handle.fd}`);
/third_party/rust/crates/serde/serde/src/ser/
H A Dimpls.rs338 impl<T> Serialize for Bound<T>
347 Bound::Unbounded => serializer.serialize_unit_variant("Bound", 0, "Unbounded"), in serialize()
348 Bound::Included(ref value) => { in serialize()
349 serializer.serialize_newtype_variant("Bound", 1, "Included", value) in serialize()
351 Bound::Excluded(ref value) => { in serialize()
352 serializer.serialize_newtype_variant("Bound", 2, "Excluded", value) in serialize()
/third_party/rust/crates/serde/serde/src/
H A Dlib.rs189 pub use self::core::ops::{Bound, Range, RangeFrom, RangeInclusive, RangeTo};
/third_party/rust/crates/serde/serde/src/de/
H A Dimpls.rs2773 impl<'de, T> Deserialize<'de> for Bound<T>
2848 struct BoundVisitor<T>(PhantomData<Bound<T>>); in deserialize()
2854 type Value = Bound<T>; in deserialize()
2857 formatter.write_str("enum Bound") in deserialize()
2865 (Field::Unbounded, v) => v.unit_variant().map(|()| Bound::Unbounded), in deserialize()
2866 (Field::Included, v) => v.newtype_variant().map(Bound::Included), in deserialize()
2867 (Field::Excluded, v) => v.newtype_variant().map(Bound::Excluded), in deserialize()
2874 deserializer.deserialize_enum("Bound", VARIANTS, BoundVisitor(PhantomData)) in deserialize()
/third_party/backends/backend/
H A Dmustek_usb2_high.c760 unsigned short Bound = TotalCount - 1; in MustScanner_FiltLower() local
766 for (i = 0; i < Bound; i++) in MustScanner_FiltLower()
769 for (j = 0; j < Bound - i; j++) in MustScanner_FiltLower()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp116 Optional<uint64_t> Bound;
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceAssemblerX8632.cpp3058 const intptr_t Bound = Buffer.size(); in bind() local
3063 const intptr_t Offset = Bound - (Position + 4); in bind()
3069 const intptr_t Offset = Bound - (Position + 1); in bind()
3073 L->bindTo(Bound); in bind()
H A DIceAssemblerX8664.cpp3222 const intptr_t Bound = Buffer.size(); in bind() local
3227 const intptr_t Offset = Bound - (Position + 4); in bind()
3233 const intptr_t Offset = Bound - (Position + 1); in bind()
3237 L->bindTo(Bound); in bind()
/third_party/rust/crates/syn/tests/common/
H A Deq.rs526 spanless_eq_enum!(AssocConstraintKind; Equality(term) Bound(bounds));
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs5618 use std::ops::Bound;
5619 use std::ops::Bound::*;
6214 fn start_bound(&self) -> Bound<&usize> { in test_replace_range_evil_start_bound()
6215 Bound::Included(if self.0.get() { in test_replace_range_evil_start_bound()
6222 fn end_bound(&self) -> Bound<&usize> { in test_replace_range_evil_start_bound()
6223 Bound::Unbounded in test_replace_range_evil_start_bound()
6237 fn start_bound(&self) -> Bound<&usize> { in test_replace_range_evil_end_bound()
6238 Bound::Included(&0) in test_replace_range_evil_end_bound()
6240 fn end_bound(&self) -> Bound<&usize> { in test_replace_range_evil_end_bound()
6241 Bound in test_replace_range_evil_end_bound()
[all...]

Completed in 56 milliseconds

12