Home | History | Annotate | Download | only in i18n

Lines Matching refs:input

33     const uint8_t *input = textIn->fRawInput;
35 if (input[0] == 0xFE && input[1] == 0xFF) {
55 const uint8_t *input = textIn->fRawInput;
57 if (input[0] == 0xFF && input[1] == 0xFE && (input[2] != 0x00 || input[3] != 0x00)) {
72 const uint8_t *input = textIn->fRawInput;
79 if (getChar(input, 0) == 0x0000FEFFUL) {
84 int32_t ch = getChar(input, i);
122 int32_t CharsetRecog_UTF_32_BE::getChar(const uint8_t *input, int32_t index) const
124 return input[index + 0] << 24 | input[index + 1] << 16 |
125 input[index + 2] << 8 | input[index + 3];
138 int32_t CharsetRecog_UTF_32_LE::getChar(const uint8_t *input, int32_t index) const
140 return input[index + 3] << 24 | input[index + 2] << 16 |
141 input[index + 1] << 8 | input[index + 0];