| 1028 | } |
| 1029 | |
| 1030 | bool buffer::list::is_aligned(const unsigned align) const |
| 1031 | { |
| 1032 | for (const auto& node : _buffers) { |
| 1033 | if (!node.is_aligned(align)) { |
| 1034 | return false; |
| 1035 | } |
| 1036 | } |
| 1037 | return true; |
| 1038 | } |
| 1039 | |
| 1040 | bool buffer::list::is_n_align_sized(const unsigned align) const |
| 1041 | { |
no outgoing calls