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

1 2 3 4

  /external/chromium_org/third_party/icu/source/common/
utrace.c 88 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) {
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) {
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) {
161 outputChar(c, outBuf, outIx, capacity, indent)
    [all...]
  /external/icu4c/common/
utrace.c 88 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) {
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) {
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) {
161 outputChar(c, outBuf, outIx, capacity, indent)
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
Bcj2.h 18 If buf0 overlaps outBuf, there are two required conditions:
19 1) (buf0 >= outBuf)
20 2) (buf0 + size0 >= outBuf + FullOutputSize).
32 Byte *outBuf, SizeT outSize);
Bcj2.c 38 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);
  /external/lzma/C/
Bcj2.h 18 If buf0 overlaps outBuf, there are two required conditions:
19 1) (buf0 >= outBuf)
20 2) (buf0 + size0 >= outBuf + FullOutputSize).
32 Byte *outBuf, SizeT outSize);
Lzma2Enc.c 72 static SRes Lzma2EncInt_EncodeSubblock(CLzma2EncInt *p, Byte *outBuf,
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[destPos++] = (Byte)u;
    [all...]
Bcj2.c 38 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);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/
WrappedIndexBuffer.java 59 IndexBuffer outBuf = IndexBuffer.createIndexBuffer(mesh.getVertexCount(),
63 outBuf.put(i, inBuf.get(i));
79 if (outBuf instanceof IndexIntBuffer){
80 mesh.setBuffer(Type.Index, 3, (IntBuffer)outBuf.getBuffer());
82 mesh.setBuffer(Type.Index, 3, (ShortBuffer)outBuf.getBuffer());
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
GZIPInputStreamTest.java 126 byte outBuf[] = new byte[100];
139 result += inGZIP.read(outBuf, result, outBuf.length - result);
147 orgBuf[i], outBuf[i]);
148 // System.out.println(orgBuf[i] + " " + outBuf[i]);
152 inGZIP.read(outBuf, 100, 1);
219 outBuf = new byte[530];
222 in.read(outBuf, 530, 1);
227 result = in.read(outBuf, 0, 5);
235 result = in.read(outBuf, -100, 1)
    [all...]
  /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/jmonkeyengine/engine/src/tools/jme3tools/optimize/
GeometryBatchFactory.java 25 private static void doTransformVerts(FloatBuffer inBuf, int offset, FloatBuffer outBuf, Matrix4f transform) {
39 outBuf.put(offset + i * 3 + 0, pos.x);
40 outBuf.put(offset + i * 3 + 1, pos.y);
41 outBuf.put(offset + i * 3 + 2, pos.z);
45 private static void doTransformNorms(FloatBuffer inBuf, int offset, FloatBuffer outBuf, Matrix4f transform) {
59 outBuf.put(offset + i * 3 + 0, norm.x);
60 outBuf.put(offset + i * 3 + 1, norm.y);
61 outBuf.put(offset + i * 3 + 2, norm.z);
65 private static void doTransformTangents(FloatBuffer inBuf, int offset, int components, FloatBuffer outBuf, Matrix4f transform) {
79 outBuf.put(offset + i * components + 0, tan.x)
    [all...]
  /external/chromium_org/third_party/opus/src/silk/
decode_frame.c 107 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 ) );
decoder_set_fs.c 95 silk_memset( psDec->outBuf, 0, sizeof(psDec->outBuf));
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
ScreenshotAppState.java 30 private ByteBuffer outBuf;
69 outBuf = BufferUtils.createByteBuffer(w*h*4);
84 renderer.readFrameBuffer(out, outBuf);
85 Screenshots.convertScreenShot(outBuf, awtImage);
  /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...]
  /external/chromium_org/third_party/icu/source/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/icu4c/common/unicode/
utrace.h 304 * @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,
  /art/test/070-nio-buffer/src/
Main.java 161 char[] outBuf = new char[directBuf.limit() * 2];
164 outBuf[i*2] = hexChar((byte) ((b >> 4) & 0x0f));
165 outBuf[i*2+1] = hexChar((byte) (b & 0x0f));
167 System.out.println(new String(outBuf));
  /dalvik/tests/070-nio-buffer/src/
Main.java 161 char[] outBuf = new char[directBuf.limit() * 2];
164 outBuf[i*2] = hexChar((byte) ((b >> 4) & 0x0f));
165 outBuf[i*2+1] = hexChar((byte) (b & 0x0f));
167 System.out.println(new String(outBuf));
  /frameworks/base/include/androidfw/
StreamingZipInflater.h 41 // read 'count' bytes of uncompressed data from the current position. outBuf may
43 ssize_t read(void* outBuf, size_t count);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidDeflateTest.java 126 private void compress(Deflater deflater, byte[] inBuf, byte[] outBuf) {
154 compCount = deflater.deflate(outBuf, outPosn, LOCAL_BUF_SIZE);
162 * Expand data from "inBuf" to "outBuf". Uses a small window to better
166 byte[] outBuf) throws DataFormatException {
190 compCount = inflater.inflate(outBuf, outPosn, LOCAL_BUF_SIZE);
  /external/svox/pico/lib/
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...]
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...]
  /frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 33 unsigned char outBuf[1024*8];
228 outData.Buffer = outBuf;
236 outData.Buffer = outBuf;

Completed in 1029 milliseconds

1 2 3 4