| 97 | } |
| 98 | |
| 99 | static inline struct region region_create(size_t offset, size_t size) |
| 100 | { |
| 101 | assert(offset + size - 1 >= offset); |
| 102 | return (struct region){ .offset = offset, .size = size }; |
| 103 | } |
| 104 | |
| 105 | static inline enum cb_err region_create_untrusted( |
| 106 | struct region *r, unsigned long long offset, unsigned long long size) |
no outgoing calls
no test coverage detected