HomeSort by relevance Sort by last modified time
    Searched full:outbuf (Results 76 - 100 of 272) sorted by null

1 2 34 5 6 7 8 91011

  /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/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/svox/pico/lib/
picosig.c 82 picoos_uint8 outBuf[PICOSIG_OUT_BUFF_SIZE]; /* internal output buffer */
84 picoos_uint16 outReadPos, outWritePos; /* next pos to read/write from/to outBuf*/
583 sig_subObj->outBuf[outWritePos]
585 sig_subObj->outBuf[outWritePos + 1]
587 sig_subObj->outBuf[outWritePos + 2]
589 sig_subObj->outBuf[outWritePos + 3]
591 s_data = (picoos_int16 *) &(sig_subObj->outBuf[outWritePos + 4]);
    [all...]
picocep.c 184 picoos_uint8 outBuf[PICODATA_MAX_ITEMSIZE]; /* internal output buffer (one item) */
185 picoos_uint16 outBufSize; /* allocated outBuf size */
186 picoos_uint16 outReadPos, outWritePos; /* next pos to read/write from/to outBuf*/
304 /* outBuf */
    [all...]
picospho.c 81 * - Items to be output are stored in outBuf
186 picoos_uint8 outBuf[PICODATA_BUFSIZE_DEFAULT]; /* internal output buffer to hold just one item */
187 picoos_uint16 outBufSize; /* actually allocated size (if one day outBuf is allocated dynamically) */
832 spho->outBuf, spho->outBufSize, &clen);
    [all...]
  /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/libxml2/
xmlsave.c 2015 xmlOutputBufferPtr outbuf; local
2064 xmlOutputBufferPtr outbuf; local
    [all...]
  /external/openssl/crypto/rand/
rand_win.c 258 LPBYTE outbuf; local
265 if (netstatget(NULL, L"LanmanWorkstation", 0, 0, &outbuf) == 0)
267 RAND_add(outbuf, sizeof(STAT_WORKSTATION_0), 45);
268 netfree(outbuf);
270 if (netstatget(NULL, L"LanmanServer", 0, 0, &outbuf) == 0)
272 RAND_add(outbuf, sizeof(STAT_SERVER_0), 17);
273 netfree(outbuf);
  /external/bluetooth/glib/glib/
gconvert.h 60 gchar **outbuf,
gunicode.h 345 /* Convert a single character into UTF-8. outbuf must have at
350 gchar *outbuf);
  /external/icu4c/common/unicode/
utrace.h 303 * @param outBuf pointer to a buffer to receive the formatted output. Output
316 utrace_vformat(char *outBuf, int32_t capacity,
324 * @param outBuf pointer to a buffer to receive the formatted output. Output
337 utrace_format(char *outBuf, int32_t capacity,
  /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;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/gconv/
ANSI_X3.110.so 
CP1258.so 
ISO_6937-2.so 
ISO_6937.so 
T.61.so 
  /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/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;
  /frameworks/base/media/libeffects/preprocessing/
PreProcessing.cpp 114 int16_t *outBuf; // output buffer used when resampling
768 session->outBuf = NULL;
820 delete session->outBuf;
821 session->outBuf = NULL;
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_dpb.c 620 'outBuf'
809 dpb->outBuf[dpb->numOut].data = dpb->currentOut->data;
810 dpb->outBuf[dpb->numOut].isIdr = dpb->currentOut->isIdr;
811 dpb->outBuf[dpb->numOut].picId = dpb->currentOut->picId;
812 dpb->outBuf[dpb->numOut].numErrMbs = dpb->currentOut->numErrMbs;
1033 ALLOCATE(dpb->outBuf, dpb->dpbSize+1, dpbOutPicture_t);
1035 if (dpb->list == NULL || dpb->outBuf == NULL)
    [all...]
  /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/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/icu4c/i18n/
unum.cpp 424 char *outBuf,
431 if ((outBuf == NULL && outBufLength != 0) || outBufLength < 0) {
443 uprv_strncpy(outBuf, sp.data(), sp.size());
446 uprv_strcpy(outBuf, sp.data());

Completed in 953 milliseconds

1 2 34 5 6 7 8 91011