HomeSort by relevance Sort by last modified time
    Searched refs:convbuf (Results 1 - 13 of 13) sorted by null

  /external/llvm/lib/Support/
regerror.c 90 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;
  /external/swiftshader/third_party/LLVM/lib/Support/
regerror.c 90 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;
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regerror.c 90 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;
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regerror.c 172 char convbuf[50]; local
178 s = regatoi(preg, convbuf, sizeof convbuf);
186 (void)strlcpy(convbuf, r->name, sizeof convbuf);
188 (void)snprintf(convbuf, sizeof convbuf,
190 s = convbuf;
  /external/curl/lib/
base64.c 183 char *convbuf = NULL; local
207 result = Curl_convert_clone(data, indata, insize, &convbuf);
213 if(convbuf)
214 indata = (char *)convbuf;
266 free(convbuf);
non-ascii.c 59 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 */
mime.c 823 char *convbuf = buffer; local
863 if(part->easy && convbuf < buffer) {
864 CURLcode result = Curl_convert_to_network(part->easy, convbuf,
865 buffer - convbuf);
868 convbuf = buffer;
907 if(part->easy && convbuf < buffer &&
909 CURLcode result = Curl_convert_to_network(part->easy, convbuf,
910 buffer - convbuf);
928 char *convbuf = buffer; local
940 convbuf = buffer
    [all...]
  /bionic/libc/stdio/
vfwprintf.cpp 99 CHAR_TYPE* convbuf; /* buffer for wide/multibyte conversion */ local
145 convbuf = NULL;
348 free(convbuf);
349 cp = convbuf = helpers::mbsconv(dtoaresult, -1);
388 free(convbuf);
389 cp = convbuf = helpers::mbsconv(dtoaresult, -1);
486 free(convbuf);
487 convbuf = helpers::mbsconv(mbsarg, prec);
488 if (convbuf == NULL) {
492 cp = convbuf;
    [all...]
printf_common.h 707 char* convbuf; local
734 if ((convbuf = static_cast<char*>(malloc(nbytes + 1))) == NULL) return NULL;
739 if ((nbytes = wcsrtombs(convbuf, (const wchar_t**)&p, nbytes, &mbs)) == (size_t)-1) {
740 free(convbuf);
743 convbuf[nbytes] = '\0';
744 return convbuf;
806 wchar_t* convbuf = static_cast<wchar_t*>(calloc(insize + 1, sizeof(*convbuf))); local
807 if (convbuf == NULL) return NULL;
808 wchar_t* wcp = convbuf;
    [all...]
vfprintf.cpp 99 CHAR_TYPE* convbuf; /* buffer for wide/multibyte conversion */ local
156 convbuf = NULL;
499 free(convbuf);
500 convbuf = NULL;
504 convbuf = helpers::wcsconv(wcp, prec);
505 if (convbuf == NULL) {
509 cp = convbuf;
695 free(convbuf);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfwprintf.c 425 wchar_t *convbuf, *wcp; local
463 convbuf = malloc((insize + 1) * sizeof(*convbuf));
464 if (convbuf == NULL)
466 wcp = convbuf;
479 free(convbuf);
484 return (convbuf);
500 char *convbuf; local
531 if ((convbuf = malloc(nbytes + 1)) == NULL)
537 if ((nbytes = wcsrtombs(convbuf, (const wchar_t **)&p,
685 CHAR_T *convbuf; \/* multibyte to wide conversion result *\/ local
    [all...]
  /external/curl/tests/server/
getpart.c 86 char *convbuf; local
89 convbuf = malloc(insize);
90 if(!convbuf)
93 memcpy(convbuf, indata, insize);
94 *outbuf = convbuf;
  /external/libxml2/
encoding.c 2820 unsigned char convbuf[32000]; local
    [all...]

Completed in 207 milliseconds