HomeSort by relevance Sort by last modified time
    Searched refs:outbuf (Results 26 - 50 of 81) sorted by null

12 3 4

  /external/icu4c/test/thaitest/
thaitest.cpp 405 char outbuf[1024]; local
409 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &bom, 1, &status));
416 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &chars[prevbreak],
  /external/qemu/distrib/zlib-1.2.3/
gzio.c 62 Byte *outbuf; /* output buffer */ member in struct:gz_stream
115 s->stream.next_out = s->outbuf = Z_NULL;
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
161 if (err != Z_OK || s->outbuf == Z_NULL) {
246 s->stream.next_out = s->outbuf;
247 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
384 TRYFREE(s->outbuf);
575 s->stream.next_out = s->outbuf;
576 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
721 if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len)
    [all...]
  /external/zlib/
gzio.c 62 Byte *outbuf; /* output buffer */ member in struct:gz_stream
115 s->stream.next_out = s->outbuf = Z_NULL;
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
161 if (err != Z_OK || s->outbuf == Z_NULL) {
246 s->stream.next_out = s->outbuf;
247 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
384 TRYFREE(s->outbuf);
575 s->stream.next_out = s->outbuf;
576 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
721 if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len)
    [all...]
  /external/libxml2/
HTMLtree.c 399 xmlOutputBufferPtr outbuf; local
407 outbuf = (xmlOutputBufferPtr) xmlMalloc(sizeof(xmlOutputBuffer));
408 if (outbuf == NULL) {
412 memset(outbuf, 0, (size_t) sizeof(xmlOutputBuffer));
413 outbuf->buffer = buf;
414 outbuf->encoder = NULL;
415 outbuf->writecallback = NULL;
416 outbuf->closecallback = NULL;
417 outbuf->context = NULL;
418 outbuf->written = 0
    [all...]
xmlsave.c 2015 xmlOutputBufferPtr outbuf; local
2064 xmlOutputBufferPtr outbuf; local
    [all...]
  /packages/apps/Nfc/jni/
com_android_nfc_NativeNfcTag.cpp 713 // outbuf is passed into the transceive - it may be pointed to new memory
718 uint8_t *outbuf = NULL; local
753 buf = outbuf = (uint8_t *)e->GetByteArrayElements(data, NULL);
767 outbuf = (uint8_t*)malloc(buflen + 2);
769 memcpy(outbuf, buf, buflen);
770 nfc_insert_crc_a(outbuf, buflen);
792 outbuf = (uint8_t*)malloc(buflen + 2);
794 memcpy(outbuf, buf, buflen);
795 nfc_insert_crc_a(outbuf, buflen);
823 transceive_info.sSendData.buffer = outbuf + offset
    [all...]
  /external/chromium/base/
string_number_conversions.cc 71 STR outbuf(kOutputBufSize, 0);
78 for (typename STR::iterator it = outbuf.end();;) {
80 DCHECK(it != outbuf.begin());
88 DCHECK(it != outbuf.begin());
91 return STR(it, outbuf.end());
  /external/e2fsprogs/intl/
dcigettext.c 886 unsigned char *outbuf; local
895 outbuf = freemem + sizeof (size_t);
910 &outbuf,
911 outbuf + freemem_size - sizeof (size_t),
928 char *outptr = (char *) outbuf;
940 outbuf = (unsigned char *) outptr;
998 outbuf = freemem + sizeof (size_t);
1003 *(size_t *) freemem = outbuf - freemem - sizeof (size_t);
1006 freemem_size -= outbuf - freemem;
1007 freemem = outbuf;
    [all...]
  /external/ipsec-tools/src/racoon/
gssapi.c 523 vchar_t *outbuf; local
561 if (gssapi_gss2vmbuf(hash_out, &outbuf) < 0) {
573 return outbuf;
583 vchar_t *outbuf; local
606 if (gssapi_gss2vmbuf(hash_out, &outbuf) < 0) {
618 return outbuf;
  /system/core/sh/
output.c 243 fmtstr(char *outbuf, size_t length, const char *fmt, ...)
249 strout.nextc = outbuf;
256 outbuf[length - 1] = '\0';
  /external/bluetooth/glib/glib/
gconvert.h 60 gchar **outbuf,
giochannel.c 1347 gchar *inbuf, *outbuf; local
2220 gchar *outbuf; local
    [all...]
gutf8.c 584 * @outbuf: output buffer, must have at least 6 bytes of space.
586 * and nothing will be written to @outbuf.
594 gchar *outbuf)
632 if (outbuf)
636 outbuf[i] = (c & 0x3f) | 0x80;
639 outbuf[0] = c | first;
    [all...]
gconvert.c 172 * @outbuf: converted output bytes
173 * @outbytes_left: inout parameter, bytes available to fill in @outbuf
188 gchar **outbuf,
194 return iconv (cd, inbuf, inbytes_left, outbuf, outbytes_left);
410 * NULL for anything but inbuf; work around that. (NULL outbuf
411 * or NULL *outbuf is allowed by Unix98.)
414 gchar *outbuf = NULL; local
421 g_iconv (cd, NULL, &inbytes_left, &outbuf, &outbytes_left);
    [all...]
  /external/dropbear/libtomcrypt/testprof/
der_tests.c 23 unsigned char strs[10][10], outbuf[128]; local
33 outlen = sizeof(outbuf);
34 if ((err = der_encode_set(list, 3, outbuf, &outlen)) != CRYPT_OK) {
45 if ((err = der_decode_set(outbuf, outlen, list, 3)) != CRYPT_OK) {
81 outlen = sizeof(outbuf);
82 if ((err = der_encode_setof(list, 10, outbuf, &outlen)) != CRYPT_OK) {
92 if ((err = der_decode_set(outbuf, outlen, list, 10)) != CRYPT_OK) {
456 unsigned char bitbuf[10], octetbuf[10], ia5buf[10], printbuf[10], outbuf[256]; local
488 outlen = sizeof(outbuf);
489 DO(der_encode_sequence(&types[x>6?x-7:x], 1, outbuf, &outlen))
    [all...]
  /external/icu4c/extra/uconv/
uconv.cpp 536 buf(NULL), outbuf(NULL), fromoffsets(NULL),
544 outbuf = buf + bufsz;
569 char *buf, *outbuf; member in class:ConvertFile
921 bufp = outbuf;
926 ucnv_fromUnicode(convto, &bufp, outbuf + bufsz,
    [all...]
  /external/qemu/
monitor.c 82 uint8_t outbuf[1024]; member in struct:Monitor
176 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
195 mon->outbuf[mon->outbuf_index++] = '\r';
196 mon->outbuf[mon->outbuf_index++] = c;
197 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
    [all...]
  /external/valgrind/main/callgrind/
command.c 40 static Char outbuf[FILENAME_LEN + FN_NAME_LEN + OBJ_NAME_LEN]; variable
189 Char* buf = outbuf;
228 Char* buf = outbuf;
287 Char* buf = outbuf;
  /external/quake/quake/src/QW/client/
md4.c 299 void Com_BlockFullChecksum (void *buffer, int len, unsigned char *outbuf)
305 MD4Final ( outbuf, &ctx);
common.h 218 void Com_BlockFullChecksum (void *buffer, int len, unsigned char *outbuf);
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 1464 short outbuf[MAX_OUTBUF_SIZE\/2]; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureSpiTest.java 285 protected int engineSign(byte[] outbuf, int offset, int len)
  /external/speex/libspeex/
preprocess.c 229 spx_word16_t *outbuf; /**< Output buffer (for overlap and add) */ member in struct:SpeexPreprocessState_
471 st->outbuf = (spx_word16_t*)speex_alloc(N3*sizeof(spx_word16_t));
500 st->outbuf[i]=0;
560 speex_free(st->outbuf);
    [all...]
  /external/valgrind/main/mpi/
libmpiwrap.c     [all...]
  /external/icu4c/test/intltest/
strtest.cpp 371 SimpleByteSink(char *outbuf) : fOutbuf(outbuf), fLength(0) {}

Completed in 679 milliseconds

12 3 4