| 295 | namespace { |
| 296 | |
| 297 | std::size_t |
| 298 | parser_aligned_size (std::size_t N) |
| 299 | { |
| 300 | const unsigned int align_size = 16; |
| 301 | std::size_t x = N + (align_size-1); |
| 302 | x -= x & (align_size-1); |
| 303 | return x; |
| 304 | } |
| 305 | |
| 306 | void* |
| 307 | parser_allocate (struct amrex_parser* my_parser, std::size_t N) |
no outgoing calls
no test coverage detected