Searched refs:Mid (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DParallel.h86 RandomAccessIterator Mid = Start + (std::distance(Start, End) / 2); local
88 ? (Comp(*Mid, *(End - 1)) ? (Comp(*Start, *Mid) ? Mid : Start)
90 : (Comp(*Mid, *Start) ? (Comp(*(End - 1), *Mid) ? Mid : End - 1)
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DListReducer.h119 unsigned Mid = MidTop / 2; local
120 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin() + Mid);
121 std::vector<ElTy> Suffix(TheList.begin() + Mid, TheList.end());
147 MidTop = Mid;
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacstruct.h299 } Mid; member in union:acpi_aml_operands
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp272 unsigned Mid = Size / 2; local
273 std::vector<CaseRange> LHS(Begin, Begin + Mid);
275 std::vector<CaseRange> RHS(Begin + Mid, End);
278 CaseRange &Pivot = *(Begin + Mid);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp334 unsigned Mid = Contexts.size() / 2; local
336 assert(Mid > 0 && "Expected more than one context");
338 for (unsigned I = 0; I < Mid; ++I)
340 Contexts[I + Mid].get());
347 End = Mid;
348 Mid /= 2;
349 } while (Mid > 0);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveInterval.cpp359 size_t Mid = Len >> 1; local
360 if (Pos < I[Mid].end) {
361 Len = Mid;
363 I += Mid + 1;
364 Len -= Mid + 1;
H A DStackColoring.cpp1286 auto Mid = FirstS.begin() + OldSize; local
1287 std::inplace_merge(FirstS.begin(), Mid, FirstS.end());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp714 Scatterer Mid = scatter(&BCI, V); local
716 Res[ResI++] = Mid[MidI];
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp2863 const auto &Mid = Indices.begin() + Indices.size() / 2; local
2866 if (fitsRegularPattern<int>(Begin, 1, Mid, 0, 2))
2868 else if (fitsRegularPattern<int>(Begin, 1, Mid, Indices.size(), 2))
2873 if (fitsRegularPattern<int>(Mid, 1, End, 0, 2))
2875 else if (fitsRegularPattern<int>(Mid, 1, End, Indices.size(), 2))
2906 const auto &Mid = Indices.begin() + Indices.size() / 2; local
2909 if (fitsRegularPattern<int>(Begin, 1, Mid, 1, 2))
2911 else if (fitsRegularPattern<int>(Begin, 1, Mid, Indices.size() + 1, 2))
2916 if (fitsRegularPattern<int>(Mid, 1, End, 1, 2))
2918 else if (fitsRegularPattern<int>(Mid,
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp11454 int Lo = Lane, Mid = Lane + NumHalfLaneElts, Hi = Lane + NumLaneElts;
11455 MatchLo &= isUndefOrInRange(M, Lo, Mid) ||
11456 isUndefOrInRange(M, NumElts + Lo, NumElts + Mid);
11457 MatchHi &= isUndefOrInRange(M, Mid, Hi) ||
11458 isUndefOrInRange(M, NumElts + Mid, NumElts + Hi);
[all...]

Completed in 246 milliseconds