Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / SimpleBitVector32.cs / 1 / SimpleBitVector32.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; // // This is a cut down copy of System.Collections.Specialized.BitVector32. The // reason this is here is because it is used rather intensively by Control and // WebControl. As a result, being able to inline this operations results in a // measurable performance gain, at the expense of some maintainability. // [Serializable] internal struct SimpleBitVector32 { private int data; internal SimpleBitVector32(int data) { this.data = data; } internal int Data { get { return data; } #if UNUSED_CODE set { data = value; } #endif } internal bool this[int bit] { get { return (data & bit) == bit; } set { int _data = data; if(value) { data = _data | bit; } else { data = _data & ~bit; } } } #if UNUSED_CODE internal void Set(int bit) { data |= bit; } internal void Clear(int bit) { data &= ~bit; } internal void Toggle(int bit) { data ^= bit; } /* * COPY_FLAG copies the value of flags from a source field * into a destination field. * * In the macro: * + "&flag" limits the outer xor operation to just the flag we're interested in. * + These are the results of the two xor operations: * * fieldDst fieldSrc inner xor outer xor * 0 0 0 0 * 0 1 1 1 * 1 0 1 0 * 1 1 0 1 */ internal void Copy(SimpleBitVector32 src, int bit) { data ^= (data ^ src.data) & bit; } #endif } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; // // This is a cut down copy of System.Collections.Specialized.BitVector32. The // reason this is here is because it is used rather intensively by Control and // WebControl. As a result, being able to inline this operations results in a // measurable performance gain, at the expense of some maintainability. // [Serializable] internal struct SimpleBitVector32 { private int data; internal SimpleBitVector32(int data) { this.data = data; } internal int Data { get { return data; } #if UNUSED_CODE set { data = value; } #endif } internal bool this[int bit] { get { return (data & bit) == bit; } set { int _data = data; if(value) { data = _data | bit; } else { data = _data & ~bit; } } } #if UNUSED_CODE internal void Set(int bit) { data |= bit; } internal void Clear(int bit) { data &= ~bit; } internal void Toggle(int bit) { data ^= bit; } /* * COPY_FLAG copies the value of flags from a source field * into a destination field. * * In the macro: * + "&flag" limits the outer xor operation to just the flag we're interested in. * + These are the results of the two xor operations: * * fieldDst fieldSrc inner xor outer xor * 0 0 0 0 * 0 1 1 1 * 1 0 1 0 * 1 1 0 1 */ internal void Copy(SimpleBitVector32 src, int bit) { data ^= (data ^ src.data) & bit; } #endif } } // 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
- GenericsInstances.cs
- GuidelineSet.cs
- PenLineCapValidation.cs
- RegexBoyerMoore.cs
- CopyOnWriteList.cs
- RelationshipConverter.cs
- shaperfactory.cs
- CommandHelper.cs
- DeclarativeCatalogPart.cs
- PersonalizableAttribute.cs
- VolatileEnlistmentState.cs
- GridViewCellAutomationPeer.cs
- WebReference.cs
- WebPartMovingEventArgs.cs
- Base64Encoding.cs
- ScriptIgnoreAttribute.cs
- DoWorkEventArgs.cs
- Axis.cs
- Directory.cs
- QuotedStringFormatReader.cs
- RotateTransform.cs
- WebPartTransformerAttribute.cs
- SignatureToken.cs
- _KerberosClient.cs
- TypeExtensions.cs
- Bezier.cs
- MdbDataFileEditor.cs
- InputProcessorProfiles.cs
- sitestring.cs
- DesignerOptionService.cs
- BaseTemplateParser.cs
- PrePostDescendentsWalker.cs
- SQLGuid.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- SelectionListComponentEditor.cs
- DataGridViewTopRowAccessibleObject.cs
- XmlNamespaceMapping.cs
- ResourceCategoryAttribute.cs
- ExpressionLexer.cs
- WebPartEditVerb.cs
- VisualBasicReference.cs
- _UriTypeConverter.cs
- BaseAutoFormat.cs
- SqlTriggerContext.cs
- Delegate.cs
- GlobalId.cs
- ToolboxSnapDragDropEventArgs.cs
- SnapLine.cs
- LinearKeyFrames.cs
- ZipIORawDataFileBlock.cs
- XsltOutput.cs
- BindingMemberInfo.cs
- DetailsViewModeEventArgs.cs
- SurrogateSelector.cs
- WebBrowser.cs
- PeerNearMe.cs
- ParseNumbers.cs
- DataViewManagerListItemTypeDescriptor.cs
- iisPickupDirectory.cs
- PropertyGrid.cs
- DecoderFallbackWithFailureFlag.cs
- EventEntry.cs
- MimeMultiPart.cs
- _SSPISessionCache.cs
- EntityClassGenerator.cs
- ErrorTableItemStyle.cs
- ArgumentDirectionHelper.cs
- MethodExpression.cs
- CompositeDataBoundControl.cs
- WebEventTraceProvider.cs
- AuthenticationSection.cs
- CustomBindingElement.cs
- EndpointDiscoveryMetadata11.cs
- ColumnWidthChangedEvent.cs
- GeneralTransform.cs
- SoapObjectReader.cs
- DynamicResourceExtension.cs
- PageAsyncTask.cs
- TranslateTransform3D.cs
- DesignOnlyAttribute.cs
- WmlListAdapter.cs
- DocumentApplicationJournalEntry.cs
- VisualStyleRenderer.cs
- ArrangedElement.cs
- NotCondition.cs
- ServiceThrottlingElement.cs
- TransactionScopeDesigner.cs
- StrokeFIndices.cs
- DoubleLinkListEnumerator.cs
- WebContext.cs
- VectorCollection.cs
- WmlCommandAdapter.cs
- SimpleLine.cs
- ToolStripSplitButton.cs
- ProcessDesigner.cs
- IriParsingElement.cs
- CharEntityEncoderFallback.cs
- MenuBase.cs
- GPPOINTF.cs
- COM2Properties.cs