Searched refs:nDataLength (Results 1 - 2 of 2) sorted by relevance

/external/pdfium/core/src/fxcrt/
H A Dfx_basic_bstring.cpp307 FX_STRSIZE nDataLength = pData->m_nDataLength; local
308 m_pData = FX_AllocString(nDataLength);
310 FXSYS_memcpy32(m_pData->m_String, pData->m_String, (nDataLength + 1) * sizeof(char));
1057 FX_STRSIZE nDataLength = len - pos; local
1058 FXSYS_memmove32(m_pData->m_String, m_pData->m_String + pos, (nDataLength + 1)*sizeof(FX_CHAR));
1059 m_pData->m_nDataLength = nDataLength;
H A Dfx_basic_wstring.cpp283 FX_STRSIZE nDataLength = pData->m_nDataLength; local
284 m_pData = FX_AllocStringW(nDataLength);
286 FXSYS_memcpy32(m_pData->m_String, pData->m_String, (nDataLength + 1) * sizeof(FX_WCHAR));
641 int nDataLength = m_pData->m_nDataLength - (FX_STRSIZE)(lpsz - m_pData->m_String); local
642 FXSYS_memmove32(m_pData->m_String, lpsz, (nDataLength + 1)*sizeof(FX_WCHAR));
643 m_pData->m_nDataLength = nDataLength;

Completed in 58 milliseconds