Determine the final constant to use for the specified encoding. */
| 45 | |
| 46 | /* Determine the final constant to use for the specified encoding. */ |
| 47 | uint64_t EncodingConstant(Encoding encoding) { |
| 48 | assert(encoding == Encoding::BLECH32 || encoding == Encoding::BLECH32M); |
| 49 | return encoding == Encoding::BLECH32 ? 1 : 0x455972a3350f7a1; |
| 50 | } |
| 51 | |
| 52 | /** Concatenate two byte arrays. */ |
| 53 | data Cat(data x, const data& y) |
no outgoing calls
no test coverage detected