Home
last modified time | relevance | path

Searched refs:convtype (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/sys/libkern/
H A Diconv_ucs.c82 int convtype; member
102 dp->convtype = 0; in iconv_ucs_open()
105 dp->convtype |= KICONV_UCS_COMBINE; in iconv_ucs_open()
113 dp->convtype |= KICONV_UCS_UCS4; in iconv_ucs_open()
115 dp->convtype &= ~KICONV_UCS_UCS4; in iconv_ucs_open()
118 if (dp->convtype & KICONV_UCS_COMBINE) { in iconv_ucs_open()
219 if (dp->convtype & KICONV_UCS_UCS4) { in iconv_ucs_conv()
259 if (dp->convtype & KICONV_UCS_UCS4 && in iconv_ucs_conv()
296 if (dp->convtype & KICONV_UCS_TO_UTF8) { in iconv_ucs_conv()
340 if (dp->convtype & KICONV_UCS_TO_LE) { in iconv_ucs_conv()
[all …]
/freebsd-12.1/contrib/gcc/cp/
H A Dcvt.c442 convert_to_reference (tree reftype, tree expr, int convtype, in convert_to_reference() argument
469 && (convtype & CONV_IMPLICIT) && IS_AGGR_TYPE (intype) in convert_to_reference()
487 if (((convtype & CONV_STATIC) && can_convert (intype, type)) in convert_to_reference()
488 || ((convtype & CONV_IMPLICIT) && can_convert_intype_to_type)) in convert_to_reference()
498 if (! (convtype & CONV_CONST) in convert_to_reference()
506 else if ((convtype & CONV_REINTERPRET) && lvalue_p (expr)) in convert_to_reference()
603 ocp_convert (tree type, tree expr, int convtype, int flags) in ocp_convert() argument
624 if (IS_AGGR_TYPE (type) && (convtype & CONV_FORCE_TEMP) in ocp_convert()
663 if (code == VOID_TYPE && (convtype & CONV_STATIC)) in ocp_convert()
677 && ! (convtype & CONV_STATIC)) in ocp_convert()
[all …]
H A DChangeLog-19942455 * cvt.c (convert_to_reference): Modify to use convtype parameter.