Home | History | Annotate | Download | only in fxcrt

Lines Matching refs:m_pHashTable

19     , m_pHashTable(NULL)

30 if (m_pHashTable) {
31 FX_Allocator_Free(m_pAllocator, m_pHashTable);
32 m_pHashTable = NULL;
50 ASSERT(m_pHashTable != NULL);
55 if ((pAssocRet = m_pHashTable[nBucket]) != NULL) {
63 if ((pAssocNext = m_pHashTable[nBucket]) != NULL) {
96 if (m_pHashTable == NULL) {
101 pAssoc->pNext = m_pHashTable[nHash];
102 m_pHashTable[nHash] = pAssoc;
110 if (m_pHashTable == NULL) {
114 for (pAssoc = m_pHashTable[nHash]; pAssoc != NULL; pAssoc = pAssoc->pNext) {
147 if (m_pHashTable != NULL) {
148 FX_Allocator_Free(m_pAllocator, m_pHashTable);
149 m_pHashTable = NULL;
152 m_pHashTable = FX_Allocator_Alloc(m_pAllocator, CAssoc*, nHashSize);
153 if (m_pHashTable) {
154 FXSYS_memset32(m_pHashTable, 0, sizeof(CAssoc*) * nHashSize);
161 if (m_pHashTable == NULL) {
165 ppAssocPrev = &m_pHashTable[HashKey(key) % m_nHashTableSize];
189 , m_pHashTable(NULL)
200 if (m_pHashTable != NULL) {
203 for (pAssoc = m_pHashTable[nHash]; pAssoc != NULL;
208 FX_Allocator_Free(m_pAllocator, m_pHashTable);
209 m_pHashTable = NULL;
224 ASSERT(m_pHashTable != NULL);
229 if ((pAssocRet = m_pHashTable[nBucket]) != NULL) {
238 if ((pAssocNext = m_pHashTable[nBucket]) != NULL) {
248 ASSERT(m_pHashTable != NULL);
253 if ((pAssocRet = m_pHashTable[nBucket]) != NULL) {
262 if ((pAssocNext = m_pHashTable[nBucket]) != NULL) {
274 if (m_pHashTable == NULL) {
280 pAssoc->pNext = m_pHashTable[nHash];
281 m_pHashTable[nHash] = pAssoc;
321 if (m_pHashTable == NULL) {
325 for (pAssoc = m_pHashTable[nHash]; pAssoc != NULL; pAssoc = pAssoc->pNext) {
347 if (m_pHashTable != NULL) {
348 FX_Allocator_Free(m_pAllocator, m_pHashTable);
349 m_pHashTable = NULL;
352 m_pHashTable = FX_Allocator_Alloc(m_pAllocator, CAssoc*, nHashSize);
353 if (m_pHashTable) {
354 FXSYS_memset32(m_pHashTable, 0, sizeof(CAssoc*) * nHashSize);
371 if (m_pHashTable == NULL) {
375 ppAssocPrev = &m_pHashTable[HashKey(key) % m_nHashTableSize];