Home
last modified time | relevance | path

Searched refs:Pivot (Results 1 – 14 of 14) sorted by relevance

/external/lmfit/lib/
Dlmmin.c30 void lm_lmpar(const int n, double* r, const int ldr, const int* Pivot,
33 void lm_qrfac(const int m, const int n, double* A, int* Pivot, double* Rdiag,
35 void lm_qrsolv(const int n, double* r, const int ldr, const int* Pivot,
221 int* Pivot = (int*)pws; in lmmin() local
304 lm_qrfac(m, n, fjac, Pivot, wa1, wa2, wa3); in lmmin()
328 if (wa2[Pivot[j]] == 0) in lmmin()
333 gnorm = MAX(gnorm, fabs(sum / wa2[Pivot[j]] / fnorm)); in lmmin()
389 lm_lmpar(n, fjac, m, Pivot, diag, qtf, delta, &lmpar, in lmmin()
403 wa3[i] -= fjac[j*m+i] * wa1[Pivot[j]]; in lmmin()
553 void lm_lmpar(const int n, double* r, const int ldr, const int* Pivot, in lm_lmpar() argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DParallel.h126 auto Pivot = medianOf3(Start, End, Comp); in parallel_quick_sort() local
128 std::swap(*(End - 1), *Pivot); in parallel_quick_sort()
129 Pivot = std::partition(Start, End - 1, [&Comp, End](decltype(*Start) V) { in parallel_quick_sort()
133 std::swap(*Pivot, *(End - 1)); in parallel_quick_sort()
137 parallel_quick_sort(Start, Pivot, Comp, TG, Depth - 1); in parallel_quick_sort()
139 parallel_quick_sort(Pivot + 1, End, Comp, TG, Depth - 1); in parallel_quick_sort()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DStringTableBuilder.cpp94 int Pivot = charTailAt(Vec[0], Pos); in multikeySort() local
99 if (C > Pivot) in multikeySort()
101 else if (C < Pivot) in multikeySort()
112 if (Pivot != -1) { in multikeySort()
/external/llvm/lib/MC/
DStringTableBuilder.cpp56 int Pivot = charTailAt(*Begin, Pos); in multikey_qsort() local
61 if (C > Pivot) in multikey_qsort()
63 else if (C < Pivot) in multikey_qsort()
71 if (Pivot != -1) { in multikey_qsort()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DLowerSwitch.cpp145 CaseRange& Pivot = *(Begin + Mid); in switchConvert() local
147 << cast<ConstantInt>(Pivot.Low)->getValue() << " -" in switchConvert()
148 << cast<ConstantInt>(Pivot.High)->getValue() << "\n"); in switchConvert()
163 Val, Pivot.Low, "Pivot"); in switchConvert()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp249 CaseRange &Pivot = *(Begin + Mid); in switchConvert() local
250 LLVM_DEBUG(dbgs() << "Pivot ==> " << Pivot.Low->getValue() << " -" in switchConvert()
251 << Pivot.High->getValue() << "\n"); in switchConvert()
257 ConstantInt *NewLowerBound = Pivot.Low; in switchConvert()
288 Val, Pivot.Low, "Pivot"); in switchConvert()
/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp229 CaseRange &Pivot = *(Begin + Mid); in switchConvert() local
231 << Pivot.Low->getValue() in switchConvert()
232 << " -" << Pivot.High->getValue() << "\n"); in switchConvert()
238 ConstantInt *NewLowerBound = Pivot.Low; in switchConvert()
275 Val, Pivot.Low, "Pivot"); in switchConvert()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dmulti-divergent-exit-region.ll106 %Pivot = icmp slt i32 %tmp16, 2
107 br i1 %Pivot, label %LeafBlock, label %LeafBlock1
161 %Pivot = icmp slt i32 %tmp16, 2
162 br i1 %Pivot, label %LeafBlock, label %LeafBlock1
293 %Pivot = icmp slt i32 %tmp16, 2
294 br i1 %Pivot, label %LeafBlock, label %LeafBlock1
325 %Pivot = icmp slt i32 %vgpr, 2
326 br i1 %Pivot, label %LeafBlock, label %LeafBlock1
439 %Pivot = icmp slt i32 %tmp16, 2
440 br i1 %Pivot, label %LeafBlock, label %LeafBlock1
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LowerSwitch/
Dfeature.ll50 ;CHECK-NEXT: %Pivot = icmp slt i32 %tmp158, 0
51 ;CHECK-NEXT: br i1 %Pivot, label %LeafBlock, label %bb338
/external/llvm/test/Transforms/LowerSwitch/
Dfeature.ll50 ;CHECK-NEXT: %Pivot = icmp slt i32 %tmp158, 0
51 ;CHECK-NEXT: br i1 %Pivot, label %LeafBlock, label %bb338
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp2139 CaseItr Pivot = CR.Range.first + Size/2; in handleBTSplitSwitchCase() local
2176 Pivot = J; in handleBTSplitSwitchCase()
2188 Pivot = CR.Range.first + Size/2; in handleBTSplitSwitchCase()
2191 CaseRange LHSR(CR.Range.first, Pivot); in handleBTSplitSwitchCase()
2192 CaseRange RHSR(Pivot, CR.Range.second); in handleBTSplitSwitchCase()
2193 Constant *C = Pivot->Low; in handleBTSplitSwitchCase()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp8972 const ConstantInt *Pivot = PivotCluster->Low; in splitWorkItem() local
8984 (FirstLeft->High->getValue() + 1LL) == Pivot->getValue()) { in splitWorkItem()
8990 {LeftMBB, FirstLeft, LastLeft, W.GE, Pivot, W.DefaultProb / 2}); in splitWorkItem()
9006 {RightMBB, FirstRight, LastRight, Pivot, W.LT, W.DefaultProb / 2}); in splitWorkItem()
9012 CaseBlock CB(ISD::SETLT, Cond, Pivot, nullptr, LeftMBB, RightMBB, W.MBB, in splitWorkItem()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp10085 const ConstantInt *Pivot = PivotCluster->Low; in splitWorkItem() local
10097 (FirstLeft->High->getValue() + 1LL) == Pivot->getValue()) { in splitWorkItem()
10103 {LeftMBB, FirstLeft, LastLeft, W.GE, Pivot, W.DefaultProb / 2}); in splitWorkItem()
10119 {RightMBB, FirstRight, LastRight, Pivot, W.LT, W.DefaultProb / 2}); in splitWorkItem()
10125 CaseBlock CB(ISD::SETLT, Cond, Pivot, nullptr, LeftMBB, RightMBB, W.MBB, in splitWorkItem()
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86BaseImpl.h7169 const CaseCluster &Pivot = CaseClusters[PivotIndex];
7170 Constant *Value = Ctx->getConstantInt32(Pivot.getLow());