HomeSort by relevance Sort by last modified time
    Searched defs:outBuf (Results 1 - 25 of 26) sorted by null

1 2

  /frameworks/base/media/jni/
android_media_AmrInputStream.cpp 76 jbyte outBuf[MAX_OUTPUT_BUFFER_SIZE];
83 (unsigned char *) outBuf,
99 outBuf[0] = (outBuf[0] << 3) | 0x4;
102 env->SetByteArrayRegion(amr, amrOffset, length, outBuf);
  /external/svox/pico/lib/
picowa.c 62 picoos_uint8 outBuf[PICOWA_MAXITEMSIZE]; /* internal output buffer */
64 picoos_uint16 outLen; /* length of item in outBuf, 0 for empty buf */
293 wa->outBuf, wa->outBufSize,
297 if (PICO_OK != picodata_set_iteminfo1(wa->outBuf, wa->outLen,
331 wa->outBuf, wa->outBufSize,
341 wa->outBuf, wa->outBufSize,
345 if (PICO_OK != picodata_set_iteminfo1(wa->outBuf, wa->outLen,
437 * result in internal outBuf
472 wa->inLen, wa->outBuf,
492 /* PICO_EXC_BUF_OVERFLOW <- overflow in outbuf
    [all...]
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...]
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...]
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...]
picotok.c 248 picoos_uint8 outBuf[OUT_BUF_SIZE]; /* internal output buffer */
249 picoos_uint16 outReadPos; /* next pos to read from outBuf */
250 picoos_uint16 outWritePos; /* next pos to write to outBuf */
490 tok->outBuf[tok->outWritePos++] = itemType;
491 tok->outBuf[tok->outWritePos++] = info1;
492 tok->outBuf[tok->outWritePos++] = info2;
493 tok->outBuf[tok->outWritePos++] = 0;
509 tok->outBuf[tok->outWritePos++] = itemType;
510 tok->outBuf[tok->outWritePos++] = info1;
511 tok->outBuf[tok->outWritePos++] = info2
    [all...]
picopam.c 159 picoos_uint8 outBuf[PICOPAM_OUT_PAM_SIZE]; /* internal output buffer */
161 picoos_uint16 outReadPos, outWritePos; /* next pos to read/write from/to outBuf*/
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 33 unsigned char outBuf[1024*8];
228 outData.Buffer = outBuf;
236 outData.Buffer = outBuf;
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_dpb.h 82 dpbOutPicture_t *outBuf;
  /external/valgrind/main/none/tests/amd64/
amd64locked.c 125 static HChar outBuf[1024];
126 // take output that's in outBuf, length as specified, and
130 assert( ((unsigned int)nbytes) < sizeof(outBuf)-1);
131 assert(outBuf[nbytes] == 0);
132 theCRC = crcBytes( (UChar*)&outBuf[0], nbytes, theCRC );
133 if (VERBOSE) printf("SEND %08x %s", theCRC, outBuf);
266 sprintf(outBuf, \
357 sprintf(outBuf, \
473 sprintf(outBuf, \
690 send( sprintf(outBuf,
    [all...]
  /external/valgrind/main/none/tests/x86/
x86locked.c 125 static HChar outBuf[1024];
126 // take output that's in outBuf, length as specified, and
130 assert( ((unsigned int)nbytes) < sizeof(outBuf)-1);
131 assert(outBuf[nbytes] == 0);
132 theCRC = crcBytes( (UChar*)&outBuf[0], nbytes, theCRC );
133 if (VERBOSE) printf("SEND %08x %s", theCRC, outBuf);
251 sprintf(outBuf, \
335 sprintf(outBuf, \
437 sprintf(outBuf, \
597 send( sprintf(outBuf,
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/SampleCode/
AMRWB_E_SAMPLE.c 98 unsigned char *outBuf = OutputBuf;
191 memcpy(outBuf, VOAMRWB_RFC3267_HEADER_INFO, size1);
192 outBuf += size1;
201 outData.Buffer = outBuf;
  /build/tools/zipalign/
ZipFile.cpp 749 unsigned char* outBuf = NULL;
759 outBuf = new unsigned char[kBufSize];
760 if (inBuf == NULL || outBuf == NULL) {
774 zstream.next_out = outBuf;
843 LOGV("+++ writing %d bytes\n", (int) (zstream.next_out - outBuf));
844 if (fwrite(outBuf, 1, zstream.next_out - outBuf, dstFp) !=
845 (size_t)(zstream.next_out - outBuf))
848 (int) (zstream.next_out - outBuf));
852 zstream.next_out = outBuf;
    [all...]
  /external/chromium/crypto/third_party/nss/
sha512.cc     [all...]
  /external/webrtc/src/modules/audio_processing/ns/main/source/
ns_core.h 64 float outBuf[3 * BLOCKL_MAX];
  /frameworks/base/tools/aapt/
ZipFile.cpp 749 unsigned char* outBuf = NULL;
759 outBuf = new unsigned char[kBufSize];
760 if (inBuf == NULL || outBuf == NULL) {
774 zstream.next_out = outBuf;
843 LOGV("+++ writing %d bytes\n", (int) (zstream.next_out - outBuf));
844 if (fwrite(outBuf, 1, zstream.next_out - outBuf, dstFp) !=
845 (size_t)(zstream.next_out - outBuf))
848 (int) (zstream.next_out - outBuf));
852 zstream.next_out = outBuf;
    [all...]
  /external/icu4c/i18n/
uspoof.cpp 512 static UChar * convertFromUTF8(UChar *outBuf, int32_t outBufCapacity, int32_t *outputLength,
517 UChar *dest = outBuf;
765 UChar *outBuf = smallOutBuf;
785 outBuf, USPOOF_STACK_BUFFER_SIZE, status);
787 outBuf = static_cast<UChar *>(uprv_malloc((skelLengthInUChars+1)*sizeof(UChar)));
788 if (outBuf == NULL) {
794 outBuf, skelLengthInUChars+1, status);
798 outBuf, skelLengthInUChars, status);
804 if (outBuf != smallOutBuf) {
805 uprv_free(outBuf);
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/main/source/
aec_core.h 117 float outBuf[PART_LEN];
  /system/core/liblog/
logprint.c 446 char* outBuf = *pOutBuf;
471 outCount = snprintf(outBuf, outBufLen, "%d", ival);
473 outBuf += outCount;
492 outCount = snprintf(outBuf, outBufLen, "%lld", lval);
494 outBuf += outCount;
517 memcpy(outBuf, eventData, strLen);
518 outBuf += strLen;
522 memcpy(outBuf, eventData, outBufLen);
523 outBuf += outBufLen;
544 *outBuf++ = '['
    [all...]
  /dalvik/vm/analysis/
RegisterMap.cpp 436 char outBuf[registersSize +1];
442 outBuf[i] = '0' + (val & 0x01);
444 outBuf[i] = '\0';
456 LOGD(" %04x %s %s", addr, outBuf, hexBuf);
    [all...]
  /device/samsung/crespo/libaudio/
AudioHardware.cpp     [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTAttributeDef.java 459 StringBuffer outBuf = new StringBuffer();
461 outBuf.append("set");
466 outBuf.append("Xml");
487 outBuf.append(c);
490 m_setterString = outBuf.toString();
    [all...]
  /external/webrtc/src/modules/audio_processing/aecm/main/source/
aecm_core.h 122 WebRtc_Word16 outBuf[PART_LEN];
  /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...]
  /dalvik/vm/
Debugger.cpp 1008 u1* outBuf;
1010 outBuf = expandBufAddSpace(pReply, count * width);
1012 copyValuesToBE(outBuf, data + firstIndex*width, count, width);
    [all...]

Completed in 1054 milliseconds

1 2