Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Util / SimpleBitVector32.cs / 1 / SimpleBitVector32.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Util { 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 IntegerValue { get { return data; } set { data = value; } } internal bool this[int bit] { get { return (data & bit) == bit; } set { int _data = data; if(value) { data = _data | bit; } else { data = _data & ~bit; } } } internal void Set(int bit) { data |= bit; } internal void Clear(int bit) { data &= ~bit; } #if UNUSED_CODE 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; } internal int Data { get { return data; } set { data = value; } } #endif } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AssemblyInfo.cs
- StaticDataManager.cs
- WizardForm.cs
- HttpClientCertificate.cs
- WebConfigurationHost.cs
- XmlElementAttributes.cs
- CatalogPartCollection.cs
- CompressedStack.cs
- HttpHandlerActionCollection.cs
- LockCookie.cs
- MainMenu.cs
- ContractNamespaceAttribute.cs
- XXXInfos.cs
- ColorKeyFrameCollection.cs
- COM2TypeInfoProcessor.cs
- FixedSOMImage.cs
- ParallelTimeline.cs
- ReachPageContentSerializer.cs
- WebControlsSection.cs
- PolicyLevel.cs
- ProcessRequestArgs.cs
- GeometryCombineModeValidation.cs
- EntityObject.cs
- List.cs
- StrokeCollectionConverter.cs
- SignedPkcs7.cs
- ContextQuery.cs
- SizeFConverter.cs
- TableColumn.cs
- CheckBoxRenderer.cs
- Triplet.cs
- SafeNativeMethods.cs
- RoleGroupCollection.cs
- DataSpaceManager.cs
- CatalogPart.cs
- EventPropertyMap.cs
- GroupByQueryOperator.cs
- MemberProjectedSlot.cs
- ViewGenResults.cs
- RegexReplacement.cs
- TranslateTransform3D.cs
- XmlNavigatorStack.cs
- SecurityHelper.cs
- EnumMemberAttribute.cs
- PerfCounters.cs
- MethodCallTranslator.cs
- ClientSideProviderDescription.cs
- TokenizerHelper.cs
- CommandEventArgs.cs
- WebPartActionVerb.cs
- RoleGroup.cs
- Win32Exception.cs
- OdbcConnectionPoolProviderInfo.cs
- HtmlProps.cs
- ITreeGenerator.cs
- WebPartCatalogAddVerb.cs
- RectAnimationUsingKeyFrames.cs
- DrawingState.cs
- ISAPIWorkerRequest.cs
- WorkflowRuntimeBehavior.cs
- TimeZoneNotFoundException.cs
- BoolExpressionVisitors.cs
- VectorCollectionConverter.cs
- ValidatorUtils.cs
- GeneralTransform2DTo3DTo2D.cs
- QilGeneratorEnv.cs
- WebBrowserSiteBase.cs
- HtmlEmptyTagControlBuilder.cs
- SoapFaultCodes.cs
- AddingNewEventArgs.cs
- RelationshipConverter.cs
- EventTask.cs
- TraceContextEventArgs.cs
- CachedFontFace.cs
- LoginUtil.cs
- RegexGroup.cs
- XmlSchemaSearchPattern.cs
- CfgRule.cs
- EncoderParameters.cs
- BitmapEffectOutputConnector.cs
- StoreContentChangedEventArgs.cs
- EllipseGeometry.cs
- RequestCacheValidator.cs
- ToolStripItemRenderEventArgs.cs
- DetailsViewActionList.cs
- _HelperAsyncResults.cs
- DiscriminatorMap.cs
- PlainXmlDeserializer.cs
- StatusBarAutomationPeer.cs
- TransactionInformation.cs
- _NegoState.cs
- XPathAncestorQuery.cs
- HandlerMappingMemo.cs
- FixedPageStructure.cs
- X509Utils.cs
- VectorCollection.cs
- ContextDataSourceContextData.cs
- validation.cs
- HttpListenerTimeoutManager.cs
- BaseCodePageEncoding.cs