/external/curl/lib/ |
D | mk-ca-bundle.vbs | 67 myCdFile = Mid(myUrl, InstrRev(myUrl, "/") + 1) 253 myLicenseText = myLicenseText & Mid(myLines(i), 2) & vbLf 337 nGroup = &H10000 * Asc(Mid(inData, I, 1)) + _ 338 &H100 * MyASC(Mid(inData, I + 1, 1)) + _ 339 MyASC(Mid(inData, I + 2, 1)) 348 pOut = Mid(Base64, CLng("&o" & Mid(nGroup, 1, 2)) + 1, 1) & _ 349 Mid(Base64, CLng("&o" & Mid(nGroup, 3, 2)) + 1, 1) & _ 350 Mid(Base64, CLng("&o" & Mid(nGroup, 5, 2)) + 1, 1) & _ 351 Mid(Base64, CLng("&o" & Mid(nGroup, 7, 2)) + 1, 1)
|
/external/llvm/tools/bugpoint/ |
D | ListReducer.h | 120 unsigned Mid = MidTop / 2; in reduceList() local 121 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid); in reduceList() 122 std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end()); in reduceList() 145 MidTop = Mid; in reduceList()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | Parallel.h | 108 RandomAccessIterator Mid = Start + (std::distance(Start, End) / 2); in medianOf3() local 110 ? (Comp(*Mid, *(End - 1)) ? (Comp(*Start, *Mid) ? Mid : Start) in medianOf3() 112 : (Comp(*Mid, *Start) ? (Comp(*(End - 1), *Mid) ? Mid : End - 1) in medianOf3()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/ |
D | ListReducer.h | 120 unsigned Mid = MidTop / 2; in reduceList() local 121 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin() + Mid); in reduceList() 122 std::vector<ElTy> Suffix(TheList.begin() + Mid, TheList.end()); in reduceList() 148 MidTop = Mid; in reduceList()
|
/external/capstone/bindings/vb6/ |
D | mMisc.bas | 68 high = Mid(str, 1, Len(str) - 8) 112 col2Str = Mid(col2Str, 1, Len(col2Str) - 2) 125 regCol2Str = Mid(regCol2Str, 1, Len(regCol2Str) - 2) 196 x = Mid(str, i, 2)
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-profdata/ |
D | llvm-profdata.cpp | 283 unsigned Mid = Contexts.size() / 2; in mergeInstrProfile() local 285 assert(Mid > 0 && "Expected more than one context"); in mergeInstrProfile() 287 for (unsigned I = 0; I < Mid; ++I) in mergeInstrProfile() 289 Contexts[I + Mid].get()); in mergeInstrProfile() 296 End = Mid; in mergeInstrProfile() 297 Mid /= 2; in mergeInstrProfile() 298 } while (Mid > 0); in mergeInstrProfile()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | LowerSwitch.cpp | 243 unsigned Mid = Size / 2; in switchConvert() local 244 std::vector<CaseRange> LHS(Begin, Begin + Mid); in switchConvert() 246 std::vector<CaseRange> RHS(Begin + Mid, End); in switchConvert() 249 CaseRange &Pivot = *(Begin + Mid); in switchConvert()
|
/external/llvm/lib/Transforms/Utils/ |
D | LowerSwitch.cpp | 223 unsigned Mid = Size / 2; in switchConvert() local 224 std::vector<CaseRange> LHS(Begin, Begin + Mid); in switchConvert() 226 std::vector<CaseRange> RHS(Begin + Mid, End); in switchConvert() 229 CaseRange &Pivot = *(Begin + Mid); in switchConvert()
|
/external/angle/doc/ |
D | CaptureAndReplay.md | 9 * Mid-execution capture is supported with the Vulkan back-end. 10 * Mid-execution capture has many unimplemented features. 127 Note: Mid-execution capture doesn't work for Android just yet, so frame_start must be
|
/external/icu/icu4c/source/data/translit/ |
D | blt_blt_FONIPA.txt | 70 $HI $W? { \uAAC1 ($V3 $F?)} → $1 ˧˩; # Tone class 6: Mid-falling tone 77 $HI $W? $V12 { \uAAC1 ($F?)} → $1 ˧˩; # Tone class 6: Mid-falling tone
|
/external/clang/test/SemaCXX/ |
D | constant-expression-cxx11.cpp | 1016 template<int N> struct Mid : Base {}; struct 1017 struct Derived : Mid<0>, Mid<1> {}; 1018 static_assert(&Mid<0>::n == &Mid<1>::n, ""); 1019 static_assert((int Derived::*)(int Mid<0>::*)&Mid<0>::n != 1020 (int Derived::*)(int Mid<1>::*)&Mid<1>::n, ""); 1021 static_assert(&Mid<0>::n == (int Mid<0>::*)&Base::n, "");
|
D | conditional-expr.cpp | 32 struct Mid : Base {}; struct 33 struct Fin : Mid, Derived {};
|
/external/llvm/lib/CodeGen/ |
D | LiveInterval.cpp | 312 size_t Mid = Len >> 1; in find() local 313 if (Pos < I[Mid].end) { in find() 314 Len = Mid; in find() 316 I += Mid + 1; in find() 317 Len -= Mid + 1; in find()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | LiveInterval.cpp | 362 size_t Mid = Len >> 1; in find() local 363 if (Pos < I[Mid].end) { in find() 364 Len = Mid; in find() 366 I += Mid + 1; in find() 367 Len -= Mid + 1; in find()
|
D | StackColoring.cpp | 1266 auto Mid = FirstS.begin() + OldSize; in runOnMachineFunction() local 1267 std::inplace_merge(FirstS.begin(), Mid, FirstS.end()); in runOnMachineFunction()
|
/external/llvm/lib/Transforms/Scalar/ |
D | Scalarizer.cpp | 522 Scatterer Mid = scatter(&BCI, V); in visitBitCastInst() local 524 Res[ResI++] = Mid[MidI]; in visitBitCastInst()
|
/external/skqp/src/pathops/ |
D | SkPathOpsPoint.h | 226 static SkDPoint Mid(const SkDPoint& a, const SkDPoint& b) { in Mid() function
|
D | SkPathOpsQuad.cpp | 315 return SkDPoint::Mid(b0[1], b1[1]); in subDivide()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | MipsSEISelLowering.cpp | 2840 const auto &Mid = Indices.begin() + Indices.size() / 2; in lowerVECTOR_SHUFFLE_PCKEV() local 2843 if (fitsRegularPattern<int>(Begin, 1, Mid, 0, 2)) in lowerVECTOR_SHUFFLE_PCKEV() 2845 else if (fitsRegularPattern<int>(Begin, 1, Mid, Indices.size(), 2)) in lowerVECTOR_SHUFFLE_PCKEV() 2850 if (fitsRegularPattern<int>(Mid, 1, End, 0, 2)) in lowerVECTOR_SHUFFLE_PCKEV() 2852 else if (fitsRegularPattern<int>(Mid, 1, End, Indices.size(), 2)) in lowerVECTOR_SHUFFLE_PCKEV() 2883 const auto &Mid = Indices.begin() + Indices.size() / 2; in lowerVECTOR_SHUFFLE_PCKOD() local 2886 if (fitsRegularPattern<int>(Begin, 1, Mid, 1, 2)) in lowerVECTOR_SHUFFLE_PCKOD() 2888 else if (fitsRegularPattern<int>(Begin, 1, Mid, Indices.size() + 1, 2)) in lowerVECTOR_SHUFFLE_PCKOD() 2893 if (fitsRegularPattern<int>(Mid, 1, End, 1, 2)) in lowerVECTOR_SHUFFLE_PCKOD() 2895 else if (fitsRegularPattern<int>(Mid, 1, End, Indices.size() + 1, 2)) in lowerVECTOR_SHUFFLE_PCKOD()
|
/external/llvm/lib/Target/Mips/ |
D | MipsSEISelLowering.cpp | 2749 const auto &Mid = Indices.begin() + Indices.size() / 2; in lowerVECTOR_SHUFFLE_PCKEV() local 2752 if (fitsRegularPattern<int>(Begin, 1, Mid, 0, 2)) in lowerVECTOR_SHUFFLE_PCKEV() 2754 else if (fitsRegularPattern<int>(Begin, 1, Mid, Indices.size(), 2)) in lowerVECTOR_SHUFFLE_PCKEV() 2759 if (fitsRegularPattern<int>(Mid, 1, End, 0, 2)) in lowerVECTOR_SHUFFLE_PCKEV() 2761 else if (fitsRegularPattern<int>(Mid, 1, End, Indices.size(), 2)) in lowerVECTOR_SHUFFLE_PCKEV() 2792 const auto &Mid = Indices.begin() + Indices.size() / 2; in lowerVECTOR_SHUFFLE_PCKOD() local 2795 if (fitsRegularPattern<int>(Begin, 1, Mid, 1, 2)) in lowerVECTOR_SHUFFLE_PCKOD() 2797 else if (fitsRegularPattern<int>(Begin, 1, Mid, Indices.size() + 1, 2)) in lowerVECTOR_SHUFFLE_PCKOD() 2802 if (fitsRegularPattern<int>(Mid, 1, End, 1, 2)) in lowerVECTOR_SHUFFLE_PCKOD() 2804 else if (fitsRegularPattern<int>(Mid, 1, End, Indices.size() + 1, 2)) in lowerVECTOR_SHUFFLE_PCKOD()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | Scalarizer.cpp | 640 Scatterer Mid = scatter(&BCI, V); in visitBitCastInst() local 642 Res[ResI++] = Mid[MidI]; in visitBitCastInst()
|
/external/lzma/CPP/Common/ |
D | MyString.h | 371 …AString Mid(unsigned startIndex, unsigned count) const { return AString(count, _chars + startIndex… in Mid() function 611 …UString Mid(unsigned startIndex, unsigned count) const { return UString(count, _chars + startIndex… in Mid() function
|
/external/skia/src/pathops/ |
D | SkPathOpsPoint.h | 232 static SkDPoint Mid(const SkDPoint& a, const SkDPoint& b) { in Mid() function
|
D | SkPathOpsQuad.cpp | 315 return SkDPoint::Mid(b0[1], b1[1]); in subDivide()
|
/external/lzma/CPP/Windows/ |
D | FileName.cpp | 669 res += curDir.Mid(fixedSizeStart, fixedSize); in GetSuperPathBase()
|