Home | History | Annotate | Download | only in xfa

Lines Matching refs:iBytes

115   int32_t iBytes;
424 int32_t iBytes;
425 if (GetMapModuleBuffer(pKey, pValue, iBytes, true) &&
426 iBytes == sizeof(CXFA_Measurement)) {
577 int32_t iBytes = 0;
579 if (GetMapModuleBuffer(pKey, pData, iBytes, true) &&
580 iBytes == sizeof(void*)) {
581 memcpy(&pData, pData, iBytes);
992 int32_t iBytes;
993 if (!GetMapModuleBuffer(pKey, pValue, iBytes, true))
997 int32_t iChars = iBytes / sizeof(wchar_t);
1005 int32_t iBytes,
1010 FX_Alloc(uint8_t, sizeof(XFA_MAPDATABLOCK) + iBytes));
1011 } else if (pBuffer->iBytes != iBytes) {
1016 FX_Realloc(uint8_t, pBuffer, sizeof(XFA_MAPDATABLOCK) + iBytes));
1025 pBuffer->iBytes = iBytes;
1026 memcpy(pBuffer->GetData(), pValue, iBytes);
1031 int32_t& iBytes,
1051 iBytes = pBuffer->iBytes;
1124 uint8_t, sizeof(XFA_MAPDATABLOCK) + pSrcBuffer->iBytes);
1125 } else if (pDstBuffer->iBytes != pSrcBuffer->iBytes) {
1130 uint8_t, pDstBuffer, sizeof(XFA_MAPDATABLOCK) + pSrcBuffer->iBytes);
1138 pDstBuffer->iBytes = pSrcBuffer->iBytes;
1139 memcpy(pDstBuffer->GetData(), pSrcBuffer->GetData(), pSrcBuffer->iBytes);