diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-06-11 12:17:45 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-06-11 12:17:45 -0700 |
commit | 6581175666ba4e1eb2826142376cbfe4495c6e76 (patch) | |
tree | 38770d7cf709979b0d493a6ca0367a0cbc080736 /xfa/src/fxbarcode/common/BC_CommonByteArray.cpp | |
parent | 05f11bcf48a630b53cac603538bb75f21ad4231d (diff) | |
download | pdfium-6581175666ba4e1eb2826142376cbfe4495c6e76.tar.xz |
Merge to XFA: Kill FXSYS_mem{cpy,cmp,set.move}{32,8}.
Only manual merge was core/src/fpdfapi/fpdf_parser/fpdf_parser_objects.cpp
follwed by scripts.
Original Review URL: https://codereview.chromium.org/1179693003.
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1179953002.
Diffstat (limited to 'xfa/src/fxbarcode/common/BC_CommonByteArray.cpp')
-rw-r--r-- | xfa/src/fxbarcode/common/BC_CommonByteArray.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xfa/src/fxbarcode/common/BC_CommonByteArray.cpp b/xfa/src/fxbarcode/common/BC_CommonByteArray.cpp index 4b9667e406..bec79d2ba0 100644 --- a/xfa/src/fxbarcode/common/BC_CommonByteArray.cpp +++ b/xfa/src/fxbarcode/common/BC_CommonByteArray.cpp @@ -32,14 +32,14 @@ CBC_CommonByteArray::CBC_CommonByteArray(int32_t size) {
m_size = size;
m_bytes = FX_Alloc(uint8_t, size);
- FXSYS_memset32(m_bytes, 0, size);
+ FXSYS_memset(m_bytes, 0, size);
m_index = 0;
}
CBC_CommonByteArray::CBC_CommonByteArray(uint8_t* byteArray, int32_t size)
{
m_size = size;
m_bytes = FX_Alloc(uint8_t, size);
- FXSYS_memcpy32(m_bytes, byteArray, size);
+ FXSYS_memcpy(m_bytes, byteArray, size);
m_index = size;
}
CBC_CommonByteArray::~CBC_CommonByteArray()
@@ -80,9 +80,9 @@ void CBC_CommonByteArray::Reserve(int32_t capacity) {
if (m_bytes == NULL || m_size < capacity) {
uint8_t *newArray = FX_Alloc(uint8_t, capacity);
- FXSYS_memset32(newArray, 0, capacity);
+ FXSYS_memset(newArray, 0, capacity);
if (m_bytes != NULL) {
- FXSYS_memcpy32(newArray, m_bytes, m_size);
+ FXSYS_memcpy(newArray, m_bytes, m_size);
FX_Free( m_bytes );
}
m_bytes = newArray;
@@ -96,7 +96,7 @@ void CBC_CommonByteArray::Set(uint8_t* source, int32_t offset, int32_t count) }
m_bytes = FX_Alloc(uint8_t, count);
m_size = count;
- FXSYS_memcpy32(m_bytes, source + offset, count);
+ FXSYS_memcpy(m_bytes, source + offset, count);
m_index = count;
}
void CBC_CommonByteArray::Set(CFX_ByteArray* source, int32_t offset, int32_t count)
|