is allocation type memory? */
| 129 | |
| 130 | /** is allocation type memory? */ |
| 131 | static bool ismemory(const int id) { |
| 132 | return ((id > 0) && ((id & 1) == 0)); |
| 133 | } |
| 134 | static bool ismemory(const AllocFunc* const func) { |
| 135 | return func && (func->groupId > 0) && ((func->groupId & 1) == 0); |
| 136 | } |
no outgoing calls