OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:_capacity
(Results
1 - 1
of
1
) sorted by relevancy
/src/common/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs
20
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
...]
Completed in 14 milliseconds
Indexes created Fri Oct 03 02:09:57 GMT 2025