Searched refs:encodeVarint64 (Results 1 – 2 of 2) sorted by relevance
86 ProtoIntegerType.DEFAULT -> encodeVarint64(number.toLong()) in ByteArrayOutput()94 ProtoIntegerType.DEFAULT -> encodeVarint64(number) in ByteArrayOutput()95 ProtoIntegerType.SIGNED -> encodeVarint64((number shl 1) xor (number shr 63)) in ByteArrayOutput()
219 fun encodeVarint64(value: Long) { in encodeVarint64() method