Home
last modified time | relevance | path

Searched refs:isForward (Results 1 – 20 of 20) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
DFastFourierTransformer.java386 f[i+1] = roots.isForward() ? e2 : e1; in fft()
387 f[i+3] = roots.isForward() ? e1 : e2; in fft()
791 private boolean isForward; field in FastFourierTransformer.RootsOfUnity
802 isForward = true; in RootsOfUnity()
811 public synchronized boolean isForward() throws IllegalStateException { in isForward() method in FastFourierTransformer.RootsOfUnity
816 return isForward; in isForward()
836 isForward = n > 0; in computeOmega()
906 return isForward ? omegaImaginaryForward[k] : omegaImaginaryInverse[k]; in getOmegaImaginary()
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVInstruction.h554 if (getSrc()->isForward() || getDst()->isForward())
601 assert((getValue(PtrId)->isForward() ||
617 if (getValue(Op1)->isForward() || getValue(Op2)->isForward())
762 assert(getTargetLabel()->isLabel() || getTargetLabel()->isForward());
813 assert(getCondition()->isForward() ||
815 assert(getTrueLabel()->isForward() || getTrueLabel()->isLabel());
816 assert(getFalseLabel()->isForward() || getFalseLabel()->isLabel());
881 assert(IncomingV->isForward() || IncomingV->getType() == Type);
882 assert(IncomingBB->isBasicBlock() || IncomingBB->isForward());
897 if (getValue(Op1)->isForward() || getValue(Op2)->isForward())
[all …]
DSPIRVEntry.h263 bool isForward() const { return OpCode == OpForward;} in isForward() function
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
DAbstractStepInterpolator.java180 protected void reinitialize(final double[] y, final boolean isForward) { in reinitialize() argument
194 this.forward = isForward; in reinitialize()
320 public boolean isForward() { in isForward() method in AbstractStepInterpolator
DStepInterpolator.java119 boolean isForward(); in isForward() method
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
DStepInterpolatorWithJacobians.java175 boolean isForward(); in isForward() method
DFirstOrderIntegratorWithJacobians.java643 public boolean isForward() { in isForward() method in FirstOrderIntegratorWithJacobians.StepInterpolatorWrapper
644 return interpolator.isForward(); in isForward()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
DEventState.java169 … final double ignoreZone = interpolator.isForward() ? getConvergence() : -getConvergence(); in reinitializeBegin()
203 forward = interpolator.isForward(); in evaluateStep()
DCombinedEventsManager.java154 if (interpolator.isForward()) { in evaluateStep()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
DUnicodeSetStringSpanTest.java405 boolean isForward; in getSpans()
431 isForward = true; in getSpans()
437 isForward = false; in getSpans()
469 if (!isForward && (whichSpans & SPAN_FWD) != 0 && (expectCount & 1) == 0) { in getSpans()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUnicodeSetStringSpanTest.java404 boolean isForward; in getSpans()
430 isForward = true; in getSpans()
436 isForward = false; in getSpans()
468 if (!isForward && (whichSpans & SPAN_FWD) != 0 && (expectCount & 1) == 0) { in getSpans()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
DContinuousOutputModel.java205 forward = interpolator.isForward(); in handleStep()
DAbstractIntegrator.java254 final int orderingSign = interpolator.isForward() ? +1 : -1; in acceptStep()
/external/llvm/lib/Target/X86/
DX86FloatingPoint.cpp1280 bool isForward = TOS == Op0; in handleTwoArgFP() local
1283 if (isForward) in handleTwoArgFP()
1288 if (isForward) in handleTwoArgFP()
/external/llvm/include/llvm/Analysis/
DLoopAccessAnalysis.h183 bool isForward() const;
/external/llvm/lib/Transforms/Scalar/
DLoopLoadElimination.cpp171 assert(Dep.isForward() && "Needs to be a forward dependence"); in findStoreToLoadDependences()
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86FloatingPoint.cpp1211 bool isForward = TOS == Op0; in handleTwoArgFP() local
1214 if (isForward) in handleTwoArgFP()
1219 if (isForward) in handleTwoArgFP()
/external/icu/icu4c/source/test/intltest/
Dusettest.cpp2918 UBool isForward; in getSpans() local
2947 isForward=TRUE; in getSpans()
2953 isForward=FALSE; in getSpans()
2985 if(!isForward && (whichSpans&SPAN_FWD)!=0 && (expectCount&1)==0) { in getSpans()
/external/spirv-llvm/lib/SPIRV/
DSPIRVWriter.cpp245 assert (Loc->second->isForward() && in mapValue()
795 if (Loc != ValueMap.end() && (!Loc->second->isForward() || CreateForward)) in transValue()
/external/llvm/lib/Analysis/
DLoopAccessAnalysis.cpp1084 bool MemoryDepChecker::Dependence::isForward() const { in isForward() function in MemoryDepChecker::Dependence