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

1 2

  /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());
  /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);
  /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));
  /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);
  /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...]
  /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;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_dpb.h 82 dpbOutPicture_t *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...]
TextureAtlas.java 433 VertexBuffer outBuf = outMesh.getBuffer(Type.TexCoord);
435 if (inBuf == null || outBuf == null) {
448 FloatBuffer outPos = (FloatBuffer) outBuf.getData();
531 VertexBuffer outBuf = outMesh.getBuffer(Type.TexCoord);
533 if (inBuf == null || outBuf == null) {
651 * @param outBuf The output buffer.
653 public void transformTextureCoords(FloatBuffer inBuf, int offset, FloatBuffer outBuf) {
665 outBuf.put(offset + i * 2 + 0, location.x);
666 outBuf.put(offset + i * 2 + 1, location.y);
  /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/av/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 ALOGV("+++ 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/
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 ALOGV("+++ 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 514 static UChar * convertFromUTF8(UChar *outBuf, int32_t outBufCapacity, int32_t *outputLength,
519 UChar *dest = outBuf;
767 UChar *outBuf = smallOutBuf;
787 outBuf, USPOOF_STACK_BUFFER_SIZE, status);
789 outBuf = static_cast<UChar *>(uprv_malloc((skelLengthInUChars+1)*sizeof(UChar)));
790 if (outBuf == NULL) {
796 outBuf, skelLengthInUChars+1, status);
800 outBuf, skelLengthInUChars, status);
806 if (outBuf != smallOutBuf) {
807 uprv_free(outBuf);
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
aec_core.h 105 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 ALOGD(" %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/jmonkeyengine/engine/src/core/com/jme3/scene/
BatchNode.java 465 VertexBuffer outBuf = outMesh.getBuffer(VertexBuffer.Type.values()[bufType]);
467 if (outBuf == null) {
485 FloatBuffer outPos = (FloatBuffer) outBuf.getData();
489 FloatBuffer outPos = (FloatBuffer) outBuf.getData();
495 inBuf.copyElements(0, outBuf, globalVertIndex, geomVertCount);
498 // inBuf.copyElement(vert, outBuf, curGlobalVertIndex);
621 private void doCopyBuffer(FloatBuffer inBuf, int offset, FloatBuffer outBuf, int componentSize) {
634 outBuf.put(offset + i * componentSize + 0, pos.x);
635 outBuf.put(offset + i * componentSize + 1, pos.y);
636 outBuf.put(offset + i * componentSize + 2, pos.z)
    [all...]

Completed in 848 milliseconds

1 2