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

12

/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DNavigableMapTestSuiteBuilder.java22 import com.google.common.collect.testing.DerivedCollectionGenerators.Bound;
65 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
66 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
67 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
68 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.INCLUSIVE));
69 derivedSuites.add(createSubmapSuite(parentBuilder, Bound
[all...]
H A DNavigableSetTestSuiteBuilder.java19 import com.google.common.collect.testing.DerivedCollectionGenerators.Bound;
57 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
58 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
59 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
60 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.INCLUSIVE));
61 derivedSuites.add(createSubsetSuite(parentBuilder, Bound
[all...]
H A DSortedSetTestSuiteBuilder.java19 import com.google.common.collect.testing.DerivedCollectionGenerators.Bound;
66 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE));
67 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.INCLUSIVE, Bound.NO_BOUND));
68 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.INCLUSIVE, Bound.EXCLUSIVE));
83 parentBuilder, final Bound from, final Bound to) {
101 TestSortedSetGenerator<E> delegate, Bound t
[all...]
H A DSortedMapTestSuiteBuilder.java19 import com.google.common.collect.testing.DerivedCollectionGenerators.Bound;
67 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE));
68 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.NO_BOUND));
69 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.EXCLUSIVE));
105 parentBuilder, final Bound from, final Bound to) {
122 TestSortedMapGenerator<K, V> delegate, Bound t
[all...]
H A DDerivedCollectionGenerators.java334 public enum Bound { enum in class:DerivedCollectionGenerators
342 final Bound to;
343 final Bound from;
350 TestSortedSetGenerator<E> delegate, Bound to, Bound from) {
369 public final Bound getTo() {
373 public final Bound getFrom() {
408 if (from != Bound.NO_BOUND) {
412 if (to != Bound.NO_BOUND) {
430 if (from == Bound
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DSortedMultisetTestSuiteBuilder.java109 enum Bound { enum in class:SortedMultisetTestSuiteBuilder
126 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.NO_BOUND,
127 Bound.EXCLUSIVE));
128 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.NO_BOUND,
129 Bound.INCLUSIVE));
130 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
131 Bound.NO_BOUND));
132 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
133 Bound.EXCLUSIVE));
134 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound
[all...]
/external/v8/src/compiler/
H A Dloop-variable-optimizer.h27 struct Bound { struct in class:v8::internal::compiler::InductionVariable
28 Bound(Node* bound, ConstraintKind kind) : bound(bound), kind(kind) {} function in struct:v8::internal::compiler::InductionVariable::Bound
34 const ZoneVector<Bound>& lower_bounds() { return lower_bounds_; }
35 const ZoneVector<Bound>& upper_bounds() { return upper_bounds_; }
59 ZoneVector<Bound> lower_bounds_;
60 ZoneVector<Bound> upper_bounds_;
H A Dloop-variable-optimizer.cc158 upper_bounds_.push_back(Bound(bound, kind));
168 lower_bounds_.push_back(Bound(bound, kind));
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc31 void FontData::Bound(int32_t offset, int32_t length) { function in class:sfntly::FontData
66 Bound(data->bound_offset_ + offset, length);
71 Bound(data->bound_offset_ + offset,
H A Dfont_data.h61 virtual void Bound(int32_t offset, int32_t length);
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-bind.cpp275 template<typename Bound, typename... Args>
276 inline typename safe_tuple_element<is_placeholder<Bound>::value -1,
278 mu(Bound& bound_arg, const tuple<Args&...>& args) {
279 return get<is_placeholder<Bound>::value-1>(args);
293 template<typename Bound, typename... Args>
294 inline typename enable_if<is_bind_expression<Bound>::value,
295 typename Bound::result_type>::type
296 mu(Bound& bound_arg, const tuple<Args&...>& args) {
311 template<typename Bound, typename... Args>
312 inline typename enable_if<(!is_bind_expression<Bound>
[all...]
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp2463 BoundInfo *Bound = new BoundInfo[MaxLevels + 1]; local
2470 Bound[K].Iterations = A[K].Iterations ? A[K].Iterations : B[K].Iterations;
2471 Bound[K].Direction = Dependence::DVEntry::ALL;
2472 Bound[K].DirSet = Dependence::DVEntry::NONE;
2473 findBoundsALL(A, B, Bound, K);
2476 if (Bound[K].Lower[Dependence::DVEntry::ALL])
2477 DEBUG(dbgs() << *Bound[K].Lower[Dependence::DVEntry::ALL] << '\t');
2480 if (Bound[K].Upper[Dependence::DVEntry::ALL])
2481 DEBUG(dbgs() << *Bound[K].Upper[Dependence::DVEntry::ALL] << '\n');
2489 if (testBounds(Dependence::DVEntry::ALL, 0, Bound, Delt
2532 exploreDirections(unsigned Level, CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, const SmallBitVector &Loops, unsigned &DepthExpanded, const SCEV *Delta) const argument
2631 testBounds(unsigned char DirKind, unsigned Level, BoundInfo *Bound, const SCEV *Delta) const argument
2659 findBoundsALL(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const argument
2698 findBoundsEQ(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const argument
2738 findBoundsLT(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const argument
2782 findBoundsGT(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const argument
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dtytypes.c114 if (te->Te.Bound.knownL)
115 VG_(printf)("%lld", te->Te.Bound.boundL);
119 if (te->Te.Bound.knownU)
120 VG_(printf)("%lld", te->Te.Bound.boundU);
224 if (ent->Te.Bound.knownL && ent->Te.Bound.knownU
225 && ent->Te.Bound.boundL == 0) {
226 VG_(printf)("[%lld]", 1 + ent->Te.Bound.boundU);
229 if (ent->Te.Bound.knownL && (!ent->Te.Bound
[all...]
H A Dpriv_tytypes.h102 } Bound; member in union:__anon22904::__anon22905
H A Dreaddwarf3.c3627 boundE.Te.Bound.knownL = True;
3628 boundE.Te.Bound.knownU = True;
3629 boundE.Te.Bound.boundL = lower;
3630 boundE.Te.Bound.boundU = upper;
3633 boundE.Te.Bound.knownL = True;
3634 boundE.Te.Bound.knownU = False;
3635 boundE.Te.Bound.boundL = lower;
3636 boundE.Te.Bound.boundU = 0;
3639 boundE.Te.Bound.knownL = False;
3640 boundE.Te.Bound
[all...]
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h796 const SCEV *getLowerBound(BoundInfo *Bound) const;
801 const SCEV *getUpperBound(BoundInfo *Bound) const;
805 /// in the DirSet field of Bound. Returns the number of distinct
811 BoundInfo *Bound,
819 BoundInfo *Bound,
823 /// using the * direction. Records them in Bound.
826 BoundInfo *Bound,
830 /// using the < direction. Records them in Bound.
833 BoundInfo *Bound,
837 /// using the > direction. Records them in Bound
[all...]
/external/autotest/server/cros/network/
H A Dnetperf_runner.py279 Bound = collections.namedtuple('Bound', ['lower', 'upper'])
280 self.duration_seconds_bounds = Bound(duration_seconds_min,
282 self.throughput_bounds = Bound(throughput_min, throughput_max)
283 self.errors_bounds = Bound(error_min, error_max)
284 self.transaction_rate_bounds = Bound(transaction_rate_min,
/external/valgrind/VEX/priv/
H A Dhost_generic_reg_alloc2.c104 /* Used when .disp == Bound and we are looking for vregs to
107 /* Optimisation: used when .disp == Bound. Indicates when the
115 Bound /* in use (holding value of some vreg) */ enumerator in enum:__anon22304::__anon22305
118 /* If .disp == Bound, what vreg is it bound to? */
152 Only do the search for vregs which are Bound in the running state,
179 vassert(state[k].disp == Bound);
482 case Bound: vex_printf("BoundTo "); \
1037 vassert(rreg_state[j].disp == Bound
1059 if (rreg_state[j].disp != Bound) {
1074 if (rreg_state[j].disp != Bound)
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cc321 static void handleVLABoundNotPositive(VLABoundData *Data, ValueHandle Bound, argument
333 << Value(Data->Type, Bound);
337 ValueHandle Bound) {
339 handleVLABoundNotPositive(Data, Bound, Opts);
342 ValueHandle Bound) {
344 handleVLABoundNotPositive(Data, Bound, Opts);
336 __ubsan_handle_vla_bound_not_positive(VLABoundData *Data, ValueHandle Bound) argument
341 __ubsan_handle_vla_bound_not_positive_abort(VLABoundData *Data, ValueHandle Bound) argument
H A Dubsan_handlers.h98 RECOVERABLE(vla_bound_not_positive, VLABoundData *Data, ValueHandle Bound)
/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp589 llvm::Optional<DynTypedMatcher> Bound = Result->tryBind(BindID); local
590 if (Bound.hasValue()) {
591 return VariantMatcher::SingleMatcher(*Bound);
/external/v8/src/crankshaft/
H A Dhydrogen-gvn.cc58 uint32_t Bound(uint32_t value) const { return value & (array_size_ - 1); } function in class:v8::internal::final
202 uint32_t pos = Bound(hash);
289 uint32_t pos = Bound(static_cast<uint32_t>(instr->Hashcode()));
/external/clang/lib/CodeGen/
H A DCGExpr.cpp751 llvm::Value *Bound = getArrayIndexingBound(*this, Base, IndexedType); local
752 if (!Bound)
757 llvm::Value *BoundVal = Builder.CreateIntCast(Bound, SizeTy, false);
/external/mockito/lib/
H A Dbyte-buddy-1.6.9.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/net. ...
/external/abi-dumper/
H A Dabi-dumper.pl2233 if((my $Bound = $DWARF_Info{$ID}{"upper_bound"}) ne "") {
2234 $ArrayCount{$Scope} = $Bound + 1;

Completed in 2698 milliseconds

12