Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / Bits.cs / 1 / Bits.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System; using System.Diagnostics; ////// Contains static utility methods used to manipulate bits in a word. /// internal static class Bits { private static readonly uint MASK_0101010101010101 = 0x55555555; private static readonly uint MASK_0011001100110011 = 0x33333333; private static readonly uint MASK_0000111100001111 = 0x0f0f0f0f; private static readonly uint MASK_0000000011111111 = 0x00ff00ff; private static readonly uint MASK_1111111111111111 = 0x0000ffff; ////// Returns the number of 1 bits in an unsigned integer. Counts bits by divide-and-conquer method, /// first computing 16 2-bit counts, then 8 4-bit counts, then 4 8-bit counts, then 2 16-bit counts, /// and finally 1 32-bit count. /// public static int Count(uint num) { num = (num & MASK_0101010101010101) + ((num >> 1) & MASK_0101010101010101); num = (num & MASK_0011001100110011) + ((num >> 2) & MASK_0011001100110011); num = (num & MASK_0000111100001111) + ((num >> 4) & MASK_0000111100001111); num = (num & MASK_0000000011111111) + ((num >> 8) & MASK_0000000011111111); num = (num & MASK_1111111111111111) + (num >> 16); return (int) num; } ////// Returns true if the unsigned integer has exactly one bit set. /// public static bool ExactlyOne(uint num) { return num != 0 && (num & (num - 1)) == 0; } ////// Returns true if the unsigned integer has more than one bit set. /// public static bool MoreThanOne(uint num) { return (num & (num - 1)) != 0; } ////// Clear the least significant bit that is set and return the result. /// public static uint ClearLeast(uint num) { return num & (num - 1); } ////// Compute the 1-based position of the least sigificant bit that is set, and return it (return 0 if no bits are set). /// (e.g. 0x1001100 will return 3, since the 3rd bit is set). /// public static int LeastPosition(uint num) { if (num == 0) return 0; return Count(num ^ (num - 1)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System; using System.Diagnostics; ////// Contains static utility methods used to manipulate bits in a word. /// internal static class Bits { private static readonly uint MASK_0101010101010101 = 0x55555555; private static readonly uint MASK_0011001100110011 = 0x33333333; private static readonly uint MASK_0000111100001111 = 0x0f0f0f0f; private static readonly uint MASK_0000000011111111 = 0x00ff00ff; private static readonly uint MASK_1111111111111111 = 0x0000ffff; ////// Returns the number of 1 bits in an unsigned integer. Counts bits by divide-and-conquer method, /// first computing 16 2-bit counts, then 8 4-bit counts, then 4 8-bit counts, then 2 16-bit counts, /// and finally 1 32-bit count. /// public static int Count(uint num) { num = (num & MASK_0101010101010101) + ((num >> 1) & MASK_0101010101010101); num = (num & MASK_0011001100110011) + ((num >> 2) & MASK_0011001100110011); num = (num & MASK_0000111100001111) + ((num >> 4) & MASK_0000111100001111); num = (num & MASK_0000000011111111) + ((num >> 8) & MASK_0000000011111111); num = (num & MASK_1111111111111111) + (num >> 16); return (int) num; } ////// Returns true if the unsigned integer has exactly one bit set. /// public static bool ExactlyOne(uint num) { return num != 0 && (num & (num - 1)) == 0; } ////// Returns true if the unsigned integer has more than one bit set. /// public static bool MoreThanOne(uint num) { return (num & (num - 1)) != 0; } ////// Clear the least significant bit that is set and return the result. /// public static uint ClearLeast(uint num) { return num & (num - 1); } ////// Compute the 1-based position of the least sigificant bit that is set, and return it (return 0 if no bits are set). /// (e.g. 0x1001100 will return 3, since the 3rd bit is set). /// public static int LeastPosition(uint num) { if (num == 0) return 0; return Count(num ^ (num - 1)); } } } // 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
- MSG.cs
- XPathBuilder.cs
- AssemblyInfo.cs
- _SslState.cs
- CatalogPartChrome.cs
- SelectionChangedEventArgs.cs
- SpeechDetectedEventArgs.cs
- WindowsTokenRoleProvider.cs
- QueryInterceptorAttribute.cs
- TagMapCollection.cs
- ConfigXmlDocument.cs
- MailMessageEventArgs.cs
- safex509handles.cs
- WebPartsSection.cs
- SwitchAttribute.cs
- EncryptedPackageFilter.cs
- WebPartEditorApplyVerb.cs
- CLRBindingWorker.cs
- LinqDataView.cs
- GridViewRowPresenterBase.cs
- BufferedWebEventProvider.cs
- XmlSchemaSimpleContentRestriction.cs
- ReferenceEqualityComparer.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- ImageCollectionCodeDomSerializer.cs
- IndicFontClient.cs
- BufferedResponseStream.cs
- TrackingProfileSerializer.cs
- SqlRowUpdatingEvent.cs
- BuilderElements.cs
- FixedTextContainer.cs
- unsafeIndexingFilterStream.cs
- SingleAnimationBase.cs
- WebResourceUtil.cs
- BindingSource.cs
- TypedTableGenerator.cs
- EditorZoneBase.cs
- DSASignatureFormatter.cs
- InkCanvasFeedbackAdorner.cs
- FamilyTypeface.cs
- CompilationUtil.cs
- EntityDataSourceContextCreatingEventArgs.cs
- SplitterDesigner.cs
- DbQueryCommandTree.cs
- TraceContextEventArgs.cs
- ControlParameter.cs
- Odbc32.cs
- HtmlLink.cs
- TextEditorLists.cs
- DesignerProperties.cs
- WindowsRegion.cs
- TripleDES.cs
- LogicalExpressionTypeConverter.cs
- IIS7UserPrincipal.cs
- Schema.cs
- ZoneLinkButton.cs
- RightsManagementInformation.cs
- xsdvalidator.cs
- ViewLoader.cs
- ContextBase.cs
- ScriptReferenceBase.cs
- OdbcPermission.cs
- KeyTimeConverter.cs
- ChangeProcessor.cs
- Point3DKeyFrameCollection.cs
- COAUTHIDENTITY.cs
- ModelItemCollection.cs
- ValueUtilsSmi.cs
- Geometry3D.cs
- ObjectListItem.cs
- PhysicalFontFamily.cs
- TripleDESCryptoServiceProvider.cs
- SoapUnknownHeader.cs
- RemotingServices.cs
- MulticastDelegate.cs
- ColorBlend.cs
- NetMsmqBindingCollectionElement.cs
- ImageAttributes.cs
- IInstanceTable.cs
- HierarchicalDataBoundControl.cs
- InvokeHandlers.cs
- RC2CryptoServiceProvider.cs
- SamlConditions.cs
- SymmetricCryptoHandle.cs
- PartitionResolver.cs
- ToolStripSeparator.cs
- SQLCharsStorage.cs
- WindowsSysHeader.cs
- NativeMethods.cs
- PrintPreviewDialog.cs
- SingleConverter.cs
- SecurityContext.cs
- SqlTopReducer.cs
- TextRangeEditTables.cs
- ClientFormsIdentity.cs
- RawStylusInputCustomData.cs
- QilSortKey.cs
- RawStylusSystemGestureInputReport.cs
- StrongNameUtility.cs
- ExpressionUtilities.cs