Home
last modified time | relevance | path

Searched refs:rtfHashTable (Results 1 – 1 of 1) sorted by relevance

/reactos/dll/win32/riched20/
H A Dreader.c2184 static RTFHashTableEntry rtfHashTable[ARRAY_SIZE(rtfKey) * 2]; variable
2195 memset(rtfHashTable, 0, sizeof rtfHashTable); in LookupInit()
2202 if (!rtfHashTable[index].count) in LookupInit()
2203 rtfHashTable[index].value = heap_alloc(sizeof(RTFKey *)); in LookupInit()
2205rtfHashTable[index].value = heap_realloc(rtfHashTable[index].value, sizeof(RTFKey *) * (rtfHashTab… in LookupInit()
2206 rtfHashTable[index].value[rtfHashTable[index].count++] = rp; in LookupInit()
2216 heap_free( rtfHashTable[i].value ); in LookupCleanup()
2217 rtfHashTable[i].value = NULL; in LookupCleanup()
2218 rtfHashTable[i].count = 0; in LookupCleanup()
2237 entry = &rtfHashTable[hash % (ARRAY_SIZE(rtfKey) * 2)]; in Lookup()