Searched refs:outCh (Results 1 – 2 of 2) sorted by relevance
214 #define SECUREC_GET_CHAR(stream, outCh) do { \ argument216 *(outCh) = (SecInt)(SECUREC_CHAR_MASK & \221 *(outCh) = SECUREC_EOF; \
4813 Py_UCS4 outCh = (Py_UCS4)(base64buffer >> (base64bits-16)); in PyUnicode_DecodeUTF7Stateful() local4816 assert(outCh <= 0xffff); in PyUnicode_DecodeUTF7Stateful()4819 if (Py_UNICODE_IS_LOW_SURROGATE(outCh)) { in PyUnicode_DecodeUTF7Stateful()4820 Py_UCS4 ch2 = Py_UNICODE_JOIN_SURROGATES(surrogate, outCh); in PyUnicode_DecodeUTF7Stateful()4832 if (Py_UNICODE_IS_HIGH_SURROGATE(outCh)) { in PyUnicode_DecodeUTF7Stateful()4834 surrogate = outCh; in PyUnicode_DecodeUTF7Stateful()4837 if (_PyUnicodeWriter_WriteCharInline(&writer, outCh) < 0) in PyUnicode_DecodeUTF7Stateful()