3 writes to _array
PresentationCore (3)
MS\Internal\Shaping\UshortList2.cs (3)
166_array = array; 171_array = new ushort[capacity]; 236_array = newArray;
16 references to _array
PresentationCore (16)
MS\Internal\Shaping\UshortList2.cs (16)
177get { return _array[index]; } 178set { _array[index] = value; } 183get { return _array.Length; } 188return _array; 197_array, 201((index + count) <= _array.Length ? count : _array.Length) * sizeof(ushort) 211if (newLength > _array.Length) 216int extra = newLength - _array.Length; 217int newArraySize = _array.Length + ((extra - 1) / _leap + 1) * _leap; 223Buffer.BlockCopy(_array, 0, newArray, 0, index * sizeof(ushort)); 228_array, 243_array, 245_array, 256_array, 258_array,