| 1048 | } |
| 1049 | |
| 1050 | bool buffer::list::is_aligned_size_and_memory( |
| 1051 | const unsigned align_size, |
| 1052 | const unsigned align_memory) const |
| 1053 | { |
| 1054 | for (const auto& node : _buffers) { |
| 1055 | if (!node.is_aligned(align_memory) || !node.is_n_align_sized(align_size)) { |
| 1056 | return false; |
| 1057 | } |
| 1058 | } |
| 1059 | return true; |
| 1060 | } |
| 1061 | |
| 1062 | bool buffer::list::is_zero() const { |
| 1063 | for (const auto& node : _buffers) { |
nothing calls this directly
no test coverage detected