Lines Matching refs:cd2
829 iconv_t cd1, cd2; in _php_iconv_substr() local
891 cd2 = (iconv_t)NULL; in _php_iconv_substr()
908 if (cd2 == (iconv_t)NULL) { in _php_iconv_substr()
909 cd2 = iconv_open(enc, GENERIC_SUPERSET_NAME); in _php_iconv_substr()
911 if (cd2 == (iconv_t)(-1)) { in _php_iconv_substr()
912 cd2 = (iconv_t)NULL; in _php_iconv_substr()
926 if (_php_iconv_appendl(pretval, buf, sizeof(buf), cd2) != PHP_ICONV_ERR_SUCCESS) { in _php_iconv_substr()
949 if (cd2 != (iconv_t)NULL) { in _php_iconv_substr()
950 _php_iconv_appendl(pretval, NULL, 0, cd2); in _php_iconv_substr()
959 if (cd2 != (iconv_t)NULL) { in _php_iconv_substr()
960 iconv_close(cd2); in _php_iconv_substr()