Home
last modified time | relevance | path

Searched refs:Trimmed (Results 1 – 10 of 10) sorted by relevance

/external/llvm/lib/ExecutionEngine/
DSectionMemoryManager.cpp170 sys::MemoryBlock Trimmed((void *)((uintptr_t)M.base() + StartOverlap), TrimmedSize); in trimBlockToPageSize() local
172 assert(((uintptr_t)Trimmed.base() % PageSize) == 0); in trimBlockToPageSize()
173 assert((Trimmed.size() % PageSize) == 0); in trimBlockToPageSize()
174 assert(M.base() <= Trimmed.base() && Trimmed.size() <= M.size()); in trimBlockToPageSize()
176 return Trimmed; in trimBlockToPageSize()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
DSectionMemoryManager.cpp183 sys::MemoryBlock Trimmed((void *)((uintptr_t)M.base() + StartOverlap), in trimBlockToPageSize() local
186 assert(((uintptr_t)Trimmed.base() % PageSize) == 0); in trimBlockToPageSize()
187 assert((Trimmed.allocatedSize() % PageSize) == 0); in trimBlockToPageSize()
188 assert(M.base() <= Trimmed.base() && in trimBlockToPageSize()
189 Trimmed.allocatedSize() <= M.allocatedSize()); in trimBlockToPageSize()
191 return Trimmed; in trimBlockToPageSize()
/external/llvm-project/llvm/lib/ExecutionEngine/
DSectionMemoryManager.cpp192 sys::MemoryBlock Trimmed((void *)((uintptr_t)M.base() + StartOverlap), in trimBlockToPageSize() local
195 assert(((uintptr_t)Trimmed.base() % PageSize) == 0); in trimBlockToPageSize()
196 assert((Trimmed.allocatedSize() % PageSize) == 0); in trimBlockToPageSize()
197 assert(M.base() <= Trimmed.base() && in trimBlockToPageSize()
198 Trimmed.allocatedSize() <= M.allocatedSize()); in trimBlockToPageSize()
200 return Trimmed; in trimBlockToPageSize()
/external/llvm-project/clang/lib/Format/
DBreakableToken.cpp637 size_t Trimmed = Content[LineIndex].find_first_not_of(Blanks); in getReflowSplit() local
640 if (PreviousContentIndent && Trimmed != StringRef::npos && in getReflowSplit()
641 Trimmed != PreviousContentIndent) in getReflowSplit()
645 return Split(0, Trimmed != StringRef::npos ? Trimmed : 0); in getReflowSplit()
881 size_t Trimmed = Content[LineIndex].find_first_not_of(Blanks); in getReflowSplit() local
887 return Split(0, Trimmed != StringRef::npos ? Trimmed : 0); in getReflowSplit()
DFormat.cpp2270 StringRef Trimmed = Line.trim(); in sortCppIncludes() local
2271 if (Trimmed == "// clang-format off" || Trimmed == "/* clang-format off */") in sortCppIncludes()
2273 else if (Trimmed == "// clang-format on" || in sortCppIncludes()
2274 Trimmed == "/* clang-format on */") in sortCppIncludes()
2278 Trimmed.empty() && in sortCppIncludes()
2433 StringRef Trimmed = Line.trim(); in sortJavaImports() local
2434 if (Trimmed == "// clang-format off") in sortJavaImports()
2436 else if (Trimmed == "// clang-format on") in sortJavaImports()
2454 } else if (Trimmed.size() > 0 && !ImportsInBlock.empty()) { in sortJavaImports()
/external/clang/lib/Basic/
DVirtualFileSystem.cpp1248 StringRef Trimmed(Name); in parseEntry() local
1249 size_t RootPathLen = sys::path::root_path(Trimmed).size(); in parseEntry()
1250 while (Trimmed.size() > RootPathLen && in parseEntry()
1251 sys::path::is_separator(Trimmed.back())) in parseEntry()
1252 Trimmed = Trimmed.slice(0, Trimmed.size()-1); in parseEntry()
1254 StringRef LastComponent = sys::path::filename(Trimmed); in parseEntry()
1270 StringRef Parent = sys::path::parent_path(Trimmed); in parseEntry()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DVirtualFileSystem.cpp1461 StringRef Trimmed(Name); in parseEntry() local
1462 size_t RootPathLen = sys::path::root_path(Trimmed, path_style).size(); in parseEntry()
1463 while (Trimmed.size() > RootPathLen && in parseEntry()
1464 sys::path::is_separator(Trimmed.back(), path_style)) in parseEntry()
1465 Trimmed = Trimmed.slice(0, Trimmed.size() - 1); in parseEntry()
1468 StringRef LastComponent = sys::path::filename(Trimmed, path_style); in parseEntry()
1486 StringRef Parent = sys::path::parent_path(Trimmed, path_style); in parseEntry()
/external/llvm-project/clang/lib/AST/
DRawCommentList.cpp419 llvm::StringRef Trimmed = TokText.drop_front(SkipLen); in getFormattedText() local
420 Result += Trimmed; in getFormattedText()
/external/llvm-project/llvm/lib/Support/
DVirtualFileSystem.cpp1501 StringRef Trimmed(Name); in parseEntry() local
1502 size_t RootPathLen = sys::path::root_path(Trimmed, path_style).size(); in parseEntry()
1503 while (Trimmed.size() > RootPathLen && in parseEntry()
1504 sys::path::is_separator(Trimmed.back(), path_style)) in parseEntry()
1505 Trimmed = Trimmed.slice(0, Trimmed.size() - 1); in parseEntry()
1508 StringRef LastComponent = sys::path::filename(Trimmed, path_style); in parseEntry()
1526 StringRef Parent = sys::path::parent_path(Trimmed, path_style); in parseEntry()
/external/clang/lib/Format/
DFormat.cpp1351 StringRef Trimmed = Line.trim(); in sortCppIncludes() local
1352 if (Trimmed == "// clang-format off") in sortCppIncludes()
1354 else if (Trimmed == "// clang-format on") in sortCppIncludes()