Searched refs:hex_to_decimal (Results 1 – 1 of 1) sorted by relevance
1083 fn hex_to_decimal(mut count: i64, num: i64) -> Result<i64, HttpError> { in hex_to_decimal() method1107 self.hex_count = Self::hex_to_decimal(self.hex_count, 0_i64)?; in decode_size()1115 self.hex_count = Self::hex_to_decimal(self.hex_count, 0_i64)?; in decode_size()1119 self.hex_count = Self::hex_to_decimal(self.hex_count, b as i64 - '0' as i64)?; in decode_size()1125 Self::hex_to_decimal(self.hex_count, b as i64 - 'a' as i64 + 10i64)?; in decode_size()1131 Self::hex_to_decimal(self.hex_count, b as i64 - 'A' as i64 + 10i64)?; in decode_size()