Lines Matching refs:SecChar
132 typedef char SecChar;
247 *((SecChar *)(void *)(_stream->cur)) = *(src); \
248 _stream->cur += sizeof(SecChar); \
251 _stream->count -= txtLen * (int)(sizeof(SecChar)); \
260 *((SecChar *)(void *)(_stream->cur)) = *(src); \
261 _stream->cur += sizeof(SecChar); \
265 (void)memcpy_s(_stream->cur, ((size_t)(unsigned int)txtLen * (sizeof(SecChar))), src, \
266 ((size_t)(unsigned int)txtLen * (sizeof(SecChar)))); \
267 _stream->cur += (size_t)(unsigned int)txtLen * (sizeof(SecChar)); \
269 _stream->count -= txtLen * (int)(sizeof(SecChar)); \
275 *((SecChar *)(void *)(_stream->cur)) = (SecChar)_ch; \
276 _stream->cur += sizeof(SecChar); \
277 _stream->count -= (int)(sizeof(SecChar)); \
285 *((SecChar *)(void *)(_stream->cur)) = (SecChar)padChar; \
286 _stream->cur += sizeof(SecChar); \
288 _stream->count -= padLen * (int)(sizeof(SecChar)); \
294 #define SECUREC_IS_REST_BUF_ENOUGH(needLen) ((int)(stream->count - (int)needLen * (int)(sizeof(SecChar))) >= 0)
309 static void SecDecodeFlags(SecChar ch, SecFormatAttr *attr)
333 static int SecDecodeSize(SecChar ch, SecFormatAttr *attr, const SecChar **format)
541 const SecChar *format = cformat;
563 SecChar prefix[2] = { 0 };
564 SecChar ch; /* currently read character */
789 ch = (SecChar)(ch + ((SecChar)(SECUREC_CHAR('a')) - (SECUREC_CHAR('A'))));
838 const SecChar *pFltFmt = format - 2; /* point to the position before 'f' or 'g' */
990 prefix[1] = (SecChar)(digits[16]); /* The serial number of 'x' or 'X' is 16 */
1298 SecChar *pPrefix = prefix;