2 instantiations of TokenHashValue
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Globalization\DateTimeFormatInfo.cs (2)
2396hashTable[hashcode] = new TokenHashValue(str, tokenType, tokenValue); 2451hashTable[hashcode] = new TokenHashValue(str, tokenType, tokenValue);
12 references to TokenHashValue
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Globalization\DateTimeFormatInfo.cs (12)
1830private TokenHashValue[]? _dtfiTokenHash; 1920internal TokenHashValue[] CreateTokenHashTable() 1922TokenHashValue[]? temp = _dtfiTokenHash; 1925temp = new TokenHashValue[TOKEN_HASH_SIZE]; 2185private void AddMonthNames(TokenHashValue[] temp, ReadOnlySpan<char> monthPostfix = default) 2299TokenHashValue value; 2329TokenHashValue[] hashTable = _dtfiTokenHash ?? CreateTokenHashTable(); 2390private void InsertAtCurrentHashNode(TokenHashValue[] hashTable, string str, char ch, TokenType tokenType, int tokenValue, int pos, int hashcode, int hashProbe) 2393TokenHashValue previousNode = hashTable[hashcode]; 2403TokenHashValue temp = hashTable[hashcode]; 2421private void InsertHash(TokenHashValue[] hashTable, string str, TokenType tokenType, int tokenValue) 2429TokenHashValue value;