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

/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/llvm/lib/CodeGen/
H A DLiveInterval.cpp312 size_t Mid = Len >> 1; local
313 if (Pos < I[Mid].end)
314 Len = Mid;
316 I += Mid + 1, Len -= Mid + 1;
/external/pdfium/core/include/fxcrt/
H A Dfx_string.h129 CFX_ByteStringC Mid(FX_STRSIZE index, FX_STRSIZE count = -1) const function in class:CFX_ByteStringC
308 CFX_ByteString Mid(FX_STRSIZE first) const;
310 CFX_ByteString Mid(FX_STRSIZE first, FX_STRSIZE count) const;
564 CFX_WideStringC Mid(FX_STRSIZE index, FX_STRSIZE count = -1) const function in class:CFX_WideStringC
732 CFX_WideString Mid(FX_STRSIZE first) const;
734 CFX_WideString Mid(FX_STRSIZE first, FX_STRSIZE count) const;
/external/skia/src/pathops/
H A DSkPathOpsPoint.h190 static SkDPoint Mid(const SkDPoint& a, const SkDPoint& b) { function in struct:SkDPoint
/external/clang/test/SemaCXX/
H A Dconditional-expr.cpp32 struct Mid : Base {}; struct in inherits:Base
33 struct Fin : Mid, Derived {};
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp220 unsigned Mid = Size / 2; local
221 std::vector<CaseRange> LHS(Begin, Begin + Mid);
223 std::vector<CaseRange> RHS(Begin + Mid, End);
226 CaseRange &Pivot = *(Begin + Mid);
/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.cpp513 Scatterer Mid = scatter(&BCI, V); local
515 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.cpp431 CFX_WideString CFX_WideString::Mid(FX_STRSIZE nFirst) const function in class:CFX_WideString
433 return Mid(nFirst, m_pData->m_nDataLength - nFirst);
435 CFX_WideString CFX_WideString::Mid(FX_STRSIZE nFirst, FX_STRSIZE nCount) const function in class:CFX_WideString

Completed in 1997 milliseconds