Searched refs:bufferSize (Results 126 - 150 of 279) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/core/
H A DSkStream.cpp852 const size_t bufferSize = 256 * 1024; // 256KB local
853 char buffer[bufferSize];
856 size_t bytesRead = stream->read(buffer, bufferSize);
876 const size_t bufferSize = 4096; local
877 char buffer[bufferSize];
879 size_t bytesRead = stream->read(buffer, bufferSize);
903 const size_t bufferSize = 4096; local
904 char buffer[bufferSize];
906 size_t bytesRead = stream->read(buffer, bufferSize);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrBufferAllocPool.cpp391 size_t bufferSize,
396 bufferSize,
450 size_t bufferSize,
455 bufferSize,
389 GrVertexBufferAllocPool(GrGpu* gpu, bool frequentResetHint, size_t bufferSize, int preallocBufferCnt) argument
448 GrIndexBufferAllocPool(GrGpu* gpu, bool frequentResetHint, size_t bufferSize, int preallocBufferCnt) argument
/external/deqp/modules/gles31/functional/
H A Des31fIndirectComputeDispatchTests.cpp395 SingleDispatchCase (Context& context, const char* name, const char* description, GenBuffer genBuffer, deUintptr bufferSize, deUintptr offset, const UVec3& workGroupSize, const UVec3& numWorkGroups) argument
398 m_bufferSize = bufferSize;
467 deUintptr bufferSize; member in struct:deqp::gles31::Functional::__anon20271
494 s_singleDispatchCases[ndx].bufferSize,
/external/skia/src/gpu/
H A DGrBufferAllocPool.cpp380 size_t bufferSize,
385 bufferSize,
439 size_t bufferSize,
444 bufferSize,
378 GrVertexBufferAllocPool(GrGpu* gpu, bool frequentResetHint, size_t bufferSize, int preallocBufferCnt) argument
437 GrIndexBufferAllocPool(GrGpu* gpu, bool frequentResetHint, size_t bufferSize, int preallocBufferCnt) argument
/external/svox/pico/lib/
H A Dpicoapi.h415 const pico_Int16 bufferSize,
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderingContext.cpp286 IntSize bufferSize(static_cast<int>(ceil(expandedBoundingBox.width() * transform.xScale())), static_cast<int>(ceil(expandedBoundingBox.height() * transform.yScale())));
287 if (bufferSize != imageBuffer->size())
/external/deqp/framework/opengl/
H A DgluTexture.cpp691 TextureBuffer::TextureBuffer (const RenderContext& context, deUint32 internalFormat, size_t bufferSize) argument
699 init(internalFormat, bufferSize, 0, 0, DE_NULL);
702 TextureBuffer::TextureBuffer (const RenderContext& context, deUint32 internalFormat, size_t bufferSize, size_t offset, size_t size, const void* data) argument
710 init(internalFormat, bufferSize, offset, size, data);
713 void TextureBuffer::init (deUint32 internalFormat, size_t bufferSize, size_t offset, size_t size, const void* data) argument
737 m_refBuffer.resize(bufferSize, 0);
740 deMemcpy(&m_refBuffer[0], data, (int)bufferSize);
755 m_refTexture = tcu::PixelBufferAccess(format, de::min<int>((int)maxTextureSize, (int)((m_size != 0 ? m_size : bufferSize) / format.getPixelSize())), 1, 1, &(m_refBuffer[m_offset]));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DDexDataWriter.java67 public DexDataWriter(@Nonnull OutputStream output, int filePosition, int bufferSize) { argument
68 super(output, bufferSize);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcapitst.c649 int32_t bufferSize = U_COL_SAFECLONE_BUFFERSIZE; local
673 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, NULL))
679 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || err != U_MEMORY_ALLOCATION_ERROR)
688 log_err("FAIL: Cloned Collator failed to deal correctly with null bufferSize pointer\n");
694 bufferSize = 0;
695 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) ||
696 U_FAILURE(err) || bufferSize <= 0)
701 if (U_COL_SAFECLONE_BUFFERSIZE < bufferSize)
706 if (NULL == (col = ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err)) || U_FAILURE(err))
712 if (bufferSize >
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcapitst.c647 int32_t bufferSize = U_COL_SAFECLONE_BUFFERSIZE; local
671 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, NULL))
677 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || err != U_MEMORY_ALLOCATION_ERROR)
686 log_err("FAIL: Cloned Collator failed to deal correctly with null bufferSize pointer\n");
692 bufferSize = 0;
693 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) ||
694 U_FAILURE(err) || bufferSize <= 0)
699 if (U_COL_SAFECLONE_BUFFERSIZE < bufferSize)
704 if (NULL == (col = ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err)) || U_FAILURE(err))
710 if (bufferSize >
[all...]
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h310 bufferSize(0)
365 bufferSize = data.payloadSize;
371 if (bufferSize < size)
377 bufferSize = size;
391 WebRtc_UWord32 bufferSize; member in class:webrtc::EncodedVideoData
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DTCPMessageChannel.java602 int bufferSize = 4096;
608 byte[] msg = new byte[bufferSize];
609 int nbytes = myClientInputStream.read(msg, 0, bufferSize);
H A DTLSMessageChannel.java582 int bufferSize = 4096;
588 byte[] msg = new byte[bufferSize];
589 int nbytes = myClientInputStream.read(msg, 0, bufferSize);
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_win.cpp936 DWORD bufferSize = GetGlyphOutlineW(fDDC, glyphId, GGO_NATIVE | GGO_GLYPH_INDEX, &gm, 0, NULL, &fMat22); local
937 empty = (0 == bufferSize);
1965 static void format_guid_b64(const GUID& guid, char* buffer, size_t bufferSize) {
1966 SkASSERT(bufferSize >= BASE64_GUID_ID_LEN);
1978 static HRESULT create_unique_font_name(char* buffer, size_t bufferSize) {
1983 format_guid_b64(guid, buffer, bufferSize);
2050 DWORD bufferSize = GetFontData(hdc, tables[i], 0, NULL, 0);
2051 if (bufferSize == GDI_ERROR) {
2053 bufferSize = GetFontData(hdc, tables[i], 0, NULL, 0);
2055 if (bufferSize !
[all...]
/external/skia/src/ports/
H A DSkFontHost_win.cpp936 DWORD bufferSize = GetGlyphOutlineW(fDDC, glyphId, GGO_NATIVE | GGO_GLYPH_INDEX, &gm, 0, NULL, &fMat22); local
937 empty = (0 == bufferSize);
1993 static void format_guid_b64(const GUID& guid, char* buffer, size_t bufferSize) {
1994 SkASSERT(bufferSize >= BASE64_GUID_ID_LEN);
2006 static HRESULT create_unique_font_name(char* buffer, size_t bufferSize) {
2011 format_guid_b64(guid, buffer, bufferSize);
2078 DWORD bufferSize = GetFontData(hdc, tables[i], 0, NULL, 0);
2079 if (bufferSize == GDI_ERROR) {
2081 bufferSize = GetFontData(hdc, tables[i], 0, NULL, 0);
2083 if (bufferSize !
[all...]
/external/aac/libAACdec/include/
H A Daacdecoder_lib.h684 * \param bufferSize Size of external input buffer. This argument is required because decoder-internally
697 const UINT bufferSize[],
/external/aac/libMpegTPDec/include/
H A Dtpdec_lib.h373 * \param bufferSize Size of external input buffer. This argument is required because decoder-internally
387 const UINT bufferSize,
/external/chromium_org/extensions/test/data/
H A Dserial_unittest.js28 bufferSize: BUFFER_SIZE,
84 test.assertEq(BUFFER_SIZE, connectionInfo.bufferSize);
206 test.assertEq(4096, connectionInfo.bufferSize);
325 {bufferSize: 1},
/external/deqp/framework/qphelper/
H A DqpTestLog.h156 int bufferSize; member in struct:qpEglConfigInfo_s
/external/icu/icu4c/source/i18n/
H A Dusrchimp.h66 int32_t bufferSize; member in struct:PCEBuffer
/external/nist-sip/java/gov/nist/javax/sip/
H A DSipStackImpl.java1020 String bufferSize = configurationProperties.getProperty(
1023 int bufferSizeInteger = new Integer(bufferSize).intValue();
1026 bufferSize = configurationProperties.getProperty(
1029 bufferSizeInteger = new Integer(bufferSize).intValue();
/external/aac/libFDK/include/
H A DFDK_bitstream.h575 * \param bufferSize Total size of inputBuffer array.
579 FDK_INLINE void FDKfeedBuffer (HANDLE_FDK_BITSTREAM hBitStream, const UCHAR inputBuffer [], const UINT bufferSize, UINT *bytesValid) argument
582 FDK_Feed(&hBitStream->hBitBuf, (UCHAR*)inputBuffer, bufferSize, bytesValid ) ;
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
H A Dexample.js275 var bufferSize = parseInt($('recvBufferSize').value, 10);
276 postCall('recv', handle, bufferSize, function(messageLen, message) {
/external/deqp/executor/
H A DxeTestCaseResult.hpp342 int bufferSize; member in class:xe::ri::EglConfig
376 , bufferSize (0)
/external/deqp/modules/glshared/
H A DglsTextureBufferCase.cpp828 size_t bufferSize,
835 log << TestLog::Message << "Buffer size : " << bufferSize << TestLog::EndMessage;
848 size_t bufferSize,
868 logTextureInfo(log, format, bufferSize, offset, size);
874 genRandomCoords(rng, bufferData, 0, bufferSize);
888 glu::TextureBuffer texture (renderContext, format, bufferSize, offset, size, &(bufferData[0]));
925 size_t bufferSize,
936 , m_bufferSize (bufferSize)
826 logTextureInfo(TestLog& log, deUint32 format, size_t bufferSize, size_t offset, size_t size) argument
844 runTests(tcu::TestContext& testCtx, glu::RenderContext& renderContext, de::Random& rng, deUint32 format, size_t bufferSize, size_t offset, size_t size, RenderBits preRender, glu::ShaderProgram* preRenderProgram, ModifyBits modifyType, RenderBits postRender, glu::ShaderProgram* postRenderProgram) argument
922 TextureBufferCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, deUint32 format, size_t bufferSize, size_t offset, size_t size, RenderBits preRender, ModifyBits modify, RenderBits postRender, const char* name, const char* description) argument

Completed in 6531 milliseconds

1234567891011>>