Searched defs:Bound (Results 1 - 11 of 11) sorted by relevance

/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc29 bool FontData::Bound(int32_t offset, int32_t length) { function in class:sfntly::FontData
38 bool FontData::Bound(int32_t offset) { function in class:sfntly::FontData
56 Bound(data->bound_offset_ + offset, length);
61 Bound(data->bound_offset_ + offset,
/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/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp517 llvm::Optional<DynTypedMatcher> Bound = Result->tryBind(BindID); local
518 if (Bound.hasValue()) {
519 return VariantMatcher::SingleMatcher(*Bound);
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cc268 static void handleVLABoundNotPositive(VLABoundData *Data, ValueHandle Bound, argument
278 << Value(Data->Type, Bound);
282 ValueHandle Bound) {
284 handleVLABoundNotPositive(Data, Bound, Opts);
287 ValueHandle Bound) {
289 handleVLABoundNotPositive(Data, Bound, Opts);
281 __ubsan_handle_vla_bound_not_positive(VLABoundData *Data, ValueHandle Bound) argument
286 __ubsan_handle_vla_bound_not_positive_abort(VLABoundData *Data, ValueHandle Bound) argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/
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/valgrind/coregrind/m_debuginfo/
H A Dpriv_tytypes.h102 } Bound; member in union:__anon15903::__anon15904
/external/v8/src/
H A Dhydrogen-gvn.cc57 uint32_t Bound(uint32_t value) const { return value & (array_size_ - 1); } function in class:v8::internal::FINAL
201 uint32_t pos = Bound(hash);
288 uint32_t pos = Bound(static_cast<uint32_t>(instr->Hashcode()));
H A Dtypes.h714 TypeHandle Bound(Region* region) { function in class:v8::internal::TypeImpl::ClassType
749 TypeHandle Bound() { return this->Get(0); } function in class:v8::internal::TypeImpl::ConstantType
/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:__anon15304::__anon15305
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/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
2633 testBounds(unsigned char DirKind, unsigned Level, BoundInfo *Bound, const SCEV *Delta) const argument
2663 findBoundsALL(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const argument
2704 findBoundsEQ(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const argument
2746 findBoundsLT(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const argument
2793 findBoundsGT(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const argument
[all...]
/external/clang/lib/CodeGen/
H A DCGExpr.cpp707 llvm::Value *Bound = getArrayIndexingBound(*this, Base, IndexedType); local
708 if (!Bound)
713 llvm::Value *BoundVal = Builder.CreateIntCast(Bound, SizeTy, false);

Completed in 408 milliseconds