1 write to m_bitVector
System.Data.Entity (1)
System\Data\Query\InternalTrees\Vars.cs (1)
488m_bitVector = new BitArray(64);
30 references to m_bitVector
System.Data.Entity (30)
System\Data\Query\InternalTrees\Vars.cs (30)
241m_bitArray = vec.m_bitVector; 308m_bitVector.Length = 0; 314m_bitVector.And(other.m_bitVector); 320m_bitVector.Or(other.m_bitVector); 331tmp.m_bitVector.Length = m_bitVector.Length; 332tmp.m_bitVector.Not(); 360for (int i = 0; i < other.m_bitVector.Count; i++) 362if (other.m_bitVector[i] && 363((i >= this.m_bitVector.Count) || !this.m_bitVector[i])) 374this.m_bitVector.Length = other.m_bitVector.Length; 375this.m_bitVector.Or(other.m_bitVector); 426return m_bitVector.Get(v.Id); 431m_bitVector.Set(v.Id, true); 436m_bitVector.Set(v.Id, false); 496if (other.m_bitVector.Count == this.m_bitVector.Count) 498if (other.m_bitVector.Count > this.m_bitVector.Count) 500this.m_bitVector.Length = other.m_bitVector.Count; 504other.m_bitVector.Length = this.m_bitVector.Count; 509if (idx >= m_bitVector.Count) 511m_bitVector.Length = idx + 1;