Home
last modified time | relevance | path

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

/external/icu4c/test/cintltst/
Dncnvfbts.c143 int32_t realBufferSize; in testConvertFromUnicode() local
181 realBufferSize = (sizeof(junkout)/sizeof(junkout[0])); in testConvertFromUnicode()
182 realBufferEnd = junkout + realBufferSize; in testConvertFromUnicode()
185 if ( gOutBufferSize != realBufferSize ) in testConvertFromUnicode()
312 int32_t realBufferSize; in testConvertToUnicode() local
339 realBufferSize = (sizeof(junkout)/sizeof(junkout[0])); in testConvertToUnicode()
340 realBufferEnd = junkout + realBufferSize; in testConvertToUnicode()
349 if ( gOutBufferSize != realBufferSize ) in testConvertToUnicode()
Dnccbtst.c2663 int32_t realBufferSize; in testConvertFromUnicode() local
2714 realBufferSize = (sizeof(junkout)/sizeof(junkout[0])); in testConvertFromUnicode()
2715 realBufferEnd = junkout + realBufferSize; in testConvertFromUnicode()
2718 if ( gOutBufferSize != realBufferSize ) in testConvertFromUnicode()
2871 int32_t realBufferSize; in testConvertToUnicode() local
2898 realBufferSize = (sizeof(junkout)/sizeof(junkout[0])); in testConvertToUnicode()
2899 realBufferEnd = junkout + realBufferSize; in testConvertToUnicode()
2918 if ( gOutBufferSize != realBufferSize ) in testConvertToUnicode()
3060 int32_t realBufferSize; in testConvertFromUnicodeWithContext() local
3111 realBufferSize = (sizeof(junkout)/sizeof(junkout[0])); in testConvertFromUnicodeWithContext()
[all …]
Dncnvtst.c1206 int32_t realBufferSize; in testConvertFromU() local
1244 realBufferSize = (sizeof(junkout)/sizeof(junkout[0])); in testConvertFromU()
1245 realBufferEnd = junkout + realBufferSize; in testConvertFromU()
1248 if ( gOutBufferSize != realBufferSize ) in testConvertFromU()
1381 int32_t realBufferSize; in testConvertToU() local
1418 realBufferSize = (sizeof(junkout)/sizeof(junkout[0])); in testConvertToU()
1419 realBufferEnd = junkout + realBufferSize; in testConvertToU()
1422 if ( gOutBufferSize != realBufferSize ) in testConvertToU()
Dnucnvtst.c388 int32_t realBufferSize; in testConvertFromU() local
421 realBufferSize = (sizeof(junkout)/sizeof(junkout[0])); in testConvertFromU()
422 realBufferEnd = junkout + realBufferSize; in testConvertFromU()
425 if ( gOutBufferSize != realBufferSize || gInBufferSize != NEW_MAX_BUFFER ) in testConvertFromU()
549 int32_t realBufferSize; in testConvertToU() local
579 realBufferSize = (sizeof(junkout)/sizeof(junkout[0])); in testConvertToU()
580 realBufferEnd = junkout + realBufferSize; in testConvertToU()
583 if ( gOutBufferSize != realBufferSize || gInBufferSize != NEW_MAX_BUFFER ) in testConvertToU()
/external/webkit/Source/WebKit2/Platform/CoreIPC/win/
DConnectionWin.cpp173 size_t realBufferSize = m_readBuffer.size() - sizeof(MessageID); in readEventHandler() local
175 unsigned messageID = *reinterpret_cast<unsigned*>(m_readBuffer.data() + realBufferSize); in readEventHandler()
177 …MessageID::fromInt(messageID), adoptPtr(new ArgumentDecoder(m_readBuffer.data(), realBufferSize))); in readEventHandler()