Lines Matching refs:code
71 u16 code; in ReadNextCharUTF8() local
76 code = GetChar<u8>(); in ReadNextCharUTF8()
82 code = static_cast<u16>( in ReadNextCharUTF8()
94 code = static_cast<u16>( in ReadNextCharUTF8()
102 return code; in ReadNextCharUTF8()
111 u16 code; in ReadNextCharUTF16() local
113 code = GetChar<u16>(); in ReadNextCharUTF16()
116 return code; in ReadNextCharUTF16()
124 u16 code; in ReadNextCharCP1252() local
126 code = GetChar<u8>(); in ReadNextCharCP1252()
129 return code; in ReadNextCharCP1252()
137 u16 code; in ReadNextCharSJIS() local
142 code = static_cast<u16>((GetChar<u8>(0) << 8) | GetChar<u8>(1)); in ReadNextCharSJIS()
148 code = GetChar<u8>(); in ReadNextCharSJIS()
152 return code; in ReadNextCharSJIS()