Home
last modified time | relevance | path

Searched refs:requiredSize (Results 1 – 5 of 5) sorted by relevance

/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DDOMInputCapsule.java155 int requiredSize = Integer.parseInt(sizeString); in readByteArray() local
156 if (strings.length != requiredSize) in readByteArray()
158 + "'. size says " + requiredSize in readByteArray()
204 int requiredSize = Integer.parseInt(sizeString); in readByteArray2D() local
205 if (byteArrays.size() != requiredSize) in readByteArray2D()
208 + "Specified size " + requiredSize in readByteArray2D()
256 int requiredSize = Integer.parseInt(sizeString); in readIntArray() local
257 if (strings.length != requiredSize) in readIntArray()
259 + "'. size says " + requiredSize in readIntArray()
307 int requiredSize = Integer.parseInt(sizeString); in readIntArray2D() local
[all …]
/external/webkit/Source/JavaScriptCore/os-win32/
DWinMain.cpp31 int requiredSize = WideCharToMultiByte(CP_UTF8, 0, widecharString, length, 0, 0, 0, 0); in convertToUtf8() local
32 char* multibyteString = new char[requiredSize + 1]; in convertToUtf8()
34 WideCharToMultiByte(CP_UTF8, 0, widecharString, length, multibyteString, requiredSize, 0, 0); in convertToUtf8()
35 multibyteString[requiredSize] = '\0'; in convertToUtf8()
/external/yaffs2/yaffs2/direct/
Dyaffs_fileem2k.c75 int requiredSize; in GetBlockFileHandle() local
85 requiredSize = BLOCKS_PER_HANDLE * BLOCK_SIZE; in GetBlockFileHandle()
86 if(fSize < requiredSize){ in GetBlockFileHandle()
106 off_t requiredSize; in CheckInit() local
/external/webkit/Source/WebCore/platform/graphics/chromium/
DRenderSurfaceChromium.cpp83 IntSize requiredSize(m_contentRect.size()); in prepareContentsTexture() local
92 if (!m_contentsTexture->reserve(requiredSize, GraphicsContext3D::RGBA)) { in prepareContentsTexture()
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
DGLUtils.cpp453 const SkSize& requiredSize = renderInfo->tileSize; in paintTextureWithBitmap() local
459 if (requiredSize.equals(textureInfo->m_width, textureInfo->m_height)) in paintTextureWithBitmap()
462 if (!requiredSize.equals(bitmap.width(), bitmap.height())) { in paintTextureWithBitmap()
465 requiredSize.width(), requiredSize.height()); in paintTextureWithBitmap()