Searched refs:m_bufferedBytes (Results 1 – 7 of 7) sorted by relevance
/external/webkit/Source/WebCore/platform/text/mac/ |
D | TextCodecMac.cpp | 143 ASSERT(m_numBufferedBytes < sizeof(m_bufferedBytes)); in decode() 144 const int spaceInBuffer = sizeof(m_bufferedBytes) - m_numBufferedBytes; in decode() 147 memcpy(m_bufferedBytes + m_numBufferedBytes, inputBuffer, bytesToPutInBuffer); in decode() 150 …status = TECConvertText(m_converterTEC, m_bufferedBytes, m_numBufferedBytes + bytesToPutInBuffer, … in decode() 157 … gave a kTECPartialCharErr but read none of the %zu bytes in the buffer", sizeof(m_bufferedBytes)); in decode() 241 memcpy(m_bufferedBytes, sourcePointer, sourceLength); in decode()
|
D | TextCodecMac.h | 59 unsigned char m_bufferedBytes[16]; // bigger than any single multi-byte character variable
|
/external/webkit/Source/WebCore/platform/text/brew/ |
D | TextCodecBrew.cpp | 91 memcpy(prefixedBytes.data(), m_bufferedBytes, m_numBufferedBytes); in decode() 141 memcpy(m_bufferedBytes, src, m_numBufferedBytes); in decode()
|
D | TextCodecBrew.h | 50 unsigned char m_bufferedBytes[16]; // bigger than any single multi-byte character variable
|
/external/webkit/Source/WebCore/platform/text/gtk/ |
D | TextCodecGtk.h | 59 unsigned char m_bufferedBytes[16]; // bigger than any single multi-byte character variable
|
D | TextCodecGtk.cpp | 462 memcpy(prefixedBytes, m_bufferedBytes, m_numBufferedBytes); in decode() 486 memcpy(m_bufferedBytes, input, inputLength); in decode()
|
/external/webkit/Source/WebCore/platform/text/ |
D | TextCodecICU.h | 62 unsigned char m_bufferedBytes[16]; // bigger than any single multi-byte character variable
|