Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:totalBytesRetired
(Results
1 - 5
of
5
) sorted by relevance
/third_party/protobuf/csharp/src/Google.Protobuf/
H
A
D
SegmentedBufferHelper.cs
119
byteLimit += state.
totalBytesRetired
+ state.bufferPos;
in PushLimit()
151
int currentAbsolutePosition = state.
totalBytesRetired
+ state.bufferPos;
in IsReachedLimit()
170
if (state.
totalBytesRetired
+ state.bufferSize == state.currentLimit)
in RefillFromReadOnlySequence()
183
state.
totalBytesRetired
+= state.bufferSize;
in RefillFromReadOnlySequence()
212
state.
totalBytesRetired
+ state.bufferSize + state.bufferSizeAfterLimit;
in RefillFromReadOnlySequence()
225
if (state.
totalBytesRetired
+ state.bufferSize == state.currentLimit)
in RefillFromCodedInputStream()
240
state.
totalBytesRetired
+= state.bufferSize;
in RefillFromCodedInputStream()
263
state.
totalBytesRetired
+ state.bufferSize + state.bufferSizeAfterLimit;
in RefillFromCodedInputStream()
275
int bufferEnd = state.
totalBytesRetired
+ state.bufferSize;
in RecomputeBufferSizeAfterLimit()
H
A
D
ParsingPrimitivesWrappers.cs
86
int finalBufferPos = state.
totalBytesRetired
+ state.bufferPos + length;
in ReadFloatWrapperSlow()
100
while (state.
totalBytesRetired
+ state.bufferPos < finalBufferPos);
in ReadFloatWrapperSlow()
138
int finalBufferPos = state.
totalBytesRetired
+ state.bufferPos + length;
in ReadDoubleWrapperSlow()
152
while (state.
totalBytesRetired
+ state.bufferPos < finalBufferPos);
in ReadDoubleWrapperSlow()
208
int finalBufferPos = state.
totalBytesRetired
+ state.bufferPos + length;
in ReadUInt32WrapperSlow()
222
while (state.
totalBytesRetired
+ state.bufferPos < finalBufferPos);
in ReadUInt32WrapperSlow()
281
int finalBufferPos = state.
totalBytesRetired
+ state.bufferPos + length;
in ReadUInt64WrapperSlow()
294
while (state.
totalBytesRetired
+ state.bufferPos < finalBufferPos);
in ReadUInt64WrapperSlow()
H
A
D
ParserInternalState.cs
70
/// The absolute position of the end of the current length-delimited block (including
totalBytesRetired
)
77
///
totalBytesRetired
+ bufferPos.
79
internal int
totalBytesRetired
;
field
H
A
D
ParsingPrimitives.cs
675
if (state.
totalBytesRetired
+ state.bufferPos + size > state.currentLimit)
in ValidateCurrentLimit()
678
SkipRawBytes(ref buffer, ref state, state.currentLimit - state.
totalBytesRetired
- state.bufferPos);
in ValidateCurrentLimit()
790
return size <= state.segmentedBufferHelper.TotalLength - state.
totalBytesRetired
- state.bufferPos;
in IsDataAvailableInSource()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H
A
D
CodedInputStream.java
2039
* current position can be computed as {@code
totalBytesRetired
+ pos}. This value may be
2043
private int
totalBytesRetired
;
field in CodedInputStream.StreamDecoder
2054
totalBytesRetired
= 0;
in StreamDecoder()
2658
totalBytesRetired
= -pos;
in resetSizeCounter()
2666
byteLimit +=
totalBytesRetired
+ pos;
in pushLimit()
2680
final int bufferEnd =
totalBytesRetired
+ bufferSize;
in recomputeBufferSizeAfterLimit()
2702
final int currentAbsolutePosition =
totalBytesRetired
+ pos;
in getBytesUntilLimit()
2713
return
totalBytesRetired
+ pos;
in getTotalBytesRead()
2734
if (n > sizeLimit -
totalBytesRetired
- pos) {
in refillBuffer()
2759
if (n > sizeLimit -
totalBytesRetired
in tryRefillBuffer()
[all...]
Completed in 7 milliseconds