HomeSort by relevance Sort by last modified time
    Searched refs:TargetStart (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Support/
ConvertUTFWrapper.cpp 35 UTF16 *targetStart = reinterpret_cast<UTF16*>(ResultPtr);
39 &targetStart, targetStart + 2*Source.size(), flags);
41 ResultPtr = reinterpret_cast<char*>(targetStart);
48 UTF32 *targetStart = reinterpret_cast<UTF32*>(ResultPtr);
52 &targetStart, targetStart + 4*Source.size(), flags);
54 ResultPtr = reinterpret_cast<char*>(targetStart);
66 UTF8 *TargetStart = reinterpret_cast<UTF8 *>(ResultPtr);
67 UTF8 *TargetEnd = TargetStart + 4
    [all...]
  /external/llvm/unittests/Support/
ConvertUTFTest.cpp 108 UTF32 *TargetStart = Decoded.data();
111 ConvertUTF8toUTF32(&SourceNext, SourceStart + S.size(), &TargetStart,
114 Decoded.resize(TargetStart - Decoded.data());
125 UTF32 *TargetStart = Decoded.data();
128 &SourceNext, SourceStart + S.size(), &TargetStart,
131 Decoded.resize(TargetStart - Decoded.data());
    [all...]

Completed in 43 milliseconds