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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DThreadSafeDataTransportTest.cpp47 SharedBuffer* tempBuffer = 0; local
49 transport.data(&tempBuffer, &allDataReceived);
72 SharedBuffer* tempBuffer = 0; local
74 transport.data(&tempBuffer, &allDataReceived);
76 EXPECT_FALSE(memcmp(testString3, tempBuffer->data(), tempBuffer->size()));
/external/chromium_org/third_party/icu/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/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/chromium_org/third_party/mesa/src/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/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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DDexWriter.java621 ByteBuffer tempBuffer = ByteBuffer.allocate(65536);
622 tempBuffer.order(ByteOrder.LITTLE_ENDIAN);
633 if (maxSize > tempBuffer.capacity()) {
634 tempBuffer = ByteBuffer.allocate(maxSize);
635 tempBuffer.order(ByteOrder.LITTLE_ENDIAN);
638 tempBuffer.clear();
648 tempBuffer.putInt(fieldSection.getFieldIndex(field));
649 tempBuffer.putInt(annotationSetSection.getItemOffset(fieldAnnotationsKey));
657 tempBuffer.putInt(methodSection.getMethodIndex(method));
658 tempBuffer
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Duloc.cpp833 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
837 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), status);
1555 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
1563 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), status);
1627 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
1642 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), err);
1978 char tempBuffer[ULOC_FULLNAME_CAPACIT
[all...]
/external/icu/icu4c/source/common/
H A Duloc.cpp833 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
837 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), status);
1555 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
1563 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), status);
1627 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
1642 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), err);
1978 char tempBuffer[ULOC_FULLNAME_CAPACIT
[all...]
/external/lzma/CPP/7zip/Archive/7z/
H A D7zEncode.cpp167 CMyComPtr<ISequentialOutStream> tempBuffer = tempBufferSpec; local
169 tempBuffers.Add(tempBuffer);
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_create.cpp471 CFX_ByteTextBuf tempBuffer; local
474 tempBuffer << m_ObjNumArray.ElementAt(i) << FX_BSTRC(" ") << m_OffsetArray.ElementAt(i) << FX_BSTRC(" ");
493 if ((len = pFile->AppendDWord((FX_DWORD)tempBuffer.GetLength())) < 0) {
501 if ((len = pFile->AppendDWord((FX_DWORD)(tempBuffer.GetLength() + m_Buffer.GetLength()))) < 0) {
508 if (pFile->AppendBlock(tempBuffer.GetBuffer(), tempBuffer.GetLength()) < 0) {
514 offset += len + tempBuffer.GetLength() + m_Buffer.GetLength();
516 tempBuffer << m_Buffer;
518 encoder.Initialize(tempBuffer.GetBuffer(), tempBuffer
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/src/org/webrtc/voiceengine/test/
H A DAndroidTest.java1053 short[] tempBuffer = new short[160]; // Only used for native case
1057 rdSamples = _ar.read(tempBuffer, 0, 160);
1058 // audioLoop(tempBuffer, 160); // Insert into native layer
/external/yaffs2/yaffs2/
H A Dyaffs_guts.c189 if (dev->tempBuffer[i].line == 0) {
190 dev->tempBuffer[i].line = lineNo;
194 dev->tempBuffer[j].maxLine =
195 dev->tempBuffer[j].line;
198 return dev->tempBuffer[i].buffer;
206 T(YAFFS_TRACE_BUFFERS, (TSTR(" %d "), dev->tempBuffer[i].line));
225 if (dev->tempBuffer[i].buffer == buffer) {
226 dev->tempBuffer[i].line = 0;
249 if (dev->tempBuffer[i].buffer == buffer)
6419 dev->tempBuffer[
[all...]
H A Dyaffs_guts.h739 yaffs_TempBuffer tempBuffer[YAFFS_N_TEMP_BUFFERS]; member in struct:yaffs_DeviceStruct
/external/deqp/modules/gles31/functional/
H A Des31fBasicComputeShaderTests.cpp721 const Buffer tempBuffer (m_context.getRenderContext());
737 gl.bindBuffer(GL_SHADER_STORAGE_BUFFER, *tempBuffer);
739 gl.bindBufferBase(GL_SHADER_STORAGE_BUFFER, 1, *tempBuffer);
/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 352 milliseconds