| 2871 | |
| 2872 | |
| 2873 | Int128 CVT_hex_to_int128(const char* str, USHORT len) |
| 2874 | { |
| 2875 | Int128 val; |
| 2876 | RetValue<I128Traits> value(&val); |
| 2877 | hex_to_value(str, str + len, &value); |
| 2878 | |
| 2879 | return val; |
| 2880 | } |
| 2881 | |
| 2882 | |
| 2883 | USHORT CVT_get_string_ptr_common(const dsc* desc, USHORT* ttype, UCHAR** address, |
no test coverage detected