Lines Matching defs:prefix
563 SecChar prefix[2] = { 0 };
956 formatAttr.flags |= SECUREC_FLAG_ALTERNATE; /* "0x" is not default prefix in UNIX */
988 /* alternate form means '0x' prefix */
989 prefix[0] = SECUREC_CHAR('0');
990 prefix[1] = (SecChar)(digits[16]); /* The serial number of 'x' or 'X' is 16 */
994 prefix[1] = SECUREC_CHAR('x');
1001 prefixLen = 2; /* securec prefix len is 2 */
1004 prefixLen = 2; /* securec prefix len is 2 */
1136 /* Check if data is 0; if so, turn off hex prefix,if 'p',add 0x prefix,else not add prefix */
1253 /* prefix is a '-' */
1254 prefix[0] = SECUREC_CHAR('-');
1257 /* prefix is '+' */
1258 prefix[0] = SECUREC_CHAR('+');
1261 /* prefix is ' ' */
1262 prefix[0] = SECUREC_CHAR(' ');
1284 /* put out the padding, prefix, and text, in the correct order */
1296 /* write prefix */
1298 SecChar *pPrefix = prefix;
1300 /* max prefix len is 2, use loop copy */ /* char * cast to wchar * */
1303 SECUREC_WRITE_STRING(prefix, prefixLen, stream, &charsOut);