Searched refs:path_size (Results 1 – 9 of 9) sorted by relevance
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_bvgraph.h | 127 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { in findPath() argument 128 if (path_size == 0) in findPath() 137 if (uptr res = findPath(idx, targets, path + 1, path_size - 1)) in findPath() 145 uptr path_size) { in findShortestPath() argument 146 for (uptr p = 1; p <= path_size; p++) in findShortestPath()
|
| H A D | sanitizer_deadlock_detector.h | 311 uptr path_size) { in findPathToLock() argument 315 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size); in findPathToLock()
|
| /llvm-project-15.0.7/openmp/runtime/src/ |
| H A D | z_Windows_NT_util.cpp | 690 UINT path_size; in __kmp_runtime_initialize() local 758 path_size = GetSystemDirectory(path.str, path.size); in __kmp_runtime_initialize() 759 KMP_DEBUG_ASSERT(path_size > 0); in __kmp_runtime_initialize() 760 if (path_size >= path.size) { in __kmp_runtime_initialize() 762 __kmp_str_buf_reserve(&path, path_size); in __kmp_runtime_initialize() 763 path_size = GetSystemDirectory(path.str, path.size); in __kmp_runtime_initialize() 764 KMP_DEBUG_ASSERT(path_size > 0); in __kmp_runtime_initialize() 766 if (path_size > 0 && path_size < path.size) { in __kmp_runtime_initialize() 769 path.used = path_size; in __kmp_runtime_initialize() 786 if (path_size > 0 && path_size < path.size) { in __kmp_runtime_initialize() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 786 size_t path_size = path.size(); in DoLoadImage() local 789 if (path_size > buffer_size) in DoLoadImage() 790 buffer_size = path_size; in DoLoadImage()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Expr.h | 3543 bool path_empty() const { return path_size() == 0; } in path_empty() 3544 unsigned path_size() const { return CastExprBits.BasePathSize; } in path_size() function 3546 path_iterator path_end() { return path_buffer() + path_size(); } in path_end() 3548 path_const_iterator path_end() const { return path_buffer() + path_size(); } in path_end() 3640 return path_size(); in numTrailingObjects() 3758 return path_size(); in numTrailingObjects()
|
| H A D | ExprCXX.h | 452 return path_size(); in numTrailingObjects() 1751 return path_size(); in numTrailingObjects()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTWriterStmt.cpp | 958 Record.push_back(E->path_size()); in VisitCastExpr() 1020 if (E->path_size() == 0 && !E->hasStoredFPFeatures()) in VisitImplicitCastExpr()
|
| H A D | ASTReaderStmt.cpp | 1081 assert(NumBaseSpecs == E->path_size()); in VisitCastExpr()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 4759 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) { in HandleBaseToDerivedCast() 4767 unsigned NewEntriesSize = D.Entries.size() - E->path_size(); in HandleBaseToDerivedCast()
|