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

1 2 3

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_TransRecBlockCoef_inter.c 86 OMX_S16 tempBuffer[72];
91 pTempBuffer = armAlignTo16Bytes(tempBuffer);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
GZIPSerializer.java 85 ByteBuffer tempBuffer = ByteBuffer.allocate(512000);
86 Serializer.writeClassAndObject(tempBuffer, message);
91 gzipOutput.write(tempBuffer.array());
ZIPSerializer.java 92 ByteBuffer tempBuffer = ByteBuffer.allocate(512000);
93 Serializer.writeClassAndObject(tempBuffer, message);
102 zipOutput.write(tempBuffer.array());
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
FluidSimHeightMap.java 148 float[][] tempBuffer = new float[2][size * size];
159 tempBuffer[0][j + i * size] = tempBuffer[1][j + i * size] = randomRange(random, minInitialHeight, maxInitialHeight);
175 oldBuffer = tempBuffer[1 - curBuf];
176 newBuffer = tempBuffer[curBuf];
214 heightData[x + y * size] = (float) (tempBuffer[curBuf][x + y * size]);
HillHeightMap.java 126 float[][] tempBuffer = new float[size][size];
131 addHill(tempBuffer, random);
137 setHeightAtPoint((float) tempBuffer[i][j], j, i);
154 * @param tempBuffer
159 protected void addHill(float[][] tempBuffer, Random random) {
199 tempBuffer[i][j] += height;
MidpointDisplacementHeightMap.java 123 float[][] tempBuffer = new float[size][size];
126 tempBuffer[0][0] = random.nextFloat();
127 tempBuffer[0][size - 1] = random.nextFloat();
128 tempBuffer[size - 1][0] = random.nextFloat();
129 tempBuffer[size - 1][size - 1] = random.nextFloat();
136 nextCoords = doSquareStep(tempBuffer, nextCoords, stepSize, offsetRange, random);
140 nextCoords = doDiamondStep(tempBuffer, nextCoords, stepSize, offsetRange, random);
148 setHeightAtPoint((float) tempBuffer[i][j], j, i);
162 * @param tempBuffer the temprary heightmap
169 protected int[] doSquareStep(float[][] tempBuffer, int[] coords, int stepSize, float offsetRange, Random random) {
    [all...]
ParticleDepositionHeightMap.java 137 float[][] tempBuffer = new float[size][size];
184 tempBuffer[x][y] += 1;
206 if (tempBuffer[tx][ty] + 1.0f < tempBuffer[sx][sy]) {
207 tempBuffer[tx][ty] += 1.0f;
208 tempBuffer[sx][sy] -= 1.0f;
220 if (tempBuffer[sx][sy] > tempBuffer[calderaX][calderaY]) {
228 calderaStartPoint = tempBuffer[calderaX][calderaY];
260 if (tempBuffer[calderaX][calderaY] > cutoff
    [all...]
FaultHeightMap.java 138 float[][] tempBuffer = new float[size][size];
142 addFault(tempBuffer, random);
147 setHeightAtPoint(tempBuffer[i][j], i, j);
157 protected void addFault(float[][] tempBuffer, Random random) {
162 addLineFault(tempBuffer, random, faultHeight, range);
165 addCircleFault(tempBuffer, random, faultHeight, range);
170 protected void addLineFault(float[][] tempBuffer, Random random, float faultHeight, float range) {
181 tempBuffer[i][j] += calcHeight(dist, random, faultHeight, range);
186 protected void addCircleFault(float[][] tempBuffer, Random random, float faultHeight, float range) {
209 tempBuffer[i][j] += calcHeight(dist, random, faultHeight, range);
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zEncode.cpp 167 CMyComPtr<ISequentialOutStream> tempBuffer = tempBufferSpec;
169 tempBuffers.Add(tempBuffer);
  /external/mesa3d/src/mesa/main/
image.c 464 GLuint *tempBuffer;
467 tempBuffer = malloc(count * MAX_PIXEL_BYTES);
468 if (!tempBuffer)
477 GLushort (*dst2)[4] = (GLushort (*)[4]) (useTemp ? tempBuffer : dst);
488 memcpy(dst, tempBuffer, count * 4 * sizeof(GLushort));
492 GLfloat (*dst4)[4] = (GLfloat (*)[4]) (useTemp ? tempBuffer : dst);
504 memcpy(dst, tempBuffer, count * 4 * sizeof(GLfloat));
510 GLubyte (*dst1)[4] = (GLubyte (*)[4]) (useTemp ? tempBuffer : dst);
521 memcpy(dst, tempBuffer, count * 4 * sizeof(GLubyte));
525 GLfloat (*dst4)[4] = (GLfloat (*)[4]) (useTemp ? tempBuffer : dst)
    [all...]
  /external/icu/icu4c/source/test/intltest/
msfmrgts.cpp 101 UnicodeString tempBuffer;
103 tempBuffer = messageFormatter->format(params, 2, tempBuffer, pos, status);
104 if( tempBuffer != "Message with param:BUG" || failure(status, "messageFormat->format"))
106 logln("Formatted with one extra param : " + tempBuffer);
119 //tempBuffer = messageFormatter->format(NULL, 1, tempBuffer, FieldPosition(FieldPosition::DONT_CARE), status);
120 tempBuffer.remove();
121 tempBuffer = messageFormatter->format(NULL, 0, tempBuffer, pos, status)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
MessageRegression.java 75 String tempBuffer = messageFormatter.format(paramArray);
76 if (!tempBuffer.equals("Message with param:BUG"))
78 logln("Formatted with one extra param : " + tempBuffer);
82 tempBuffer = messageFormatter.format(null);
83 if (!tempBuffer.equals("Message without param"))
85 logln("Formatted with no params : " + tempBuffer);
87 tempBuffer = messageFormatter.format(paramArray);
88 if (!tempBuffer.equals("Message without param"))
89 errln("Formatted with arguments > subsitution failed. result = " + tempBuffer.toString());
90 logln("Formatted with extra params : " + tempBuffer);
    [all...]
  /external/icu/icu4c/source/common/
uloc.cpp     [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_create.cpp 468 CFX_ByteTextBuf tempBuffer;
471 tempBuffer << m_ObjNumArray.ElementAt(i) << FX_BSTRC(" ") << m_OffsetArray.ElementAt(i) << FX_BSTRC(" ");
490 if ((len = pFile->AppendDWord((FX_DWORD)tempBuffer.GetLength())) < 0) {
498 if ((len = pFile->AppendDWord((FX_DWORD)(tempBuffer.GetLength() + m_Buffer.GetLength()))) < 0) {
505 if (pFile->AppendBlock(tempBuffer.GetBuffer(), tempBuffer.GetLength()) < 0) {
511 offset += len + tempBuffer.GetLength() + m_Buffer.GetLength();
513 tempBuffer << m_Buffer;
515 encoder.Initialize(tempBuffer.GetBuffer(), tempBuffer.GetLength(), pCreator->m_bCompress)
    [all...]
  /frameworks/base/libs/hwui/
PathTessellator.cpp     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/tests/
WmaDecTest.c     [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetISO2022.java     [all...]
  /prebuilts/devtools/tools/lib/
sdkmanager.jar 
ddmlib.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/
ddmlib-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.0/
ddmlib-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.2/
ddmlib-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.0/
ddmlib-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.1/
ddmlib-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.3/
ddmlib-22.5.3.jar 

Completed in 944 milliseconds

1 2 3