Home
last modified time | relevance | path

Searched refs:readInt64 (Results 1 – 25 of 45) sorted by relevance

12

/external/protobuf/js/binary/
Dreader.js485 return this.readInt64();
637 jspb.BinaryReader.prototype.readInt64 = function() { method in jspb.BinaryReader
798 return this.decoder_.readInt64();
1066 return this.readPackedField_(this.decoder_.readInt64);
Ddecoder_test.js300 jspb.BinaryDecoder.prototype.readInt64,
Dreader_test.js169 assertThrows(function() {reader.readInt64()});
346 jspb.BinaryReader.prototype.readInt64,
Ddecoder.js844 jspb.BinaryDecoder.prototype.readInt64 = function() { method in jspb.BinaryDecoder
/external/llvm/lib/ProfileData/
DSampleProfReader.cpp501 if (GcovBuffer.readInt64(Val) && Val <= std::numeric_limits<T>::max()) in readNumber()
591 if (!GcovBuffer.readInt64(HeadCount)) in readOneFunctionProfile()
642 if (!GcovBuffer.readInt64(Count)) in readOneFunctionProfile()
676 if (!GcovBuffer.readInt64(TargetIdx)) in readOneFunctionProfile()
681 if (!GcovBuffer.readInt64(TargetCount)) in readOneFunctionProfile()
/external/protobuf/objectivec/
DGPBCodedInputStream.h68 - (int64_t)readInt64;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
DSampleProfReader.cpp601 if (GcovBuffer.readInt64(Val) && Val <= std::numeric_limits<T>::max()) in readNumber()
691 if (!GcovBuffer.readInt64(HeadCount)) in readOneFunctionProfile()
742 if (!GcovBuffer.readInt64(Count)) in readOneFunctionProfile()
776 if (!GcovBuffer.readInt64(TargetIdx)) in readOneFunctionProfile()
781 if (!GcovBuffer.readInt64(TargetCount)) in readOneFunctionProfile()
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
DCodedInputByteBufferNano.java163 public long readInt64() throws IOException { in readInt64() method in CodedInputByteBufferNano
666 return readInt64(); in readPrimitiveField()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DWireFormat.java226 case INT64 : return input.readInt64 (); in readPrimitiveField()
DUnknownFieldSetLite.java305 storeField(tag, input.readInt64()); in mergeFieldFrom()
DCodedInputStream.java216 long value = readInt64(); in skipField()
332 public long readInt64() throws IOException { in readInt64() method in CodedInputStream
/external/grpc-grpc-java/grpclb/src/generated/main/java/io/grpc/lb/v1/
DClientStats.java77 numCallsStarted_ = input.readInt64(); in ClientStats()
82 numCallsFinished_ = input.readInt64(); in ClientStats()
87 numCallsFinishedWithClientFailedToSend_ = input.readInt64(); in ClientStats()
92 numCallsFinishedKnownReceived_ = input.readInt64(); in ClientStats()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DGCOV.h135 uint64_t readInt64() { in readInt64() function
/external/grpc-grpc-java/services/src/generated/main/java/io/grpc/channelz/v1/
DGetServerSocketsRequest.java56 serverId_ = input.readInt64(); in GetServerSocketsRequest()
61 startSocketId_ = input.readInt64(); in GetServerSocketsRequest()
DSocketData.java67 streamsStarted_ = input.readInt64(); in SocketData()
72 streamsSucceeded_ = input.readInt64(); in SocketData()
77 streamsFailed_ = input.readInt64(); in SocketData()
82 messagesSent_ = input.readInt64(); in SocketData()
87 messagesReceived_ = input.readInt64(); in SocketData()
92 keepAlivesSent_ = input.readInt64(); in SocketData()
DServerData.java74 callsStarted_ = input.readInt64(); in ServerData()
79 callsSucceeded_ = input.readInt64(); in ServerData()
84 callsFailed_ = input.readInt64(); in ServerData()
DChannelData.java94 callsStarted_ = input.readInt64(); in ChannelData()
99 callsSucceeded_ = input.readInt64(); in ChannelData()
104 callsFailed_ = input.readInt64(); in ChannelData()
/external/protobuf/objectivec/Tests/
DGPBCodedInputStreamTests.m99 XCTAssertEqual(value, [input readInt64]);
120 XCTAssertThrows([input readInt64]);
/external/swiftshader/third_party/LLVM/lib/VMCore/
DGCOV.cpp108 Blocks[i]->addCount(Buff.readInt64()); in read()
/external/flatbuffers/tests/
Dmonster_test_generated.ts596 return offset ? this.bb!.readInt64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
1128 return offset ? this.bb!.readInt64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
1220 return offset ? this.bb!.readInt64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
1442 …return offset ? this.bb!.readInt64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb!…
2696 return offset ? this.bb!.readInt64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
Dmonster_test_generated.js667 return offset ? this.bb.readInt64(this.bb_pos + offset) : this.bb.createLong(0, 0);
1219 return offset ? this.bb.readInt64(this.bb_pos + offset) : this.bb.createLong(0, 0);
1311 return offset ? this.bb.readInt64(this.bb_pos + offset) : this.bb.createLong(0, 0);
1531 …return offset ? this.bb.readInt64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.cr…
2842 return offset ? this.bb.readInt64(this.bb_pos + offset) : this.bb.createLong(0, 0);
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
DCodedInputStreamMicro.java171 public long readInt64() throws IOException { in readInt64() method in CodedInputStreamMicro
/external/libchrome/mojo/public/js/lib/
Dcodec.js93 Decoder.prototype.readInt64 = function() { method in Decoder
803 return decoder.readInt64();
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
DGCOV.h207 bool readInt64(uint64_t &Val) { in readInt64() function
/external/llvm/include/llvm/Support/
DGCOV.h197 bool readInt64(uint64_t &Val) { in readInt64() function

12