Home
last modified time | relevance | path

Searched refs:CommonLen (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/LineEditor/
DLineEditor.cpp44 size_t CommonLen = 0; in getCommonPrefix() local
45 for (; CommonLen != Len; ++CommonLen) { in getCommonPrefix()
46 if (CommonPrefix[CommonLen] != I->TypedText[CommonLen]) in getCommonPrefix()
49 CommonPrefix.resize(CommonLen); in getCommonPrefix()
/external/llvm/lib/LineEditor/
DLineEditor.cpp45 size_t CommonLen = 0; in getCommonPrefix() local
46 for (; CommonLen != Len; ++CommonLen) { in getCommonPrefix()
47 if (CommonPrefix[CommonLen] != I->TypedText[CommonLen]) in getCommonPrefix()
50 CommonPrefix.resize(CommonLen); in getCommonPrefix()
/external/llvm-project/llvm/lib/LineEditor/
DLineEditor.cpp44 size_t CommonLen = 0; in getCommonPrefix() local
45 for (; CommonLen != Len; ++CommonLen) { in getCommonPrefix()
46 if (CommonPrefix[CommonLen] != I->TypedText[CommonLen]) in getCommonPrefix()
49 CommonPrefix.resize(CommonLen); in getCommonPrefix()
/external/swiftshader/third_party/subzero/src/
DIceELFSection.cpp209 size_t CommonLen = std::min(LenA, LenB); in operator ()() local
211 for (size_t i = 0; i < CommonLen; ++i) { in operator ()()