Home
last modified time | relevance | path

Searched refs:Pivot (Results 1 – 18 of 18) 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-10.0/llvm/include/llvm/Support/
DParallel.h104 auto Pivot = medianOf3(Start, End, Comp); in parallel_quick_sort() local
106 std::swap(*(End - 1), *Pivot); in parallel_quick_sort()
107 Pivot = std::partition(Start, End - 1, [&Comp, End](decltype(*Start) V) { in parallel_quick_sort()
111 std::swap(*Pivot, *(End - 1)); in parallel_quick_sort()
115 parallel_quick_sort(Start, Pivot, Comp, TG, Depth - 1); in parallel_quick_sort()
117 parallel_quick_sort(Pivot + 1, End, Comp, TG, Depth - 1); in parallel_quick_sort()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DStringTableBuilder.cpp97 int Pivot = charTailAt(Vec[0], Pos); in multikeySort() local
102 if (C > Pivot) in multikeySort()
104 else if (C < Pivot) in multikeySort()
115 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/llvm-project/llvm/lib/MC/
DStringTableBuilder.cpp102 int Pivot = charTailAt(Vec[0], Pos); in multikeySort() local
107 if (C > Pivot) in multikeySort()
109 else if (C < Pivot) in multikeySort()
120 if (Pivot != -1) { in multikeySort()
/external/llvm-project/mlir/include/mlir/Analysis/Presburger/
DSimplex.h253 struct Pivot { struct
263 Optional<Pivot> findPivot(int row, Direction direction) const; argument
271 void pivot(Pivot pair);
/external/llvm-project/llvm/include/llvm/Support/
DParallel.h100 auto Pivot = medianOf3(Start, End, Comp); in parallel_quick_sort() local
102 std::swap(*(End - 1), *Pivot); in parallel_quick_sort()
103 Pivot = std::partition(Start, End - 1, [&Comp, End](decltype(*Start) V) { in parallel_quick_sort()
107 std::swap(*Pivot, *(End - 1)); in parallel_quick_sort()
111 parallel_quick_sort(Start, Pivot, Comp, TG, Depth - 1); in parallel_quick_sort()
113 parallel_quick_sort(Pivot + 1, End, Comp, TG, Depth - 1); in parallel_quick_sort()
/external/llvm-project/llvm/test/CodeGen/AMDGPU/
Dmulti-divergent-exit-region.ll12 ; IR: %0 = call { i1, i64 } @llvm.amdgcn.if.i64(i1 %Pivot.inv)
123 %Pivot = icmp slt i32 %tmp16, 2
124 br i1 %Pivot, label %LeafBlock, label %LeafBlock1
144 ; IR: %0 = call { i1, i64 } @llvm.amdgcn.if.i64(i1 %Pivot.inv)
178 %Pivot = icmp slt i32 %tmp16, 2
179 br i1 %Pivot, label %LeafBlock, label %LeafBlock1
282 ; IR: %0 = call { i1, i64 } @llvm.amdgcn.if.i64(i1 %Pivot.inv)
310 %Pivot = icmp slt i32 %tmp16, 2
311 br i1 %Pivot, label %LeafBlock, label %LeafBlock1
341 %Pivot = icmp slt i32 %vgpr, 2
[all …]
/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-10.0/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp278 CaseRange &Pivot = *(Begin + Mid); in switchConvert() local
279 LLVM_DEBUG(dbgs() << "Pivot ==> [" << Pivot.Low->getValue() << ", " in switchConvert()
280 << Pivot.High->getValue() << "]\n"); in switchConvert()
286 ConstantInt *NewLowerBound = Pivot.Low; in switchConvert()
313 Val, Pivot.Low, "Pivot"); in switchConvert()
/external/llvm-project/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp250 CaseRange &Pivot = *(Begin + Mid); in SwitchConvert() local
251 LLVM_DEBUG(dbgs() << "Pivot ==> [" << Pivot.Low->getValue() << ", " in SwitchConvert()
252 << Pivot.High->getValue() << "]\n"); in SwitchConvert()
258 ConstantInt *NewLowerBound = Pivot.Low; in SwitchConvert()
285 Val, Pivot.Low, "Pivot"); in SwitchConvert()
/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/llvm-project/llvm/test/Transforms/LowerSwitch/
Dfeature.ll51 ;CHECK-NEXT: %Pivot = icmp slt i32 %tmp158, 0
52 ;CHECK-NEXT: br i1 %Pivot, label %LeafBlock, label %bb338
/external/llvm-project/mlir/lib/Analysis/Presburger/
DSimplex.cpp157 Optional<Simplex::Pivot> Simplex::findPivot(int row, in findPivot()
178 return Pivot{maybePivotRow.getValueOr(row), *col}; in findPivot()
195 void Simplex::pivot(Pivot pair) { pivot(pair.row, pair.column); } in pivot()
268 Optional<Pivot> maybePivot = findPivot(u.pos, Direction::Up); in restoreRow()
467 while (Optional<Pivot> maybePivot = findPivot(row, direction)) { in computeRowOptimum()
/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-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp10432 const ConstantInt *Pivot = PivotCluster->Low; in splitWorkItem() local
10444 (FirstLeft->High->getValue() + 1LL) == Pivot->getValue()) { in splitWorkItem()
10450 {LeftMBB, FirstLeft, LastLeft, W.GE, Pivot, W.DefaultProb / 2}); in splitWorkItem()
10466 {RightMBB, FirstRight, LastRight, Pivot, W.LT, W.DefaultProb / 2}); in splitWorkItem()
10472 CaseBlock CB(ISD::SETLT, Cond, Pivot, nullptr, LeftMBB, RightMBB, W.MBB, in splitWorkItem()
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp10563 const ConstantInt *Pivot = PivotCluster->Low; in splitWorkItem() local
10575 (FirstLeft->High->getValue() + 1LL) == Pivot->getValue()) { in splitWorkItem()
10581 {LeftMBB, FirstLeft, LastLeft, W.GE, Pivot, W.DefaultProb / 2}); in splitWorkItem()
10597 {RightMBB, FirstRight, LastRight, Pivot, W.LT, W.DefaultProb / 2}); in splitWorkItem()
10603 CaseBlock CB(ISD::SETLT, Cond, Pivot, nullptr, LeftMBB, RightMBB, W.MBB, in splitWorkItem()
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86BaseImpl.h7220 const CaseCluster &Pivot = CaseClusters[PivotIndex];
7221 Constant *Value = Ctx->getConstantInt32(Pivot.getLow());