Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "core/fxcrt/include/fx_basic.h" | 7 #include "core/fxcrt/include/fx_basic.h" |
| 8 #include "core/fxcrt/plex.h" | 8 #include "core/fxcrt/plex.h" |
| 9 | 9 |
| 10 CFX_MapPtrToPtr::CFX_MapPtrToPtr(int nBlockSize) | 10 CFX_MapPtrToPtr::CFX_MapPtrToPtr(int nBlockSize) |
| 11 : m_pHashTable(NULL), | 11 : m_pHashTable(NULL), |
| 12 m_nHashTableSize(17), | 12 m_nHashTableSize(17), |
| 13 m_nCount(0), | 13 m_nCount(0), |
| 14 m_pFreeList(NULL), | 14 m_pFreeList(NULL), |
| 15 m_pBlocks(NULL), | 15 m_pBlocks(NULL), |
| 16 m_nBlockSize(nBlockSize) { | 16 m_nBlockSize(nBlockSize) { |
| 17 ASSERT(m_nBlockSize > 0); | 17 ASSERT(m_nBlockSize > 0); |
| 18 } | 18 } |
| 19 void CFX_MapPtrToPtr::RemoveAll() { | 19 void CFX_MapPtrToPtr::RemoveAll() { |
| 20 FX_Free(m_pHashTable); | 20 FX_Free(m_pHashTable); |
| 21 m_pHashTable = NULL; | 21 m_pHashTable = NULL; |
| 22 m_nCount = 0; | 22 m_nCount = 0; |
| 23 m_pFreeList = NULL; | 23 m_pFreeList = NULL; |
| 24 m_pBlocks->FreeDataChain(); | 24 if (m_pBlocks) |
|
Tom Sepez
2016/05/19 17:02:01
ditto: conditionalize NULL assign, nullptrs.
Lei Zhang
2016/05/19 20:48:50
Done.
| |
| 25 m_pBlocks->FreeDataChain(); | |
| 25 m_pBlocks = NULL; | 26 m_pBlocks = NULL; |
| 26 } | 27 } |
| 27 CFX_MapPtrToPtr::~CFX_MapPtrToPtr() { | 28 CFX_MapPtrToPtr::~CFX_MapPtrToPtr() { |
| 28 RemoveAll(); | 29 RemoveAll(); |
| 29 ASSERT(m_nCount == 0); | 30 ASSERT(m_nCount == 0); |
| 30 } | 31 } |
| 31 uint32_t CFX_MapPtrToPtr::HashKey(void* key) const { | 32 uint32_t CFX_MapPtrToPtr::HashKey(void* key) const { |
| 32 return ((uint32_t)(uintptr_t)key) >> 4; | 33 return ((uint32_t)(uintptr_t)key) >> 4; |
| 33 } | 34 } |
| 34 void CFX_MapPtrToPtr::GetNextAssoc(FX_POSITION& rNextPosition, | 35 void CFX_MapPtrToPtr::GetNextAssoc(FX_POSITION& rNextPosition, |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 147 } | 148 } |
| 148 void CFX_MapPtrToPtr::FreeAssoc(CFX_MapPtrToPtr::CAssoc* pAssoc) { | 149 void CFX_MapPtrToPtr::FreeAssoc(CFX_MapPtrToPtr::CAssoc* pAssoc) { |
| 149 pAssoc->pNext = m_pFreeList; | 150 pAssoc->pNext = m_pFreeList; |
| 150 m_pFreeList = pAssoc; | 151 m_pFreeList = pAssoc; |
| 151 m_nCount--; | 152 m_nCount--; |
| 152 ASSERT(m_nCount >= 0); | 153 ASSERT(m_nCount >= 0); |
| 153 if (m_nCount == 0) { | 154 if (m_nCount == 0) { |
| 154 RemoveAll(); | 155 RemoveAll(); |
| 155 } | 156 } |
| 156 } | 157 } |
| OLD | NEW |