Searched refs:inPos (Results 1 - 17 of 17) sorted by relevance

/external/deqp/framework/delibs/destream/
H A DdeRingbuffer.c46 deInt32 inPos; member in struct:deRingbuffer_s
88 ringbuffer->inPos = 0;
135 if (ringbuffer->inPos == 0)
140 writeSize = deMin32(ringbuffer->blockSize - ringbuffer->inPos, bufSize - *written);
141 dst = ringbuffer->buffer + ringbuffer->blockSize * ringbuffer->inBlock + ringbuffer->inPos;
146 ringbuffer->inPos += writeSize;
151 if (ringbuffer->inPos == ringbuffer->blockSize)
153 ringbuffer->inPos = 0;
172 if (ringbuffer->inPos == 0)
175 ringbuffer->inPos
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DVertexBuffer.java678 int inPos = elementIndex * components;
682 inPos *= 2;
693 bin.put(inPos + elementPos, (Byte)val);
698 sin.put(inPos + elementPos, (Short)val);
703 iin.put(inPos + elementPos, (Integer)val);
707 fin.put(inPos + elementPos, (Float)val);
723 int inPos = elementIndex * components;
727 inPos *= 2;
738 return bin.get(inPos + elementPos);
742 return sin.get(inPos
[all...]
H A DBatchNode.java484 FloatBuffer inPos = (FloatBuffer) inBuf.getData();
486 doCopyBuffer(inPos, globalVertIndex, outPos, 3);
488 FloatBuffer inPos = (FloatBuffer) inBuf.getData();
490 doCopyBuffer(inPos, globalVertIndex, outPos, compsForBuf[bufType]);
/external/lzma/C/
H A DBcj2.c41 SizeT inPos = 0, outPos = 0; local
65 SizeT limit = size0 - inPos;
70 Byte b = buf0[inPos];
74 inPos++;
82 b = buf0[inPos++];
/external/lzma/C/Util/Lzma/
H A DLzmaUtil.c61 size_t inPos = 0, inSize = 0, outPos = 0; local
65 if (inPos == inSize)
69 inPos = 0;
73 SizeT inProcessed = inSize - inPos;
84 inBuf + inPos, &inProcessed, finishMode, &status);
85 inPos += inProcessed;
/external/svox/pico/lib/
H A Dpicotrns.c148 picoos_int32 inPos; /**< corresponding position in input string */ member in struct:picotrns_altDesc
311 if (altDesc->inPos < inSeqLen) {
312 inSym = inSeq[altDesc->inPos].sym;
318 (*outRefPos) = inSeq[altDesc->inPos].pos;
320 (*nextInPos) = altDesc->inPos + 1;
324 picokfst_kfstStartPairSearch(fst,inSeq[altDesc->inPos].sym,& inSymFound,& altDesc->searchState);
329 PICOTRNS_PRINTSYM(NULL, inSeq[altDesc->inPos].sym);
346 (*outRefPos) = inSeq[altDesc->inPos].pos;
347 (*nextInPos) = altDesc->inPos + 1;
367 (*nextInPos) = altDesc->inPos;
[all...]
H A Dpicosa.c786 inPos start position of current grapheme (0..inLen-1)
795 const picoos_uint8 inPos,
806 pos = inPos;
791 saGetNrVowel(register picodata_ProcessingUnit this, register sa_subobj_t *sa, const picoos_uint8 *sInChar, const picoos_uint16 inLen, const picoos_uint8 inPos, picoos_uint8 *nVow, picoos_uint8 *nVord) argument
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DH264TrackImpl.java327 int inPos = 0;
329 while (inPos < data.length) {
330 if (data[inPos] == 0 && data[inPos + 1] == 0 && data[inPos + 2] == 3) {
333 inPos += 3;
336 output[outPos] = data[inPos];
337 inPos++;
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DGeometryBatchFactory.java205 FloatBuffer inPos = (FloatBuffer) inBuf.getDataReadOnly();
207 doTransformVerts(inPos, globalVertIndex, outPos, worldMatrix);
209 FloatBuffer inPos = (FloatBuffer) inBuf.getDataReadOnly();
211 doTransformNorms(inPos, globalVertIndex, outPos, worldMatrix);
213 FloatBuffer inPos = (FloatBuffer) inBuf.getDataReadOnly();
216 doTransformTangents(inPos, globalVertIndex, components, outPos, worldMatrix);
H A DTextureAtlas.java447 FloatBuffer inPos = (FloatBuffer) inBuf.getData();
449 tile.transformTextureCoords(inPos, offset, outPos);
/external/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp491 UInt32 inPos = 0; local
506 if (inPos == inSize)
508 inPos = inSize = 0;
512 SizeT inLen = inSize - inPos;
517 xzu.InBuf + inPos, &inLen,
520 // printf("\n_inPos = %6d inLen = %5d, outLen = %5d", inPos, inLen, outLen);
522 inPos += (UInt32)inLen;
/external/sonic/
H A DSonic.java746 int inPos,
750 short left = in[inPos*numChannels];
751 short right = in[inPos*numChannels + numChannels];
744 interpolate( short in[], int inPos, int oldSampleRate, int newSampleRate) argument
/external/icu/icu4c/source/test/intltest/
H A Dtzfmttst.cpp727 int32_t inPos; member in struct:__anon5933
739 // text inPos locale style
837 ParsePosition pos(DATA[i].inPos);
858 errln((UnicodeString)"Fail: " + errMsg + " [text=" + DATA[i].text + ", pos=" + DATA[i].inPos + ", style=" + DATA[i].style + "]");
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DTimeZoneFormatTest.java626 int inPos = (Integer)test[1];
636 ParsePosition pos = new ParsePosition(inPos);
653 errln("Fail: " + errMsg + " [text=" + text + ", pos=" + inPos + ", style=" + style + "]");
/external/robolectric/lib/main/
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/owasp/sanitizer/lib/commons-codec-1.4/
H A Dcommons-codec-1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...

Completed in 546 milliseconds