Home
last modified time | relevance | path

Searched refs:readUInt64 (Results 1 – 12 of 12) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStreamReader.java121 public long readUInt64() throws IOException { in readUInt64() method in CodedInputStreamReader
123 return input.readUInt64(); in readUInt64()
410 plist.addLong(input.readUInt64()); in readUInt64List()
416 plist.addLong(input.readUInt64()); in readUInt64List()
436 target.add(input.readUInt64()); in readUInt64List()
442 target.add(input.readUInt64()); in readUInt64List()
1315 return readUInt64(); in readField()
DReader.java91 long readUInt64() throws IOException; in readUInt64() method
DWireFormat.java235 return input.readUInt64(); in readPrimitiveField()
DBinaryReader.java173 public long readUInt64() throws IOException { in readUInt64() method in BinaryReader.SafeHeapReader
505 plist.addLong(readUInt64()); in readUInt64List()
534 target.add(readUInt64()); in readUInt64List()
1487 return readUInt64(); in readField()
DCodedInputStream.java261 public abstract long readUInt64() throws IOException; in readUInt64() method in CodedInputStream
756 public long readUInt64() throws IOException { in readUInt64() method in CodedInputStream.ArrayDecoder
1470 public long readUInt64() throws IOException { in readUInt64() method in CodedInputStream.UnsafeDirectNioDecoder
2222 public long readUInt64() throws IOException { in readUInt64() method in CodedInputStream.StreamDecoder
3318 public long readUInt64() throws IOException { in readUInt64() method in CodedInputStream.IterableDirectByteBufferDecoder
DExtensionSchemaLite.java219 value = reader.readUInt64(); in parseExtension()
DExtensionSchemaFull.java239 value = reader.readUInt64(); in parseExtension()
DMessageSchema.java3931 UnsafeUtil.putLong(message, offset(typeAndOffset), reader.readUInt64()); in mergeFromHelper()
4209 message, offset(typeAndOffset), Long.valueOf(reader.readUInt64())); in mergeFromHelper()
/third_party/protobuf/objectivec/
DGPBCodedInputStream.h125 - (uint64_t)readUInt64;
DGPBCodedInputStream.m407 - (uint64_t)readUInt64 { method
/third_party/node/src/
Dnode_wasi.h91 inline void readUInt64(char* memory, uint64_t* value, uint32_t offset);
/third_party/protobuf/objectivec/Tests/
DGPBCodedInputStreamTests.m110 XCTAssertEqual((uint64_t)value, [input readUInt64]);