Searched refs:SSize (Results 1 – 5 of 5) sorted by relevance
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.construct/ |
D | source.pass.cpp | 40 const std::size_t SSize = StrEnd(Expect) - Expect; in RunTestCase() local 41 assert(Size == SSize); in RunTestCase()
|
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.assign/ |
D | source.pass.cpp | 45 const std::size_t SSize = StrEnd(Expect) - Expect; in RunTestCase() local 46 assert(Size == SSize); in RunTestCase()
|
/external/llvm/include/llvm/ADT/ |
D | IntervalMap.h | 286 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToLeftSib() argument 288 Sib.copy(*this, 0, SSize, Count); in transferToLeftSib() 297 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToRightSib() argument 299 Sib.moveRight(0, Count, SSize); in transferToRightSib() 310 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { in adjustFromLeftSib() argument 313 unsigned Count = std::min(std::min(unsigned(Add), SSize), N - Size); in adjustFromLeftSib() 314 Sib.transferToRightSib(SSize, *this, Size, Count); in adjustFromLeftSib() 318 unsigned Count = std::min(std::min(unsigned(-Add), Size), N - SSize); in adjustFromLeftSib() 319 transferToLeftSib(Size, Sib, SSize, Count); in adjustFromLeftSib()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | IntervalMap.h | 265 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToLeftSib() argument 267 Sib.copy(*this, 0, SSize, Count); in transferToLeftSib() 276 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToRightSib() argument 278 Sib.moveRight(0, Count, SSize); in transferToRightSib() 289 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { in adjustFromLeftSib() argument 292 unsigned Count = std::min(std::min(unsigned(Add), SSize), N - Size); in adjustFromLeftSib() 293 Sib.transferToRightSib(SSize, *this, Size, Count); in adjustFromLeftSib() 297 unsigned Count = std::min(std::min(unsigned(-Add), Size), N - SSize); in adjustFromLeftSib() 298 transferToLeftSib(Size, Sib, SSize, Count); in adjustFromLeftSib()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 168 uint64_t SSize = SI->getSize(); in getSectionByAddress() local 169 if ((Addr >= SAddr) && (Addr < SAddr + SSize)) in getSectionByAddress()
|