Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataEntity / System / Data / Query / ResultAssembly / BitVec.cs / 3 / BitVec.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....] //--------------------------------------------------------------------- namespace System.Data.Query.ResultAssembly { using System.Diagnostics; using System.Text; ////// BitVector helper class; used to keep track of the used columns /// in the result assembly. /// ////// BitVec can be a struct because it contains a readonly reference to an int[]. /// This code is a copy of System.Collections.BitArray so that we can have an efficient implementation of Minus. /// internal struct BitVec { private readonly int[] m_array; private readonly int m_length; [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal BitVec(int length) { Debug.Assert(0 < length, "zero length"); m_array = new int[(length + 31) / 32]; m_length = length; } internal int Count { get { return m_length; } } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal void Set(int index) { Debug.Assert(unchecked((uint)index < (uint)m_length), "index out of range"); m_array[index / 32] |= (1 << (index % 32)); } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal void ClearAll() { for (int i = 0; i < m_array.Length; i++) { m_array[i] = 0; } } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal bool IsEmpty() { for (int i = 0; i < m_array.Length; i++) { if (0 != m_array[i]) { return false; } } return true; } internal bool IsSet(int index) { Debug.Assert(unchecked((uint)index < (uint)m_length), "index out of range"); return (m_array[index / 32] & (1 << (index % 32))) != 0; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal void Or(BitVec value) { Debug.Assert(m_length == value.m_length, "unequal sized bitvec"); for (int i = 0; i < m_array.Length; i++) { m_array[i] |= value.m_array[i]; } } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal void Minus(BitVec value) { Debug.Assert(m_length == value.m_length, "unequal sized bitvec"); for (int i = 0; i < m_array.Length; i++) { m_array[i] &= ~value.m_array[i]; } } public override string ToString() { StringBuilder sb = new StringBuilder(3 * Count); string separator = string.Empty; for (int i = 0; i < Count; i++) { if (IsSet(i)) { sb.Append(separator); sb.Append(i); separator = ","; } } return sb.ToString(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....] //--------------------------------------------------------------------- namespace System.Data.Query.ResultAssembly { using System.Diagnostics; using System.Text; ////// BitVector helper class; used to keep track of the used columns /// in the result assembly. /// ////// BitVec can be a struct because it contains a readonly reference to an int[]. /// This code is a copy of System.Collections.BitArray so that we can have an efficient implementation of Minus. /// internal struct BitVec { private readonly int[] m_array; private readonly int m_length; [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal BitVec(int length) { Debug.Assert(0 < length, "zero length"); m_array = new int[(length + 31) / 32]; m_length = length; } internal int Count { get { return m_length; } } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal void Set(int index) { Debug.Assert(unchecked((uint)index < (uint)m_length), "index out of range"); m_array[index / 32] |= (1 << (index % 32)); } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal void ClearAll() { for (int i = 0; i < m_array.Length; i++) { m_array[i] = 0; } } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal bool IsEmpty() { for (int i = 0; i < m_array.Length; i++) { if (0 != m_array[i]) { return false; } } return true; } internal bool IsSet(int index) { Debug.Assert(unchecked((uint)index < (uint)m_length), "index out of range"); return (m_array[index / 32] & (1 << (index % 32))) != 0; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal void Or(BitVec value) { Debug.Assert(m_length == value.m_length, "unequal sized bitvec"); for (int i = 0; i < m_array.Length; i++) { m_array[i] |= value.m_array[i]; } } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal void Minus(BitVec value) { Debug.Assert(m_length == value.m_length, "unequal sized bitvec"); for (int i = 0; i < m_array.Length; i++) { m_array[i] &= ~value.m_array[i]; } } public override string ToString() { StringBuilder sb = new StringBuilder(3 * Count); string separator = string.Empty; for (int i = 0; i < Count; i++) { if (IsSet(i)) { sb.Append(separator); sb.Append(i); separator = ","; } } return sb.ToString(); } } } // 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
- CheckBox.cs
- DiscoveryViaBehavior.cs
- ImageListStreamer.cs
- ServiceHttpModule.cs
- TripleDES.cs
- HuffmanTree.cs
- MDIWindowDialog.cs
- Tokenizer.cs
- GeneratedView.cs
- EntitySqlQueryState.cs
- PerformanceCounter.cs
- MappingSource.cs
- Expander.cs
- DataObjectCopyingEventArgs.cs
- EventLogQuery.cs
- UnsafeNativeMethodsTablet.cs
- EventMappingSettings.cs
- MailDefinition.cs
- TextContainerChangedEventArgs.cs
- XmlQueryContext.cs
- SiteMapNode.cs
- SecurityTokenAuthenticator.cs
- ReferencedType.cs
- GetKeyedHashRequest.cs
- CompilationUnit.cs
- AssemblyResourceLoader.cs
- UnsafeNativeMethods.cs
- ProcessHostFactoryHelper.cs
- WindowsFormsHost.cs
- QilUnary.cs
- IdleTimeoutMonitor.cs
- HttpHeaderCollection.cs
- CodeCommentStatementCollection.cs
- DisplayNameAttribute.cs
- Literal.cs
- DataServiceHost.cs
- PrintDialogException.cs
- IDReferencePropertyAttribute.cs
- ControlOperationInvoker.cs
- HijriCalendar.cs
- PartialList.cs
- PriorityBindingExpression.cs
- QueryCacheKey.cs
- DataGridColumnFloatingHeader.cs
- IisTraceListener.cs
- DesignTimeSiteMapProvider.cs
- DateTimeConverter.cs
- CustomAssemblyResolver.cs
- ProgressChangedEventArgs.cs
- Int64.cs
- SharedPerformanceCounter.cs
- FileDialog_Vista_Interop.cs
- CapabilitiesState.cs
- BatchStream.cs
- WaitHandleCannotBeOpenedException.cs
- RegexCompiler.cs
- ComponentChangingEvent.cs
- X509Extension.cs
- HttpFileCollection.cs
- ZipIOExtraFieldZip64Element.cs
- PolyQuadraticBezierSegment.cs
- PartialCachingControl.cs
- TableRowCollection.cs
- DispatcherFrame.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- FormsAuthenticationConfiguration.cs
- WsatStrings.cs
- WebContext.cs
- ServerValidateEventArgs.cs
- XmlSchemaAttributeGroupRef.cs
- LayoutTable.cs
- DetailsViewRowCollection.cs
- BuildManager.cs
- RotateTransform3D.cs
- BaseDataListComponentEditor.cs
- SqlEnums.cs
- Registry.cs
- ComponentSerializationService.cs
- WindowsListViewItem.cs
- QueryContinueDragEventArgs.cs
- SRGSCompiler.cs
- TextTreeInsertUndoUnit.cs
- X509Utils.cs
- SoapAttributeAttribute.cs
- DesignTimeParseData.cs
- Automation.cs
- LocalizedNameDescriptionPair.cs
- HtmlInputFile.cs
- TraceSwitch.cs
- Vector3DCollection.cs
- ServiceModelSecurityTokenTypes.cs
- DataFormats.cs
- UnknownBitmapEncoder.cs
- __FastResourceComparer.cs
- PreProcessInputEventArgs.cs
- SqlDataSource.cs
- DataConnectionHelper.cs
- DodSequenceMerge.cs
- WriteableBitmap.cs
- KerberosSecurityTokenAuthenticator.cs