Home
last modified time | relevance | path

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

/third_party/bounds_checking_function/src/
Dinput.inl214 #define SECUREC_GET_CHAR(stream, outCh) do { \ argument
216 *(outCh) = (SecInt)(SECUREC_CHAR_MASK & \
221 *(outCh) = SECUREC_EOF; \
/third_party/python/Objects/
Dunicodeobject.c4813 Py_UCS4 outCh = (Py_UCS4)(base64buffer >> (base64bits-16)); in PyUnicode_DecodeUTF7Stateful() local
4816 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()