3 writes to _array
PresentationCore (3)
Core\CSharp\MS\Internal\Shaping\UshortList2.cs (3)
191_array = array; 196_array = new ushort[capacity]; 261_array = newArray;
16 references to _array
PresentationCore (16)
Core\CSharp\MS\Internal\Shaping\UshortList2.cs (16)
202get { return _array[index]; } 203set { _array[index] = value; } 208get { return _array.Length; } 213return _array; 222_array, 226((index + count) <= _array.Length ? count : _array.Length) * sizeof(ushort) 236if (newLength > _array.Length) 241int extra = newLength - _array.Length; 242int newArraySize = _array.Length + ((extra - 1) / _leap + 1) * _leap; 248Buffer.BlockCopy(_array, 0, newArray, 0, index * sizeof(ushort)); 253_array, 268_array, 270_array, 281_array, 283_array,