* @brief get the ceil of the division * * @param a * @param b * @return uint32_t */
| 121 | * @return uint32_t |
| 122 | */ |
| 123 | inline uint32_t DivCeil(uint32_t a, uint32_t b) { |
| 124 | uint32_t tmp = a / b; |
| 125 | if (a % b == 0) { |
| 126 | return tmp; |
| 127 | } else { |
| 128 | return (tmp + 1); |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * @brief print the binary buffer |
nothing calls this directly
no outgoing calls
no test coverage detected