6 references to Size
System.Text.Json (6)
System\Text\Json\Document\JsonDocument.Parse.cs (2)
725var stack = new StackRowStack(JsonDocumentOptions.DefaultMaxDepth * StackRow.Size); 778var stack = new StackRowStack(JsonDocumentOptions.DefaultMaxDepth * StackRow.Size);
System\Text\Json\Document\JsonDocument.StackRowStack.cs (4)
44if (_topOfStack < StackRow.Size) 49_topOfStack -= StackRow.Size; 56Debug.Assert(_topOfStack <= _rentedBuffer!.Length - StackRow.Size); 59_topOfStack += StackRow.Size;