Searched defs:tempBuffer (Results 1 - 11 of 11) sorted by relevance

/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DHillHeightMap.java126 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) { argument
199 tempBuffer[i][j] += height;
H A DMidpointDisplacementHeightMap.java123 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, in argument
201 doDiamondStep(float[][] tempBuffer, int[] coords, int stepSize, float offsetRange, Random random) argument
[all...]
H A DFaultHeightMap.java138 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) { argument
162 addLineFault(tempBuffer, random, faultHeight, range);
165 addCircleFault(tempBuffer, random, faultHeight, range);
170 protected void addLineFault(float[][] tempBuffer, Random random, float faultHeight, float range) { argument
181 tempBuffer[i][j] += calcHeight(dist, random, faultHeight, range);
186 protected void addCircleFault(float[][] tempBuffer, Random random, float faultHeight, float range) { argument
209 tempBuffer[
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dmsfmrgts.cpp101 UnicodeString tempBuffer; local
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, po
195 UnicodeString tempBuffer; local
[all...]
/external/lzma/CPP/7zip/Archive/7z/
H A D7zEncode.cpp167 CMyComPtr<ISequentialOutStream> tempBuffer = tempBufferSpec; local
169 tempBuffers.Add(tempBuffer);
/external/mesa3d/src/mesa/main/
H A Dimage.c464 GLuint *tempBuffer; local
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
[all...]
/external/icu/icu4c/source/common/
H A Duloc.cpp832 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
836 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), status);
1554 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
1562 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), status);
1626 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
1641 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), err);
1977 char tempBuffer[ULOC_FULLNAME_CAPACIT
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_create.cpp468 CFX_ByteTextBuf tempBuffer; local
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
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 283 milliseconds