Lines Matching refs:destBufferLength
670 const uint32 destBufferLength = SafeUint32Add (SafeUint32Mult (len, 3), 1); in Set_UTF8() local
671 dng_memory_data buffer (destBufferLength); in Set_UTF8()
674 uint8 * const destEnd = d + destBufferLength; in Set_UTF8()
765 const uint32 destBufferLength = SafeUint32Add (len, 1); in Get_SystemEncoding() local
766 buffer.Allocate (destBufferLength); in Get_SystemEncoding()
768 memcpy (buffer.Buffer (), Get (), destBufferLength); in Get_SystemEncoding()
823 const uint32 destBufferLength = SafeUint32Add (len, 1); in Set_SystemEncoding()
824 dng_memory_data buffer (destBufferLength); in Set_SystemEncoding()
827 uint8 * const destEnd = d + destBufferLength; in Set_SystemEncoding()
1130 const uint32 destBufferLength = SafeUint32Add (count, 1); in Get_UTF16() local
1131 buffer.Allocate (destBufferLength, sizeof (uint16)); in Get_UTF16()
1134 uint16 * const destEnd = dPtr + destBufferLength; in Get_UTF16()