Searched refs:outBuf (Results 1 - 25 of 63) sorted by relevance

123

/external/chromium_org/third_party/icu/source/common/
H A Dutrace.c88 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { argument
100 (c!='\n' && c!=0 && *outIx < capacity && outBuf[(*outIx)-1]=='\n') || /* case 2. */
106 outBuf[*outIx] = ' ';
113 outBuf[*outIx] = c;
124 char *outBuf, int32_t *outIx, int32_t capacity) {
129 outputChar(c, outBuf, outIx, capacity, 0);
134 static void outputPtrBytes(void *val, char *outBuf, int32_t *outIx, int32_t capacity) { argument
148 outputHexBytes(*p, 2, outBuf, outIx, capacity);
153 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { argument
161 outputChar(c, outBuf, outI
123 outputHexBytes(int64_t val, int32_t charsToOutput, char *outBuf, int32_t *outIx, int32_t capacity) argument
167 outputUString(const UChar *s, int32_t len, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) argument
187 utrace_vformat(char *outBuf, int32_t capacity, int32_t indent, const char *fmt, va_list args) argument
381 utrace_format(char *outBuf, int32_t capacity, int32_t indent, const char *fmt, ...) argument
[all...]
/external/icu/icu4c/source/common/
H A Dutrace.c88 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { argument
100 (c!='\n' && c!=0 && *outIx < capacity && outBuf[(*outIx)-1]=='\n') || /* case 2. */
106 outBuf[*outIx] = ' ';
113 outBuf[*outIx] = c;
124 char *outBuf, int32_t *outIx, int32_t capacity) {
129 outputChar(c, outBuf, outIx, capacity, 0);
134 static void outputPtrBytes(void *val, char *outBuf, int32_t *outIx, int32_t capacity) { argument
148 outputHexBytes(*p, 2, outBuf, outIx, capacity);
153 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { argument
161 outputChar(c, outBuf, outI
123 outputHexBytes(int64_t val, int32_t charsToOutput, char *outBuf, int32_t *outIx, int32_t capacity) argument
167 outputUString(const UChar *s, int32_t len, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) argument
187 utrace_vformat(char *outBuf, int32_t capacity, int32_t indent, const char *fmt, va_list args) argument
381 utrace_format(char *outBuf, int32_t capacity, int32_t indent, const char *fmt, ...) argument
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
H A DXmlMessageWrapper.java188 byte[] outBuf = new byte[4];
189 outBuf[0] = (byte)((intVal >> 24) & 0xff);
190 outBuf[1] = (byte)((intVal >> 16) & 0xff);
191 outBuf[2] = (byte)((intVal >> 8) & 0xff);
192 outBuf[3] = (byte)(intVal & 0xff);
193 return outBuf;
212 byte[] outBuf = new byte[2];
213 outBuf[0] = (byte)((intVal >> 8) & 0xff);
214 outBuf[1] = (byte)(intVal & 0xff);
215 return outBuf;
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
H A DPoloUtil.java112 byte[] outBuf = new byte[4];
113 outBuf[0] = (byte)((intVal >> 24) & 0xff);
114 outBuf[1] = (byte)((intVal >> 16) & 0xff);
115 outBuf[2] = (byte)((intVal >> 8) & 0xff);
116 outBuf[3] = (byte)(intVal & 0xff);
117 return outBuf;
/external/chromium_org/third_party/lzma_sdk/
H A DBcj2.h18 If buf0 overlaps outBuf, there are two required conditions:
19 1) (buf0 >= outBuf)
20 2) (buf0 + size0 >= outBuf + FullOutputSize).
32 Byte *outBuf, SizeT outSize);
H A DBcj2.c38 Byte *outBuf, SizeT outSize)
71 outBuf[outPos++] = b;
119 outBuf[outPos++] = (Byte)dest;
122 outBuf[outPos++] = (Byte)(dest >> 8);
125 outBuf[outPos++] = (Byte)(dest >> 16);
128 outBuf[outPos++] = prevByte = (Byte)(dest >> 24);
33 Bcj2_Decode( const Byte *buf0, SizeT size0, const Byte *buf1, SizeT size1, const Byte *buf2, SizeT size2, const Byte *buf3, SizeT size3, Byte *outBuf, SizeT outSize) argument
/external/lzma/C/
H A DBcj2.h18 If buf0 overlaps outBuf, there are two required conditions:
19 1) (buf0 >= outBuf)
20 2) (buf0 + size0 >= outBuf + FullOutputSize).
32 Byte *outBuf, SizeT outSize);
H A DLzma2Enc.c72 static SRes Lzma2EncInt_EncodeSubblock(CLzma2EncInt *p, Byte *outBuf, argument
89 outBuf + lzHeaderSize, &packSize, LZMA2_PACK_SIZE_MAX, &unpackSize);
115 outBuf[destPos++] = (Byte)(p->srcPos == 0 ? LZMA2_CONTROL_COPY_RESET_DIC : LZMA2_CONTROL_COPY_NO_RESET);
116 outBuf[destPos++] = (Byte)((u - 1) >> 8);
117 outBuf[destPos++] = (Byte)(u - 1);
118 memcpy(outBuf + destPos, LzmaEnc_GetCurBuf(p->enc) - unpackSize, u);
125 if (outStream->Write(outStream, outBuf, destPos) != destPos)
144 outBuf[destPos++] = (Byte)(LZMA2_CONTROL_LZMA | (mode << 5) | ((u >> 16) & 0x1F));
145 outBuf[destPos++] = (Byte)(u >> 8);
146 outBuf[destPo
248 Byte *outBuf; member in struct:__anon26702
[all...]
H A DBcj2.c38 Byte *outBuf, SizeT outSize)
71 outBuf[outPos++] = b;
119 outBuf[outPos++] = (Byte)dest;
122 outBuf[outPos++] = (Byte)(dest >> 8);
125 outBuf[outPos++] = (Byte)(dest >> 16);
128 outBuf[outPos++] = prevByte = (Byte)(dest >> 24);
33 Bcj2_Decode( const Byte *buf0, SizeT size0, const Byte *buf1, SizeT size1, const Byte *buf2, SizeT size2, const Byte *buf3, SizeT size3, Byte *outBuf, SizeT outSize) argument
H A DMtCoder.c114 p->outBuf = 0;
140 IAlloc_Free(p->mtCoder->alloc, p->outBuf);
141 p->outBuf = 0;
157 MY_BUF_ALLOC(p->outBuf, p->outBufSize, p->mtCoder->destBlockSize)
212 p->outBuf, &destSize, p->inBuf, size, *stop));
220 if (p->mtCoder->outStream->Write(p->mtCoder->outStream, p->outBuf, destSize) != destSize)
H A DMtCoder.h54 Byte *outBuf; member in struct:__anon26718
/external/chromium_org/third_party/webrtc/modules/audio_processing/aecm/
H A Daecm_core_neon_offsets.c19 int offset_aecm_outBuf = offsetof(AecmCore_t, outBuf);
/external/chromium_org/third_party/opus/src/silk/
H A Ddecode_frame.c107 silk_memmove( psDec->outBuf, &psDec->outBuf[ psDec->frame_length ], mv_len * sizeof(opus_int16) );
108 silk_memcpy( &psDec->outBuf[ mv_len ], pOut, psDec->frame_length * sizeof( opus_int16 ) );
H A Ddecoder_set_fs.c95 silk_memset( psDec->outBuf, 0, sizeof(psDec->outBuf));
/external/libopus/silk/
H A Ddecode_frame.c107 silk_memmove( psDec->outBuf, &psDec->outBuf[ psDec->frame_length ], mv_len * sizeof(opus_int16) );
108 silk_memcpy( &psDec->outBuf[ mv_len ], pOut, psDec->frame_length * sizeof( opus_int16 ) );
H A Ddecoder_set_fs.c95 silk_memset( psDec->outBuf, 0, sizeof(psDec->outBuf));
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dutrace.h304 * @param outBuf pointer to a buffer to receive the formatted output. Output
317 utrace_vformat(char *outBuf, int32_t capacity,
325 * @param outBuf pointer to a buffer to receive the formatted output. Output
338 utrace_format(char *outBuf, int32_t capacity,
/external/icu/icu4c/source/common/unicode/
H A Dutrace.h304 * @param outBuf pointer to a buffer to receive the formatted output. Output
317 utrace_vformat(char *outBuf, int32_t capacity,
325 * @param outBuf pointer to a buffer to receive the formatted output. Output
338 utrace_format(char *outBuf, int32_t capacity,
/external/svox/pico/lib/
H A Dpicotok.c248 picoos_uint8 outBuf[OUT_BUF_SIZE]; /* internal output buffer */ member in struct:tok_subobj
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[to
[all...]
H A Dpicowa.c62 picoos_uint8 outBuf[PICOWA_MAXITEMSIZE]; /* internal output buffer */ member in struct:wa_subobj
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,
535 /* feed state: copy item in internal outBuf t
[all...]
H A Dpicosig.c82 picoos_uint8 outBuf[PICOSIG_OUT_BUFF_SIZE]; /* internal output buffer */ member in struct:sig_subobj
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]);
1054 &(sig_subObj->outBuf[sig_subObj->outWritePos]),
1126 s_data = (picoos_int16 *) &(sig_subObj->outBuf[sig_subObj->outWritePos + 4]);
1166 sig_subObj->outBuf[sig_subOb
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
H A DFileDeferredOutputStream.java29 byte[] outBuf = output.getBuffer();
41 dest.write(outBuf, 0, count);
/external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
H A Dns_core.h65 float outBuf[3 * BLOCKL_MAX]; member in struct:NSinst_t_
/external/webrtc/src/modules/audio_processing/ns/
H A Dns_core.h64 float outBuf[3 * BLOCKL_MAX]; member in struct:NSinst_t_
/external/aac/libFDK/include/
H A DFDK_bitbuffer.h158 void FDK_Fetch (HANDLE_FDK_BITBUF hBitBuffer, UCHAR outBuf[], UINT *writeBytes);

Completed in 3727 milliseconds

123