Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DBCD.h32 uint8_t DecodedByteValue = ((Ptr[I] >> 4) & 0x0f) * 10 + (Ptr[I] & 0x0f); variable
33 Value = (Value * 100) + DecodedByteValue;
36 uint8_t DecodedByteValue = (Ptr[ByteLen - 1] >> 4) & 0x0f; variable
38 Value = (Value * 10) + DecodedByteValue;