Home
last modified time | relevance | path

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

/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/android/
DAndroidTouchProcessor.java199 packet.putDouble(event.getX(pointerIndex)); // physical_x in addPointerForIndex()
200 packet.putDouble(event.getY(pointerIndex)); // physical_y in addPointerForIndex()
212 packet.putDouble(event.getPressure(pointerIndex)); // pressure in addPointerForIndex()
222 packet.putDouble(pressureMin); // pressure_min in addPointerForIndex()
223 packet.putDouble(pressureMax); // pressure_max in addPointerForIndex()
226 packet.putDouble(event.getAxisValue(MotionEvent.AXIS_DISTANCE, pointerIndex)); // distance in addPointerForIndex()
227 packet.putDouble(0.0); // distance_max in addPointerForIndex()
229 packet.putDouble(0.0); // distance in addPointerForIndex()
230 packet.putDouble(0.0); // distance_max in addPointerForIndex()
233 packet.putDouble(event.getSize(pointerIndex)); // size in addPointerForIndex()
[all …]
/third_party/flatbuffers/tests/MyGame/
DMonsterExtra.java20 …public boolean mutateD0(double d0) { int o = __offset(4); if (o != 0) { bb.putDouble(o + bb_pos, d… in mutateD0()
22 …public boolean mutateD1(double d1) { int o = __offset(6); if (o != 0) { bb.putDouble(o + bb_pos, d… in mutateD1()
24 …public boolean mutateD2(double d2) { int o = __offset(8); if (o != 0) { bb.putDouble(o + bb_pos, d… in mutateD2()
26 …public boolean mutateD3(double d3) { int o = __offset(10); if (o != 0) { bb.putDouble(o + bb_pos, … in mutateD3()
41 …public boolean mutateDvec(int j, double dvec) { int o = __offset(20); if (o != 0) { bb.putDouble(_… in mutateDvec()
DMonsterExtra.kt28 bb.putDouble(o + bb_pos, d0) in mutateD0()
42 bb.putDouble(o + bb_pos, d1) in mutateD1()
56 bb.putDouble(o + bb_pos, d2) in mutateD2()
70 bb.putDouble(o + bb_pos, d3) in mutateD3()
149 bb.putDouble(__vector(o) + j * 8, dvec) in dvecInByteBuffer()
/third_party/flatbuffers/java/com/google/flatbuffers/
DByteBufferReadWriteBuf.java101 public void putDouble(double value) { in putDouble() method in ByteBufferReadWriteBuf
102 buffer.putDouble(value); in putDouble()
152 buffer.putDouble(index, value); in setDouble()
DReadWriteBuf.java65 void putDouble(double value); in putDouble() method
DFlatBufferBuilder.java385 public void putDouble (double x) { bb.putDouble(space -= Constants.SIZEOF_DOUBLE, x); } in putDouble() method in FlatBufferBuilder
435 public void addDouble (double x) { prep(Constants.SIZEOF_DOUBLE, 0); putDouble (x); } in addDouble()
DArrayReadWriteBuf.java141 public void putDouble(double value) { in putDouble() method in ArrayReadWriteBuf
DFlexBuffersBuilder.java589 bb.putDouble(val); in writeDouble()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DUnsafeUtil.java164 static void putDouble(Object target, long offset, double value) { in putDouble() method in UnsafeUtil
165 MEMORY_ACCESSOR.putDouble(target, offset, value); in putDouble()
227 static void putDouble(double[] target, long index, double value) { in putDouble() method in UnsafeUtil
228 MEMORY_ACCESSOR.putDouble( in putDouble()
579 public abstract void putDouble(Object target, long offset, double value); in putDouble() method in UnsafeUtil.MemoryAccessor
688 public void putDouble(Object target, long offset, double value) { in putDouble() method in UnsafeUtil.JvmMemoryAccessor
689 unsafe.putDouble(target, offset, value); in putDouble()
796 public void putDouble(Object target, long offset, double value) { in putDouble() method in UnsafeUtil.Android64MemoryAccessor
916 public void putDouble(Object target, long offset, double value) { in putDouble() method in UnsafeUtil.Android32MemoryAccessor
DMessageSchema.java1202 UnsafeUtil.putDouble(message, offset, UnsafeUtil.getDouble(other, offset)); in mergeSingleField()
3919 UnsafeUtil.putDouble(message, offset(typeAndOffset), reader.readDouble()); in mergeFromHelper()
4923 UnsafeUtil.putDouble(message, fieldOffset, decodeDouble(data, position)); in parseProto2Message()
5236 UnsafeUtil.putDouble(message, fieldOffset, decodeDouble(data, position)); in parseProto3Message()
/third_party/flatbuffers/tests/MyGame/Example/
DVec3.kt27 fun mutateTest1(test1: Double) : ByteBuffer = bb.putDouble(bb_pos + 16, test1) in mutateX()
42 builder.putDouble(test1) in mutateX()
DVec3.java22 public void mutateTest1(double test1) { bb.putDouble(bb_pos + 16, test1); } in mutateTest1()
37 builder.putDouble(test1); in createVec3()
DVec3.php89 $builder->putDouble($test1);
DTypeAliases.java37 …public boolean mutateF64(double f64) { int o = __offset(22); if (o != 0) { bb.putDouble(o + bb_pos… in mutateF64()
51 …public boolean mutateVf64(int j, double vf64) { int o = __offset(26); if (o != 0) { bb.putDouble(_… in mutateVf64()
DTypeAliases.kt154 bb.putDouble(o + bb_pos, f64) in mutateF64()
200 bb.putDouble(__vector(o) + j * 8, vf64) in vf64InByteBuffer()
DTypeAliases.php363 $builder->putDouble($data[$i]);
DMonster.php1401 $builder->putDouble($data[$i]);
DMonster.kt521 bb.putDouble(__vector(o) + j * 8, vectorOfDoubles) in vectorOfDoublesInByteBuffer()
DMonster.java140 …t j, double vector_of_doubles) { int o = __offset(70); if (o != 0) { bb.putDouble(__vector(o) + j … in mutateVectorOfDoubles()
/third_party/flatbuffers/php/
DFlatbufferBuilder.php277 public function putDouble($x) function in Google\\FlatBuffers\\FlatbufferBuilder
279 $this->bb->putDouble($this->space -= 8, $x);
399 $this->putDouble($x);
DByteBuffer.php307 public function putDouble($offset, $value) function in Google\\FlatBuffers\\ByteBuffer