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

/external/llvm/lib/CodeGen/
H A DLiveInterval.cpp43 size_t Mid = Len >> 1; local
44 if (Pos < I[Mid].end)
45 Len = Mid;
47 I += Mid + 1, Len -= Mid + 1;
/external/llvm/tools/bugpoint/
H A DListReducer.h115 unsigned Mid = MidTop / 2; local
116 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid);
117 std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end());
140 MidTop = Mid;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsPoint.h205 static SkDPoint Mid(const SkDPoint& a, const SkDPoint& b) { function in struct:SkDPoint
/external/skia/src/pathops/
H A DSkPathOpsPoint.h205 static SkDPoint Mid(const SkDPoint& a, const SkDPoint& b) { function in struct:SkDPoint
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp157 unsigned Mid = Size / 2; local
158 std::vector<CaseRange> LHS(Begin, Begin + Mid);
160 std::vector<CaseRange> RHS(Begin + Mid, End);
163 CaseRange &Pivot = *(Begin + Mid);
/external/pdfium/core/include/fxcrt/
H A Dfx_string.h123 CFX_ByteStringC Mid(FX_STRSIZE index, FX_STRSIZE count = -1) const function in class:CFX_ByteStringC
292 CFX_ByteString Mid(FX_STRSIZE first) const;
294 CFX_ByteString Mid(FX_STRSIZE first, FX_STRSIZE count) const;
563 CFX_WideStringC Mid(FX_STRSIZE index, FX_STRSIZE count = -1) const function in class:CFX_WideStringC
693 CFX_WideString Mid(FX_STRSIZE first) const;
695 CFX_WideString Mid(FX_STRSIZE first, FX_STRSIZE count) const;
/external/clang/test/SemaCXX/
H A Dconditional-expr.cpp32 struct Mid : Base {}; struct in inherits:Base
33 struct Fin : Mid, Derived {};
/external/lzma/CPP/Common/
H A DMyString.h313 CStringBase Mid(int startIndex) const function in class:CStringBase
314 { return Mid(startIndex, _length - startIndex); }
315 CStringBase Mid(int startIndex, int count) const function in class:CStringBase
333 { return Mid(0, count); }
338 return Mid(_length - count, count);
/external/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp508 Scatterer Mid = scatter(&BCI, V); local
510 Res[ResI++] = Mid[MidI];
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_bstring.cpp445 CFX_ByteString CFX_ByteString::Mid(FX_STRSIZE nFirst) const function in class:CFX_ByteString
450 return Mid(nFirst, m_pData->m_nDataLength - nFirst);
452 CFX_ByteString CFX_ByteString::Mid(FX_STRSIZE nFirst, FX_STRSIZE nCount) const function in class:CFX_ByteString
H A Dfx_basic_wstring.cpp452 CFX_WideString CFX_WideString::Mid(FX_STRSIZE nFirst) const function in class:CFX_WideString
454 return Mid(nFirst, m_pData->m_nDataLength - nFirst);
456 CFX_WideString CFX_WideString::Mid(FX_STRSIZE nFirst, FX_STRSIZE nCount) const function in class:CFX_WideString

Completed in 1777 milliseconds