1 write to keys
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Array.cs (1)
2850this.keys = keys;
25 references to keys
System.Private.CoreLib (25)
src\libraries\System.Private.CoreLib\src\System\Array.cs (25)
2859if (comparer.Compare(keys.GetValue(a), keys.GetValue(b)) > 0) 2861object? key = keys.GetValue(a); 2862keys.SetValue(keys.GetValue(b), a); 2863keys.SetValue(key, b); 2876object? t1 = keys.GetValue(i); 2877keys.SetValue(keys.GetValue(j), i); 2878keys.SetValue(t1, j); 2969object? pivot = keys.GetValue(mid); 2975while (comparer.Compare(keys.GetValue(++left), pivot) < 0) ; 2976while (comparer.Compare(pivot, keys.GetValue(--right)) < 0) ; 3009object? d = keys.GetValue(lo + i - 1); 3015if (child < n && comparer.Compare(keys.GetValue(lo + child - 1), keys.GetValue(lo + child)) < 0) 3020if (!(comparer.Compare(d, keys.GetValue(lo + child - 1)) < 0)) 3023keys.SetValue(keys.GetValue(lo + child - 1), lo + i - 1); 3027keys.SetValue(d, lo + i - 1); 3039t = keys.GetValue(i + 1); 3042while (j >= lo && comparer.Compare(t, keys.GetValue(j)) < 0) 3044keys.SetValue(keys.GetValue(j), j + 1); 3049keys.SetValue(t, j + 1);