Searched refs:convbuf (Results 1 - 17 of 17) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A Dregerror.c90 char convbuf[50]; local
93 s = regatoi(preg, convbuf, sizeof convbuf);
101 assert(strlen(r->name) < sizeof(convbuf));
102 (void) llvm_strlcpy(convbuf, r->name, sizeof convbuf);
104 (void)snprintf(convbuf, sizeof convbuf,
106 s = convbuf;
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A Dregerror.c68 char convbuf[sizeof(unk)+50]; /* 50 = plenty for int */
79 sprintf(convbuf, "%d", r->code); /* -1 for unknown */
80 msg = convbuf;
92 sprintf(convbuf, "REG_%u", (unsigned)icode);
93 msg = convbuf;
105 sprintf(convbuf, unk, code);
106 msg = convbuf;
67 char convbuf[sizeof(unk)+50]; /* 50 = plenty for int */ local
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A Dregerror.c61 char convbuf[sizeof(unk)+50]; /* 50 = plenty for int */ local
70 sprintf(convbuf, "%d", r->code); /* -1 for unknown */
71 msg = convbuf;
81 sprintf(convbuf, "REG_%u", (unsigned)icode);
82 msg = convbuf;
92 sprintf(convbuf, unk, code);
93 msg = convbuf;
/macosx-10.10.1/Libc-1044.1.2/regex/FreeBSD/
H A Dregerror.c124 char convbuf[50]; local
127 s = regatoi(preg, convbuf);
135 (void) strcpy(convbuf, r->name);
137 sprintf(convbuf, "REG_0x%x", target);
138 assert(strlen(convbuf) < sizeof(convbuf));
139 s = convbuf;
/macosx-10.10.1/cups-408/cups/vcnet/regex/
H A Dregerror.c74 char convbuf[50]; local
77 s = regatoi(preg, convbuf);
85 (void) strcpy(convbuf, r->name);
87 sprintf(convbuf, "REG_0x%x", target);
88 assert(strlen(convbuf) < sizeof(convbuf));
89 s = convbuf;
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dxprintf_str.c60 char *convbuf; local
91 if ((convbuf = MALLOC(nbytes + 1)) == NULL)
97 if ((nbytes = wcsrtombs_l(convbuf, (const wchar_t **)&p,
99 free(convbuf);
102 convbuf[nbytes] = '\0';
103 return (convbuf);
126 char *convbuf; local
133 convbuf = __wcsconv(wcp, pi->prec, pi->loc);
134 if (convbuf == NULL)
136 l = __printf_out(io, pi, convbuf, strle
[all...]
H A Dvfwprintf.c286 wchar_t *convbuf, *wcp; local
327 convbuf = malloc((insize + 1) * sizeof(*convbuf));
328 if (convbuf == NULL)
330 wcp = convbuf;
342 free(convbuf);
347 return (convbuf);
452 wchar_t *convbuf; /* multibyte to wide conversion result */ local
546 convbuf = NULL;
774 if (convbuf !
[all...]
H A Dvfprintf.c227 char *convbuf; local
258 if ((convbuf = malloc(nbytes + 1)) == NULL)
264 if ((nbytes = wcsrtombs_l(convbuf, (const wchar_t **)&p,
266 free(convbuf);
269 convbuf[nbytes] = '\0';
270 return (convbuf);
378 char *convbuf; /* wide to multibyte conversion result */ local
474 convbuf = NULL;
893 if (convbuf != NULL)
894 free(convbuf);
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dbase64.c198 char *convbuf = NULL; local
217 error = Curl_convert_clone(data, indata, insize, &convbuf);
223 if(convbuf)
224 indata = (char *)convbuf;
270 if(convbuf)
271 free(convbuf);
H A Dnon-ascii.c59 char *convbuf; local
62 convbuf = malloc(insize);
63 if(!convbuf)
66 memcpy(convbuf, indata, insize);
67 result = Curl_convert_to_network(data, convbuf, insize);
69 free(convbuf);
73 *outbuf = convbuf; /* return the converted buffer */
/macosx-10.10.1/rsync-45/rsync/
H A Dlog.c304 char convbuf[1024]; local
305 char *in_buf = buf, *out_buf = convbuf;
306 size_t in_cnt = len, out_cnt = sizeof convbuf - 1;
311 if (out_buf != convbuf) {
312 filtered_fwrite(f, convbuf, out_buf - convbuf, 0);
313 out_buf = convbuf;
314 out_cnt = sizeof convbuf - 1;
321 if (out_buf != convbuf)
322 filtered_fwrite(f, convbuf, out_bu
[all...]
/macosx-10.10.1/smb-759.0/kernel/netsmb/
H A Dsmb_subr.c682 char convbuf[512]; local
693 if (utf16InLen > sizeof(convbuf)) {
700 utf16InLen = sizeof(convbuf);
701 utf16Str = convbuf;
720 if (utf16Str != convbuf) {
/macosx-10.10.1/vim-55/src/
H A Dgui_beval.c903 char_u *convbuf = NULL; local
915 convbuf = string_convert(&output_conv, text, NULL);
916 if (convbuf != NULL)
917 text = convbuf;
1028 vim_free(convbuf);
H A Dgui_w32.c1917 char_u *convbuf = NULL; local
1927 convbuf = utf16_to_enc(buf, lenp);
1930 return convbuf;
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dencoding.c2218 unsigned char convbuf[32000]; local
2228 ret = handler->output(&convbuf[0], &written,
2239 ret = xmlIconvWrapper(handler->iconv_out, &convbuf[0],
/macosx-10.10.1/libxml2-26/libxml2/
H A Dencoding.c2941 unsigned char convbuf[32000]; local
2951 ret = handler->output(&convbuf[0], &written,
2962 ret = xmlIconvWrapper(handler->iconv_out, &convbuf[0],
2979 ret = xmlUconvWrapper(handler->uconv_out, 0, &convbuf[0],
/macosx-10.10.1/smb-759.0/kernel/smbfs/
H A Dsmbfs_vnops.c5971 uint16_t *convbuf; local
5977 SMB_MALLOC(convbuf, uint16_t *, nmlen * 2, M_SMBNODENAME, M_WAITOK);
5978 if (! convbuf)
5984 ntwrk_len = smb_strtouni(convbuf, name, nmlen,
5986 SMB_FREE(convbuf, M_SMBNODENAME);

Completed in 325 milliseconds