HomeSort by relevance Sort by last modified time
    Searched refs:outbuf (Results 1 - 25 of 221) sorted by null

1 2 3 4 5 6 7 8 9

  /external/curl/tests/server/
getpart.h 31 int getpart(char **outbuf, size_t *outlen,
fake_ntlm.c 52 char *outbuf; local
74 outbuf = malloc(outsize);
75 if(!outbuf)
79 snprintf(&outbuf[0], outsize, "%s", NOTHING_STR);
80 return outbuf;
87 newbuf = realloc(outbuf, newsize);
89 free(outbuf);
92 outbuf = newbuf;
97 outbuf[o] = inbuf[i];
101 snprintf(&outbuf[o], outsize - o, HEX_FMT_STR, inbuf[i])
    [all...]
getpart.c 249 int getpart(char **outbuf, size_t *outlen,
280 *outbuf = malloc(outalloc);
281 if(!*outbuf)
283 *(*outbuf) = '\0';
295 error = appenddata(outbuf, outlen, &outalloc, buffer, base64);
329 error = decodedata(outbuf, outlen);
346 error = decodedata(outbuf, outlen);
430 error = appenddata(outbuf, outlen, &outalloc, buffer, base64);
443 free(*outbuf);
444 *outbuf = NULL
    [all...]
  /external/openssh/
rsa.c 77 u_char *inbuf = NULL, *outbuf = NULL; local
84 if ((outbuf = malloc(olen)) == NULL) {
96 if ((len = RSA_public_encrypt(ilen, inbuf, outbuf, key,
102 if (BN_bin2bn(outbuf, len, out) == NULL) {
109 if (outbuf != NULL) {
110 explicit_bzero(outbuf, olen);
111 free(outbuf);
123 u_char *inbuf = NULL, *outbuf = NULL; local
127 if ((outbuf = malloc(olen)) == NULL) {
139 if ((len = RSA_private_decrypt(ilen, inbuf, outbuf, key
    [all...]
  /external/libxml2/os400/
libxmlmain.c 41 char * outbuf; local
61 outbuf = dummybuf;
64 &inbuf, &inbytesleft, &outbuf, &outbytesleft);
65 bytecount += outbuf - dummybuf;
68 iconv(cd, NULL, &inbytesleft, &outbuf, &outbytesleft);
75 outbuf = (char *) (argv + argc + 1);
79 argv[i] = outbuf;
82 iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
83 iconv(cd, NULL, &inbytesleft, &outbuf, &outbytesleft);
  /external/mesa3d/src/gallium/auxiliary/util/
u_upload_mgr.h 79 * \param outbuf Pointer to where the upload buffer will be returned.
87 struct pipe_resource **outbuf,
103 struct pipe_resource **outbuf);
119 struct pipe_resource **outbuf);
u_suballoc.h 47 struct pipe_resource **outbuf);
  /external/compiler-rt/test/msan/
iconv.cc 24 char *outbuf = outbuf_; local
40 res = iconv(cd, 0, 0, &outbuf, &outbytesleft);
43 res = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
_codecs_tw.c 22 **outbuf = (unsigned char)c;
55 TRYMAP_DEC(big5, **outbuf, c, IN2) {
110 TRYMAP_DEC(cp950ext, **outbuf, c, IN2);
111 else TRYMAP_DEC(big5, **outbuf, c, IN2);
cjkcodecs.h 76 unsigned char **outbuf, Py_ssize_t outleft, int flags)
80 unsigned char **outbuf, Py_ssize_t outleft)
89 Py_UNICODE **outbuf, Py_ssize_t outleft)
107 (*outbuf) += (o); \
124 #define OUT1(c) ((*outbuf)[0]) = (c);
125 #define OUT2(c) ((*outbuf)[1]) = (c);
126 #define OUT3(c) ((*outbuf)[2]) = (c);
127 #define OUT4(c) ((*outbuf)[3]) = (c);
131 (*outbuf)[0] = (c1);
134 (*outbuf)[0] = (c1); \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
_codecs_tw.c 22 **outbuf = (unsigned char)c;
55 TRYMAP_DEC(big5, **outbuf, c, IN2) {
110 TRYMAP_DEC(cp950ext, **outbuf, c, IN2);
111 else TRYMAP_DEC(big5, **outbuf, c, IN2);
cjkcodecs.h 76 unsigned char **outbuf, Py_ssize_t outleft, int flags)
80 unsigned char **outbuf, Py_ssize_t outleft)
89 Py_UNICODE **outbuf, Py_ssize_t outleft)
107 (*outbuf) += (o); \
124 #define OUT1(c) ((*outbuf)[0]) = (c);
125 #define OUT2(c) ((*outbuf)[1]) = (c);
126 #define OUT3(c) ((*outbuf)[2]) = (c);
127 #define OUT4(c) ((*outbuf)[3]) = (c);
131 (*outbuf)[0] = (c1);
134 (*outbuf)[0] = (c1); \
    [all...]
  /external/python/cpython2/Modules/cjkcodecs/
_codecs_tw.c 22 **outbuf = (unsigned char)c;
55 TRYMAP_DEC(big5, **outbuf, c, IN2) {
110 TRYMAP_DEC(cp950ext, **outbuf, c, IN2);
111 else TRYMAP_DEC(big5, **outbuf, c, IN2);
cjkcodecs.h 76 unsigned char **outbuf, Py_ssize_t outleft, int flags)
80 unsigned char **outbuf, Py_ssize_t outleft)
89 Py_UNICODE **outbuf, Py_ssize_t outleft)
107 (*outbuf) += (o); \
124 #define OUT1(c) ((*outbuf)[0]) = (c);
125 #define OUT2(c) ((*outbuf)[1]) = (c);
126 #define OUT3(c) ((*outbuf)[2]) = (c);
127 #define OUT4(c) ((*outbuf)[3]) = (c);
131 (*outbuf)[0] = (c1);
134 (*outbuf)[0] = (c1);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
lbxbuf.h 47 extern char *ReserveOutBuf(ZlibBufferPtr outbuf, int outlen);
  /external/vboot_reference/host/lib/
util_misc.c 45 uint32_t *outbuf; local
52 outbuf = malloc(bufsize);
53 if (!outbuf)
56 *keyb_data = (uint8_t *)outbuf;
59 *outbuf++ = nwords;
91 *outbuf++ = n0invout;
109 *outbuf++ = nout;
120 *outbuf++ = rrout;
125 outbuf = NULL;
129 free(outbuf);
    [all...]
  /external/syslinux/com32/libupload/
zout.c 24 be->outbuf = NULL;
47 buf = realloc(be->outbuf, be->alloc + ALLOC_CHUNK);
50 be->outbuf = buf;
94 free(be->outbuf);
95 be->outbuf = NULL;
  /external/libvpx/libvpx/examples/
resize_util.c 50 uint8_t *inbuf, *outbuf; local
102 outbuf = (uint8_t *)malloc(target_width * target_height * 3 / 2);
105 outbuf_u = outbuf + target_width * target_height;
111 width, outbuf, target_width, outbuf_u, outbuf_v,
113 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout);
121 free(outbuf);
  /development/samples/Vault/src/com/example/android/vault/
EncryptedDocument.java 282 byte[] outbuf;
287 outbuf = mCipher.update(inbuf, 0, n);
288 if (outbuf != null) {
289 out.write(outbuf);
296 outbuf = mCipher.doFinal();
297 if (outbuf != null) {
298 out.write(outbuf);
325 byte[] outbuf;
329 outbuf = mCipher.update(inbuf, 0, n);
330 if (outbuf != null)
    [all...]
  /external/bzip2/
unzcrash.c 41 uchar outbuf[M_BLOCK_OUT]; variable
107 outbuf, &nOut, zbuf, nZ, 0, 0 );
118 if (inbuf[i] != outbuf[i]) {
132 if (inbuf[i] != outbuf[i]) {
  /external/libxml2/os400/iconv/
iconv.h 24 char * * outbuf, size_t * outbytesleft);
  /external/libopus/tests/
test_opus_decode.c 65 short *outbuf; local
74 outbuf=&outbuf_int[8*2];
109 out_samples = opus_decode(dec[t], 0, 0, outbuf, 120/factor, fec);
115 out_samples = opus_decode(dec[t], 0, 0, outbuf, 120/factor+2, fec);
119 out_samples = opus_decode(dec[t], 0, -1, outbuf, 120/factor, fec);
121 out_samples = opus_decode(dec[t], 0, 1, outbuf, 120/factor, fec);
123 out_samples = opus_decode(dec[t], 0, 10, outbuf, 120/factor, fec);
125 out_samples = opus_decode(dec[t], 0, fast_rand(), outbuf, 120/factor, fec);
131 out_samples = opus_decode(dec[t], packet, 0, outbuf, 120/factor, fec);
135 outbuf[0]=32749
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
readwriter.go 76 outbuf []byte
86 n := copy(p, r.outbuf[r.bufStart:r.lastBoundary])
96 outn := copy(r.outbuf, r.outbuf[r.lastBoundary:])
97 r.outbuf = r.outbuf[0:outn]
104 r.outbuf = doAppend(&r.rb, r.outbuf, 0)
107 r.lastBoundary = len(r.outbuf)
109 r.lastBoundary = lastBoundary(&r.rb.f, r.outbuf)
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
readwriter.go 76 outbuf []byte
86 n := copy(p, r.outbuf[r.bufStart:r.lastBoundary])
96 outn := copy(r.outbuf, r.outbuf[r.lastBoundary:])
97 r.outbuf = r.outbuf[0:outn]
104 r.outbuf = doAppend(&r.rb, r.outbuf, 0)
107 r.lastBoundary = len(r.outbuf)
109 r.lastBoundary = lastBoundary(&r.rb.f, r.outbuf)
    [all...]
  /external/icu/icu4c/as_is/os400/
iculd.c 124 char outbuf[100]; local
140 strcpy(outbuf,mend);
141 b=outbuf;
158 char outbuf[100]; local
174 strcpy(outbuf,mend);
175 b=outbuf;

Completed in 371 milliseconds

1 2 3 4 5 6 7 8 9