Home
last modified time | relevance | path

Searched refs:addLong (Results 1 – 21 of 21) sorted by relevance

/external/protobuf/java/core/src/test/java/com/google/protobuf/
DLongArrayListTest.java67 list.addLong(3); in testMakeImmutable()
68 list.addLong(4); in testMakeImmutable()
69 list.addLong(5); in testMakeImmutable()
70 list.addLong(7); in testMakeImmutable()
147 list.addLong(3); in testSize()
148 list.addLong(4); in testSize()
149 list.addLong(6); in testSize()
150 list.addLong(8); in testSize()
161 list.addLong(2); in testSet()
162 list.addLong(4); in testSet()
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DLongArrayList.java164 addLong(index, element); in add()
169 public void addLong(long element) { in addLong() method in LongArrayList
170 addLong(size, element); in addLong()
174 private void addLong(int index, long element) { in addLong() method in LongArrayList
DCodedInputStreamReader.java410 plist.addLong(input.readUInt64()); in readUInt64List()
416 plist.addLong(input.readUInt64()); in readUInt64List()
468 plist.addLong(input.readInt64()); in readInt64List()
474 plist.addLong(input.readInt64()); in readInt64List()
585 plist.addLong(input.readFixed64()); in readFixed64List()
590 plist.addLong(input.readFixed64()); in readFixed64List()
1058 plist.addLong(input.readSFixed64()); in readSFixed64List()
1063 plist.addLong(input.readSFixed64()); in readSFixed64List()
1173 plist.addLong(input.readSInt64()); in readSInt64List()
1179 plist.addLong(input.readSInt64()); in readSInt64List()
DBinaryReader.java499 plist.addLong(readVarint64()); in readUInt64List()
505 plist.addLong(readUInt64()); in readUInt64List()
563 plist.addLong(readVarint64()); in readInt64List()
569 plist.addLong(readInt64()); in readInt64List()
692 plist.addLong(readLittleEndian64_NoCheck()); in readFixed64List()
697 plist.addLong(readFixed64()); in readFixed64List()
1213 plist.addLong(readLittleEndian64_NoCheck()); in readSFixed64List()
1218 plist.addLong(readSFixed64()); in readSFixed64List()
1338 plist.addLong(CodedInputStream.decodeZigZag64(readVarint64())); in readSInt64List()
1343 plist.addLong(readSInt64()); in readSInt64List()
DArrayDecoders.java291 output.addLong(registers.long1); in decodeVarint64List()
298 output.addLong(registers.long1); in decodeVarint64List()
324 output.addLong(decodeFixed64(data, position)); in decodeFixed64List()
331 output.addLong(decodeFixed64(data, nextPosition)); in decodeFixed64List()
410 output.addLong(CodedInputStream.decodeZigZag64(registers.long1)); in decodeSInt64List()
417 output.addLong(CodedInputStream.decodeZigZag64(registers.long1)); in decodeSInt64List()
446 output.addLong(registers.long1); in decodePackedVarint64List()
477 output.addLong(decodeFixed64(data, position)); in decodePackedFixed64List()
559 output.addLong(CodedInputStream.decodeZigZag64(registers.long1)); in decodePackedSInt64List()
DInternal.java637 void addLong(long element);
/external/flatbuffers/tests/MyGame/Example/
DMonster.kt838 …fun addTesthashs64Fnv1(builder: FlatBufferBuilder, testhashs64Fnv1: Long) = builder.addLong(18, te… in startTestnestedflatbufferVector()
839 …ashu64Fnv1(builder: FlatBufferBuilder, testhashu64Fnv1: ULong) = builder.addLong(19, testhashu64Fn… in startTestnestedflatbufferVector()
842 …shs64Fnv1a(builder: FlatBufferBuilder, testhashs64Fnv1a: Long) = builder.addLong(22, testhashs64Fn… in startTestnestedflatbufferVector()
843 …hu64Fnv1a(builder: FlatBufferBuilder, testhashu64Fnv1a: ULong) = builder.addLong(23, testhashu64Fn… in startTestnestedflatbufferVector()
882 builder.addLong(data[i]) in startFlexVector()
906 …erence(builder: FlatBufferBuilder, singleWeakReference: ULong) = builder.addLong(36, singleWeakRef… in startVectorOfReferrablesVector()
911 builder.addLong(data[i].toLong()) in startVectorOfReferrablesVector()
925 …eference(builder: FlatBufferBuilder, coOwningReference: ULong) = builder.addLong(39, coOwningRefer… in startVectorOfStrongReferrablesVector()
930 builder.addLong(data[i].toLong()) in startVectorOfStrongReferrablesVector()
935 …ference(builder: FlatBufferBuilder, nonOwningReference: ULong) = builder.addLong(41, nonOwningRefe… in startVectorOfCoOwningReferencesVector()
[all …]
DMonster.java227 …sthashs64Fnv1(FlatBufferBuilder builder, long testhashs64Fnv1) { builder.addLong(18, testhashs64Fn… in addTesthashs64Fnv1()
228 …sthashu64Fnv1(FlatBufferBuilder builder, long testhashu64Fnv1) { builder.addLong(19, testhashu64Fn… in addTesthashu64Fnv1()
231 …hashs64Fnv1a(FlatBufferBuilder builder, long testhashs64Fnv1a) { builder.addLong(22, testhashs64Fn… in addTesthashs64Fnv1a()
232 …hashu64Fnv1a(FlatBufferBuilder builder, long testhashu64Fnv1a) { builder.addLong(23, testhashu64Fn… in addTesthashu64Fnv1a()
251 …r(8, data.length, 8); for (int i = data.length - 1; i >= 0; i--) builder.addLong(data[i]); return … in createVectorOfLongsVector()
260 …Reference(FlatBufferBuilder builder, long singleWeakReference) { builder.addLong(36, singleWeakRef… in addSingleWeakReference()
262 …r(8, data.length, 8); for (int i = data.length - 1; i >= 0; i--) builder.addLong(data[i]); return … in createVectorOfWeakReferencesVector()
267 …ngReference(FlatBufferBuilder builder, long coOwningReference) { builder.addLong(39, coOwningRefer… in addCoOwningReference()
269 …r(8, data.length, 8); for (int i = data.length - 1; i >= 0; i--) builder.addLong(data[i]); return … in createVectorOfCoOwningReferencesVector()
271 …gReference(FlatBufferBuilder builder, long nonOwningReference) { builder.addLong(41, nonOwningRefe… in addNonOwningReference()
[all …]
DTypeAliases.kt236 fun addI64(builder: FlatBufferBuilder, i64: Long) = builder.addLong(6, i64, 0L) in startTypeAliases()
237 fun addU64(builder: FlatBufferBuilder, u64: ULong) = builder.addLong(7, u64.toLong(), 0) in startTypeAliases()
DTypeAliases.java89 public static void addI64(FlatBufferBuilder builder, long i64) { builder.addLong(6, i64, 0L); } in addI64()
90 public static void addU64(FlatBufferBuilder builder, long u64) { builder.addLong(7, u64, 0L); } in addU64()
DStat.kt71 fun addVal_(builder: FlatBufferBuilder, val_: Long) = builder.addLong(1, val_, 0L) in startStat()
DReferrable.kt52 fun addId(builder: FlatBufferBuilder, id: ULong) = builder.addLong(0, id.toLong(), 0) in startReferrable()
DStat.java39 public static void addVal(FlatBufferBuilder builder, long val) { builder.addLong(1, val, 0L); } in addVal()
DReferrable.java29 public static void addId(FlatBufferBuilder builder, long id) { builder.addLong(0, id, 0L); } in addId()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DSimpleElementValueGen.java62 idx = getConstantPool().addLong(value); in SimpleElementValueGen()
143 idx = cpool.addLong(value.getValueLong()); in SimpleElementValueGen()
DPUSH.java88 instruction = new LDC2_W(cp.addLong(value)); in PUSH()
DConstantPoolGen.java469 public int addLong( final long n ) { in addLong() method in ConstantPoolGen
806 return addLong(((ConstantLong) c).getBytes()); in addConstant()
DFieldGen.java251 return super.getConstantPool().addLong(((Long) value).longValue()); in addConstant()
/external/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java388 public void addLong (long x) { prep(Constants.SIZEOF_LONG, 0); putLong (x); } in addLong() method in FlatBufferBuilder
741 …public void addLong (int o, long x, long d) { if(force_defaults || x != d) { addLong (x)… in addLong() method in FlatBufferBuilder
/external/flatbuffers/php/
DFlatbufferBuilder.php366 public function addLong($x) function in Google\\FlatBuffers\\FlatbufferBuilder
502 $this->addLong($x);
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DAbstractHttp2Headers.java384 public Http2Headers addLong(CharSequence name, long value) { in addLong() method in AbstractHttp2Headers