Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcrt/
Dfx_basic_maps.cpp174 static void _CompactStringRelease(_CompactString* pCompact) { in _CompactStringRelease() argument
175 if (pCompact->m_CompactLen == kHasAllocatedBufferLength) { in _CompactStringRelease()
176 FX_Free(pCompact->m_pBuffer); in _CompactStringRelease()
179 static FX_BOOL _CompactStringSame(_CompactString* pCompact, in _CompactStringSame() argument
183 if (pCompact->m_CompactLen != len) { in _CompactStringSame()
186 return FXSYS_memcmp(&pCompact->m_LenHigh, pStr, len) == 0; in _CompactStringSame()
188 if (pCompact->m_CompactLen != kHasAllocatedBufferLength || in _CompactStringSame()
189 pCompact->m_LenHigh * 256 + pCompact->m_LenLow != len) { in _CompactStringSame()
192 return FXSYS_memcmp(pCompact->m_pBuffer, pStr, len) == 0; in _CompactStringSame()
194 static void _CompactStringStore(_CompactString* pCompact, in _CompactStringStore() argument
[all …]