Searched defs:cvt (Results 1 - 5 of 5) sorted by relevance
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | ecvt.c | 53 static char *cvt(double, int, int *, int *, int); 58 return (cvt(value, ndigit, decpt, sign, 0)); 64 return (cvt(value, ndigit, decpt, sign, 1)); 68 cvt(double value, int ndigit, int *decpt, int *sign, int f_flag) function
|
/illumos-gate/usr/src/lib/libast/common/comp/ |
H A D | catopen.c | 55 iconv_t cvt; member in struct:__anon2605 113 if ((cc->cvt = iconv_open("", "utf")) == (iconv_t)(-1) || !(cc->tmp = sfstropen())) 120 cc->cvt = (iconv_t)(-1); 148 if (((Cc_t*)cat)->cvt != (iconv_t)(-1)) 152 iconv_write(((Cc_t*)cat)->cvt, ((Cc_t*)cat)->tmp, &s, &n, NiL); 170 if (((Cc_t*)cat)->cvt != (iconv_t)(-1)) 171 iconv_close(((Cc_t*)cat)->cvt);
|
H A D | iconv.c | 81 iconv_t cvt; member in struct:Conv_s 1092 if (cc->cvt != (iconv_t)(-1)) 1093 iconv(cc->cvt, NiL, NiL, NiL, NiL); 1107 cc->cvt = (iconv_t)(-1); 1116 else if ((cc->cvt = iconv_open(to, fr)) != (iconv_t)(-1)) 1120 else if ((cc->cvt = _win_iconv_open(cc, to, fr)) != (_ast_iconv_t)(-1)) 1215 if (oc->cvt != (iconv_t)(-1)) 1216 r = iconv_close(oc->cvt); 1272 if ((*cc->from.fun)(cc->cvt, &tfb, &tfn, &b, &i) == (size_t)(-1)) 1276 n = (*cc->to.fun)(cc->cvt, [all...] |
/illumos-gate/usr/src/lib/print/libpapi-lpd/common/ |
H A D | lpd-job.c | 50 static struct { char *mime; char rfc; } cvt[] = { local 69 for (i = 0; cvt[i].mime != NULL; i++) 70 if (strcasecmp(cvt[i].mime, mime) == 0) { 71 result = cvt[i].rfc;
|
/illumos-gate/usr/src/lib/libast/common/tm/ |
H A D | tmlocale.c | 546 iconv_t cvt; local 567 if (u[0] == 0xef && u[1] == 0xbb && u[2] == 0xbf && (cvt = iconv_open("", "utf")) != (iconv_t)(-1)) 572 n = iconv_move(cvt, sp, tp, SF_UNBOUND, NiL); 574 iconv_close(cvt);
|
Completed in 181 milliseconds