Searched defs:_capacity (Results 1 - 2 of 2) sorted by relevance

/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs20 private int _capacity; field in class:DotZLib.CircularBuffer
31 _capacity = capacity;
42 int trueCount = Math.Min(count, _capacity - Size);
44 _buffer[(_tail+i) % _capacity] = source[offset+i];
46 _tail %= _capacity;
53 if (Size == _capacity) // no room
56 _tail %= _capacity;
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
67 _head %= _capacity;
77 int result = (int)_buffer[_head++ % _capacity];
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A DFastInfoset.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/fastinfoset/ ...

Completed in 46 milliseconds