HomeSort by relevance Sort by last modified time
    Searched refs:m_pHashTable (Results 1 - 4 of 4) sorted by null

  /frameworks/compile/mclinker/include/mcld/ADT/
HashIterator.h 29 : m_pHashTable(NULL), m_Index(0), m_HashValue(0), m_EndIndex(0) {}
32 : m_pHashTable(pTable) {
34 m_EndIndex = m_Index = m_HashValue % m_pHashTable->m_NumOfBuckets;
37 bucket_type& bucket = m_pHashTable->m_Buckets[m_Index];
47 if (m_Index == m_pHashTable->m_NumOfBuckets)
58 : m_pHashTable(pCopy.m_pHashTable),
64 m_pHashTable = pCopy.m_pHashTable;
72 if (m_pHashTable == NULL
    [all...]
  /external/pdfium/core/src/fxcrt/
fx_basic_maps.cpp 18 : m_pHashTable(NULL),
27 FX_Free(m_pHashTable);
28 m_pHashTable = NULL;
44 ASSERT(m_pHashTable);
49 if ((pAssocRet = m_pHashTable[nBucket]) != NULL)
58 if ((pAssocNext = m_pHashTable[nBucket]) != NULL) {
88 if (!m_pHashTable) {
93 pAssoc->pNext = m_pHashTable[nHash];
94 m_pHashTable[nHash] = pAssoc;
101 if (!m_pHashTable) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxtmpl.h 677 CAssoc **m_pHashTable;
707 m_pHashTable = NULL;
720 if(m_pHashTable!=NULL) {
721 delete[] m_pHashTable;
722 m_pHashTable = NULL;
725 m_pHashTable = new CAssoc *[nHashSize];
726 if(!m_pHashTable) return;
727 memset(m_pHashTable,0,sizeof(CAssoc*) *nHashSize);
735 if(m_pHashTable!=NULL) {
738 for(pAssoc = m_pHashTable[nHash]; pAssoc!=NULL
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_basic.h 687 CAssoc** m_pHashTable;

Completed in 152 milliseconds