Lines Matching refs:code
73 u16 code; in ReadNextCharUTF8() local
78 code = GetChar<u8>(); in ReadNextCharUTF8()
84 code = static_cast<u16>( in ReadNextCharUTF8()
96 code = static_cast<u16>( in ReadNextCharUTF8()
104 return code; in ReadNextCharUTF8()
113 u16 code; in ReadNextCharUTF16() local
115 code = GetChar<u16>(); in ReadNextCharUTF16()
118 return code; in ReadNextCharUTF16()
126 u16 code; in ReadNextCharCP1252() local
128 code = GetChar<u8>(); in ReadNextCharCP1252()
131 return code; in ReadNextCharCP1252()
139 u16 code; in ReadNextCharSJIS() local
144 code = static_cast<u16>((GetChar<u8>(0) << 8) | GetChar<u8>(1)); in ReadNextCharSJIS()
150 code = GetChar<u8>(); in ReadNextCharSJIS()
154 return code; in ReadNextCharSJIS()