/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
H A D | GeometryBatchFactory.java | 25 private static void doTransformVerts(FloatBuffer inBuf, int offset, FloatBuffer outBuf, Matrix4f transform) { argument 32 for (int i = 0; i < inBuf.capacity() / 3; i++) { 33 pos.x = inBuf.get(i * 3 + 0); 34 pos.y = inBuf.get(i * 3 + 1); 35 pos.z = inBuf.get(i * 3 + 2); 45 private static void doTransformNorms(FloatBuffer inBuf, int offset, FloatBuffer outBuf, Matrix4f transform) { argument 52 for (int i = 0; i < inBuf.capacity() / 3; i++) { 53 norm.x = inBuf.get(i * 3 + 0); 54 norm.y = inBuf.get(i * 3 + 1); 55 norm.z = inBuf 65 doTransformTangents(FloatBuffer inBuf, int offset, int components, FloatBuffer outBuf, Matrix4f transform) argument [all...] |
H A D | TextureAtlas.java | 432 VertexBuffer inBuf = inMesh.getBuffer(Type.TexCoord); 435 if (inBuf == null || outBuf == null) { 447 FloatBuffer inPos = (FloatBuffer) inBuf.getData(); 530 VertexBuffer inBuf = inMesh.getBuffer(Type.TexCoord); 533 if (inBuf == null || outBuf == null) { 649 * @param inBuf The input texture buffer. 653 public void transformTextureCoords(FloatBuffer inBuf, int offset, FloatBuffer outBuf) { argument 660 for (int i = 0; i < inBuf.capacity() / 2; i++) { 661 tex.x = inBuf.get(i * 2 + 0); 662 tex.y = inBuf [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
H A D | CFBBlockCipher.java | 19 private byte[] inBuf; field in class:CFBBlockCipher 45 this.inBuf = new byte[blockSize]; 130 inBuf[byteCount++] = rv; 137 System.arraycopy(inBuf, 0, cfbV, cfbV.length - blockSize, blockSize); 150 inBuf[byteCount] = in; 158 System.arraycopy(inBuf, 0, cfbV, cfbV.length - blockSize, blockSize); 264 Arrays.fill(inBuf, (byte)0);
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
H A D | BatchNode.java | 463 VertexBuffer inBuf = inMesh.getBuffer(VertexBuffer.Type.values()[bufType]); 484 FloatBuffer inPos = (FloatBuffer) inBuf.getData(); 488 FloatBuffer inPos = (FloatBuffer) inBuf.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) { argument 629 for (int i = 0; i < inBuf.capacity() / componentSize; i++) { 630 pos.x = inBuf.get(i * componentSize + 0); 631 pos.y = inBuf.get(i * componentSize + 1); 632 pos.z = inBuf [all...] |
/external/lzma/C/ |
H A D | MtCoder.h | 56 Byte *inBuf;
member in struct:__anon11529
|
H A D | 7zDec.c | 141 Byte *inBuf = NULL;
local 145 res = inStream->Look((void *)inStream, (const void **)&inBuf, &lookahead);
152 res = LzmaDec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status);
191 Byte *inBuf = NULL;
local 195 res = inStream->Look((void *)inStream, (const void **)&inBuf, &lookahead);
202 res = Lzma2Dec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status);
228 void *inBuf;
local 232 RINOK(inStream->Look((void *)inStream, (const void **)&inBuf, &curSize));
235 memcpy(outBuffer, inBuf, curSize);
|
/external/lzma/C/Util/Lzma/ |
H A D | LzmaUtil.c | 59 Byte inBuf[IN_BUF_SIZE];
local 68 RINOK(inStream->Read(inStream, inBuf, &inSize));
84 inBuf + inPos, &inProcessed, finishMode, &status);
|
/external/svox/pico/lib/ |
H A D | picowa.c | 58 picoos_uint8 inBuf[PICOWA_MAXITEMSIZE]; /* internal input buffer */ member in struct:wa_subobj 60 picoos_uint16 inLen; /* length of item in inBuf, 0 for empty buf */ 292 if (PICO_OK == picodata_copy_item(wa->inBuf, wa->inLen, 340 if (PICO_OK == picodata_copy_item(wa->inBuf, wa->inLen, 395 * internal inBuf 401 rv = picodata_cbGetItem(this->cbIn, wa->inBuf, 436 /* process state: process item in internal inBuf and put 441 /* ensure there is an item in inBuf and it is valid */ 442 if ((wa->inLen > 0) && picodata_is_valid_item(wa->inBuf, 448 rv = picodata_get_iteminfo(wa->inBuf, w [all...] |
H A D | picosig.c | 74 picoos_uint8 inBuf[PICOSIG_IN_BUFF_SIZE]; /* internal input buffer */ member in struct:sig_subobj 76 picoos_uint16 inReadPos, inWritePos; /* next pos to read/write from/to inBuf*/ 433 picoos_mem_copy((void *) &sig_subObj->inBuf[inReadPos 442 picoos_mem_copy((void *) &(sig_subObj->inBuf[inReadPos 461 picoos_mem_copy((void *) &(sig_subObj->inBuf[inReadPos 474 picoos_mem_copy((void *) &(sig_subObj->inBuf[inReadPos 495 picoos_mem_copy((void *) &(sig_subObj->inBuf[offset + i 503 if (sig_subObj->inBuf[inReadPos+ 3] > sig_subObj->inBuf[inReadPos+ 2]*2 + 8) { 506 picoos_mem_copy((void *) &(sig_subObj->inBuf[offse [all...] |
H A D | picocep.c | 169 picoos_uint8 inBuf[PICODATA_MAX_ITEMSIZE]; /* internal input buffer */ member in struct:cep_subobj 171 picoos_uint16 inReadPos, inWritePos; /* next pos to read/write from/to inBuf*/ 296 /* inBuf */ 1399 PICODBG_DEBUG(("state info starts at inBuf pos %i ",pos)); 1401 frames = get_pi_uint16(cep->inBuf, &pos); 1414 indlfz = get_pi_uint16(cep->inBuf, &pos); /* lfz index */ 1416 indmgc = get_pi_uint16(cep->inBuf, &pos); /* mgc index */ 1439 frames = get_pi_uint16(cep->inBuf, &pos); 1513 &(cep->inBuf[cep->inWritePos]), cep->inBufSize 1539 PICODBG_DEBUG(("getting info from inBuf i [all...] |
H A D | picopam.c | 155 picoos_uint8 inBuf[PICOPAM_IN_BUFF_SIZE]; /* internal input buffer */ member in struct:pam_subobj 157 picoos_uint16 inReadPos, inWritePos; /* next pos to read/write from/to inBuf*/ 2350 &(pam->inBuf[pam->inWritePos]), pam->inBufSize 2365 &(pam->inBuf[pam->inWritePos]), blen); 2373 }PICODBG_DEBUG(("pam_step -- item is not valid, type: %d",pam->inBuf[pam->inWritePos])); 2390 pam->inBuf[pam->inReadPos]; here we decide how to elaborate it */ 2393 if (is_pam_play_command(&(pam->inBuf[pam->inReadPos])) == TRUE) { 2395 pam->inReadPos += pam->inBuf[pam->inReadPos + 3] 2405 if (pam_check_immediate(this, &(pam->inBuf[pam->inReadPos]))) { 2410 if (pamCheckResourceLimits(this, &(pam->inBuf[pa [all...] |
H A D | picopr.c | 288 picoos_uint8 inBuf[IN_BUF_SIZE+PICODATA_ITEM_HEADSIZE]; /* internal input buffer */ member in struct:pr_subobj 3487 pr_newItem(this, pr_DynMem, &it, pr->inBuf[0], pr->inBuf[3], /*inItem*/TRUE); 3489 it->head.type = pr->inBuf[0]; 3490 it->head.info1 = pr->inBuf[1]; 3491 it->head.info2 = pr->inBuf[2]; 3492 it->head.len = pr->inBuf[3]; 3493 for (i=0; i<pr->inBuf[3]; i++) { 3494 it->data[i] = pr->inBuf[4+i]; 3496 it->data[pr->inBuf[ [all...] |
/external/icu/icu4c/source/samples/ucnv/ |
H A D | convsamp.cpp | 292 char inBuf[BUFFERSIZE]; local 323 ((count=fread(inBuf, 1, BUFFERSIZE , f)) > 0) ) 326 source = inBuf; 327 sourceLimit = inBuf + count; 392 char inBuf[BUFFERSIZE]; local 438 ((count=fread(inBuf, 1, BUFFERSIZE , f)) > 0) ) 441 source = inBuf; 442 sourceLimit = inBuf + count; 872 char inBuf[BUFFERSIZE]; local 910 ((count=fread(inBuf, 977 UChar inBuf[BUFFERSIZE]; local [all...] |
/external/icu/icu4c/source/test/cintltst/ |
H A D | putiltst.c | 548 const char *inBuf; member in struct:__anon5846 575 const char *input = STRNULL(testCases[i].inBuf); 578 result = STRNULL(findBasename(testCases[i].inBuf)); 592 const char *inBuf; member in struct:__anon5847 669 const char *input = STRNULL(testCases[i].inBuf); 675 result = STRNULL(findDirname(testCases[i].inBuf, toolutil_testBuf, testCases[i].outBufLen, &status));
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.apache.commons.el_1.0.0.v201004212143.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.help.base_3.5.2.v201011171123.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |