Searched refs:SSize (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/libcxx/test/std/iterators/iterator.container/ |
| H A D | ssize.pass.cpp | 80 using SSize = std::common_type_t<std::ptrdiff_t, std::make_signed_t<std::size_t>>; in main() typedef 82 ASSERT_SAME_TYPE(SSize, decltype(std::ssize(v))); in main() 84 ASSERT_SAME_TYPE(SSize, decltype(std::ssize(l))); in main() 86 ASSERT_SAME_TYPE(SSize, decltype(std::ssize(a))); in main() 88 ASSERT_SAME_TYPE(SSize, decltype(std::ssize(il))); in main() 97 ASSERT_SAME_TYPE(SSize, decltype(std::ssize(sv))); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/ |
| H A D | source.pass.cpp | 41 const std::size_t SSize = StrEnd(Expect) - Expect; in RunTestCaseImpl() local 42 assert(Size == SSize); in RunTestCaseImpl()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/ |
| H A D | source.pass.cpp | 48 const std::size_t SSize = StrEnd(Expect) - Expect; in RunTestCase() local 49 assert(Size == SSize); in RunTestCase()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | IntervalMap.h | 295 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToLeftSib() argument 297 Sib.copy(*this, 0, SSize, Count); in transferToLeftSib() 306 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToRightSib() argument 308 Sib.moveRight(0, Count, SSize); in transferToRightSib() 319 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { in adjustFromLeftSib() argument 322 unsigned Count = std::min(std::min(unsigned(Add), SSize), N - Size); in adjustFromLeftSib() 323 Sib.transferToRightSib(SSize, *this, Size, Count); in adjustFromLeftSib() 327 unsigned Count = std::min(std::min(unsigned(-Add), Size), N - SSize); in adjustFromLeftSib() 328 transferToLeftSib(Size, Sib, SSize, Count); in adjustFromLeftSib()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldMachO.cpp | 170 uint64_t SSize = SI->getSize(); in getSectionByAddress() local 171 if ((Addr >= SAddr) && (Addr < SAddr + SSize)) in getSectionByAddress()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | DependenceAnalysis.cpp | 3387 size_t SSize = Subscripts.size(); in tryDelinearizeFixedSize() local 3388 for (size_t I = 1; I < SSize; ++I) { in tryDelinearizeFixedSize()
|