Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Resources / __FastResourceComparer.cs / 1305376 / __FastResourceComparer.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** **[....] ** ** Class: FastResourceComparer ** ** ** Purpose: A collection of quick methods for comparing ** resource keys (strings) ** ** ===========================================================*/ namespace System.Resources { using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics.Contracts; internal sealed class FastResourceComparer : IComparer, IEqualityComparer, IComparer, IEqualityComparer { internal static readonly FastResourceComparer Default = new FastResourceComparer(); // Implements IHashCodeProvider too, due to Hashtable requirements. public int GetHashCode(Object key) { String s = (String) key; return FastResourceComparer.HashFunction(s); } public int GetHashCode(String key) { return FastResourceComparer.HashFunction(key); } // This hash function MUST be publically documented with the resource // file format, AND we may NEVER change this hash function's return // value (without changing the file format). internal static int HashFunction(String key) { // Never change this hash function. We must standardize it so that // others can read & write our .resources files. Additionally, we // have a copy of it in InternalResGen as well. uint hash = 5381; for(int i=0; i bCharLength) numChars = bCharLength; if (bCharLength == 0) // Can't use fixed on a 0-element array. return (a.Length == 0) ? 0 : -1; fixed(byte* pb = bytes) { byte *pChar = pb; while (i < numChars && r == 0) { // little endian format int b = pChar[0] | pChar[1] << 8; r = a[i++] - b; pChar += sizeof(char); } } if (r != 0) return r; return a.Length - bCharLength; } [System.Security.SecurityCritical] // auto-generated public static int CompareOrdinal(byte[] bytes, int aCharLength, String b) { return -CompareOrdinal(b, bytes, aCharLength); } // This method is to handle potentially misaligned data accesses. // The byte* must point to little endian Unicode characters. [System.Security.SecurityCritical] // auto-generated internal unsafe static int CompareOrdinal(byte* a, int byteLen, String b) { Contract.Assert((byteLen & 1) == 0, "CompareOrdinal is expecting a UTF-16 string length, which must be even!"); Contract.Assert(a != null && b != null, "Null args not allowed."); Contract.Assert(byteLen >= 0, "byteLen must be non-negative."); int r = 0; int i = 0; // Compare the min length # of characters, then return length diffs. int numChars = byteLen >> 1; if (numChars > b.Length) numChars = b.Length; while(i < numChars && r == 0) { // Must compare character by character, not byte by byte. char aCh = (char) (*a++ | (*a++ << 8)); r = aCh - b[i++]; } if (r != 0) return r; return byteLen - b.Length * 2; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** [....] ** ** Class: FastResourceComparer ** ** ** Purpose: A collection of quick methods for comparing ** resource keys (strings) ** ** ===========================================================*/ namespace System.Resources { using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics.Contracts; internal sealed class FastResourceComparer : IComparer, IEqualityComparer, IComparer, IEqualityComparer { internal static readonly FastResourceComparer Default = new FastResourceComparer(); // Implements IHashCodeProvider too, due to Hashtable requirements. public int GetHashCode(Object key) { String s = (String) key; return FastResourceComparer.HashFunction(s); } public int GetHashCode(String key) { return FastResourceComparer.HashFunction(key); } // This hash function MUST be publically documented with the resource // file format, AND we may NEVER change this hash function's return // value (without changing the file format). internal static int HashFunction(String key) { // Never change this hash function. We must standardize it so that // others can read & write our .resources files. Additionally, we // have a copy of it in InternalResGen as well. uint hash = 5381; for(int i=0; i bCharLength) numChars = bCharLength; if (bCharLength == 0) // Can't use fixed on a 0-element array. return (a.Length == 0) ? 0 : -1; fixed(byte* pb = bytes) { byte *pChar = pb; while (i < numChars && r == 0) { // little endian format int b = pChar[0] | pChar[1] << 8; r = a[i++] - b; pChar += sizeof(char); } } if (r != 0) return r; return a.Length - bCharLength; } [System.Security.SecurityCritical] // auto-generated public static int CompareOrdinal(byte[] bytes, int aCharLength, String b) { return -CompareOrdinal(b, bytes, aCharLength); } // This method is to handle potentially misaligned data accesses. // The byte* must point to little endian Unicode characters. [System.Security.SecurityCritical] // auto-generated internal unsafe static int CompareOrdinal(byte* a, int byteLen, String b) { Contract.Assert((byteLen & 1) == 0, "CompareOrdinal is expecting a UTF-16 string length, which must be even!"); Contract.Assert(a != null && b != null, "Null args not allowed."); Contract.Assert(byteLen >= 0, "byteLen must be non-negative."); int r = 0; int i = 0; // Compare the min length # of characters, then return length diffs. int numChars = byteLen >> 1; if (numChars > b.Length) numChars = b.Length; while(i < numChars && r == 0) { // Must compare character by character, not byte by byte. char aCh = (char) (*a++ | (*a++ << 8)); r = aCh - b[i++]; } if (r != 0) return r; return byteLen - b.Length * 2; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PrePrepareMethodAttribute.cs
- DiscoveryDefaults.cs
- _NetworkingPerfCounters.cs
- XmlEnumAttribute.cs
- HttpModuleAction.cs
- NgenServicingAttributes.cs
- IItemProperties.cs
- DataRowComparer.cs
- HtmlElementCollection.cs
- GridViewDeletedEventArgs.cs
- CompatibleComparer.cs
- InvocationExpression.cs
- EntityFunctions.cs
- DocumentOrderQuery.cs
- IgnoreSectionHandler.cs
- InternalConfigRoot.cs
- DataRecord.cs
- Perspective.cs
- DeflateStream.cs
- Compiler.cs
- SymLanguageVendor.cs
- WFItemsToSpacerVisibility.cs
- odbcmetadatafactory.cs
- EventHandlersStore.cs
- SqlConnectionStringBuilder.cs
- CodeArrayIndexerExpression.cs
- HostingPreferredMapPath.cs
- Parameter.cs
- KoreanLunisolarCalendar.cs
- SafeNativeMethodsMilCoreApi.cs
- PropertyChangingEventArgs.cs
- CompilerLocalReference.cs
- MasterPage.cs
- AsnEncodedData.cs
- RawUIStateInputReport.cs
- odbcmetadatacollectionnames.cs
- Debug.cs
- DoubleCollection.cs
- SimplePropertyEntry.cs
- FontWeightConverter.cs
- TransformedBitmap.cs
- Int64AnimationBase.cs
- GenericRootAutomationPeer.cs
- TransformCollection.cs
- ColumnReorderedEventArgs.cs
- WorkBatch.cs
- MethodExpr.cs
- NativeObjectSecurity.cs
- BehaviorService.cs
- SqlTriggerAttribute.cs
- BaseCodePageEncoding.cs
- WebPartHeaderCloseVerb.cs
- SendingRequestEventArgs.cs
- XmlNavigatorStack.cs
- RootNamespaceAttribute.cs
- CellConstantDomain.cs
- TraceSwitch.cs
- ResXFileRef.cs
- StateDesigner.Layouts.cs
- SafeNativeMethodsOther.cs
- GlobalItem.cs
- CodeNamespaceImportCollection.cs
- SourceFileInfo.cs
- ProcessHostServerConfig.cs
- Repeater.cs
- DocobjHost.cs
- KeyedQueue.cs
- XmlWellformedWriter.cs
- JsonServiceDocumentSerializer.cs
- XamlBuildProvider.cs
- CalculatedColumn.cs
- ContentHostHelper.cs
- UtilityExtension.cs
- SqlXmlStorage.cs
- SynchronizationContext.cs
- SlipBehavior.cs
- WebServiceFault.cs
- XomlCompilerHelpers.cs
- Roles.cs
- ViewManager.cs
- ThemeDirectoryCompiler.cs
- ObjectDataSourceEventArgs.cs
- ScrollBarAutomationPeer.cs
- UnknownWrapper.cs
- DataSetSchema.cs
- Trace.cs
- EntityDesignerBuildProvider.cs
- CachingHintValidation.cs
- SafeEventLogReadHandle.cs
- UnsafeNativeMethodsMilCoreApi.cs
- SqlCacheDependencyDatabaseCollection.cs
- InlineObject.cs
- AuthenticationSection.cs
- CommandSet.cs
- WindowsHyperlink.cs
- ParameterCollection.cs
- SelectionPattern.cs
- TreeNodeCollection.cs
- VariableDesigner.xaml.cs
- FileEnumerator.cs