Home
last modified time | relevance | path

Searched refs:hex_to_decimal (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/body/
H A Dchunk.rs1083 fn hex_to_decimal(mut count: i64, num: i64) -> Result<i64, HttpError> { in hex_to_decimal() method
1107 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()