Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libc/port/locale/
H A Dstrftime.c152 pt = _conv(t->tm_mday, in _fmt()
175 pt = _conv(t->tm_mday, in _fmt()
186 pt = _conv((t->tm_hour % 12) ? in _fmt()
191 pt = _conv(t->tm_yday + 1, in _fmt()
205 pt = _conv(t->tm_hour, in _fmt()
218 pt = _conv((t->tm_hour % 12) ? in _fmt()
227 pt = _conv(t->tm_mon + 1, in _fmt()
267 pt = _conv((t->tm_yday + DAYSPERWEEK - in _fmt()
279 pt = _conv((t->tm_wday == 0) ? in _fmt()
356 pt = _conv(w, in _fmt()
[all …]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Diconv.c105 if (cd->_conv != (iconv_p)-1) { in iconv_open()
116 if (cd->_conv == (iconv_p)-1) { in iconv_open()
137 if (cd->_conv == NULL) { in iconv_open()
142 cd->_conv->_icv_handle = NULL; in iconv_open()
143 cd->_conv->_icv_iconv = passthru_icv_iconv; in iconv_open()
144 cd->_conv->_icv_close = passthru_icv_close; in iconv_open()
415 (*(cd->_conv)->_icv_close)(cd->_conv->_icv_state); in iconv_close()
416 if (cd->_conv->_icv_handle != NULL) in iconv_close()
417 (void) dlclose(cd->_conv->_icv_handle); in iconv_close()
418 free(cd->_conv); in iconv_close()
[all …]
H A DiconvP.h45 iconv_p _conv; /* conversion by shared object */ member