Home
last modified time | relevance | path

Searched refs:readDouble (Results 1 – 25 of 68) sorted by relevance

123

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
DAbstractStepInterpolator.java491 globalPreviousTime = in.readDouble(); in readBaseExternal()
492 globalCurrentTime = in.readDouble(); in readBaseExternal()
493 softPreviousTime = in.readDouble(); in readBaseExternal()
494 softCurrentTime = in.readDouble(); in readBaseExternal()
495 h = in.readDouble(); in readBaseExternal()
504 currentState[i] = in.readDouble(); in readBaseExternal()
515 return in.readDouble(); in readBaseExternal()
DNordsieckStepInterpolator.java260 scalingH = in.readDouble(); in readExternal()
261 referenceTime = in.readDouble(); in readExternal()
268 scaled[j] = in.readDouble(); in readExternal()
DDummyStepInterpolator.java141 currentDerivative[i] = in.readDouble(); in readExternal()
/external/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java186 private static double readDouble(ReadBuf buff, int end, int byteWidth) { in readDouble() method in FlexBuffers
374 case FBT_FLOAT: return (int) readDouble(bb, end, parentWidth); in asInt()
375 … case FBT_INDIRECT_FLOAT: return (int) readDouble(bb, indirect(bb, end, parentWidth), byteWidth); in asInt()
403 case FBT_FLOAT: return (long) readDouble(bb, end, parentWidth); in asUInt()
404 …case FBT_INDIRECT_FLOAT: return (long) readDouble(bb, indirect(bb, end, parentWidth), parentWidth… in asUInt()
432 case FBT_FLOAT: return (long) readDouble(bb, end, parentWidth); in asLong()
433 … case FBT_INDIRECT_FLOAT: return (long) readDouble(bb, indirect(bb, end, parentWidth), byteWidth); in asLong()
459 return readDouble(bb, end, parentWidth); in asFloat()
462 … case FBT_INDIRECT_FLOAT: return readDouble(bb, indirect(bb, end, parentWidth), byteWidth); in asFloat()
/external/proguard/src/proguard/classfile/io/
DRuntimeDataInput.java80 public double readDouble() in readDouble() method in RuntimeDataInput
84 return dataInput.readDouble(); in readDouble()
/external/emma/core/java12/com/vladium/jcd/cls/constant/
DCONSTANT_Double_info.java83 m_value = bytes.readDouble (); in CONSTANT_Double_info()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStreamReader.java109 public double readDouble() throws IOException { in readDouble() method in CodedInputStreamReader
111 return input.readDouble(); in readDouble()
295 plist.addDouble(input.readDouble()); in readDoubleList()
300 plist.addDouble(input.readDouble()); in readDoubleList()
321 target.add(input.readDouble()); in readDoubleList()
326 target.add(input.readDouble()); in readDoubleList()
1287 return readDouble(); in readField()
DReader.java79 double readDouble() throws IOException; in readDouble() method
/external/javassist/src/main/javassist/compiler/
DLex.java129 return readDouble(tbuf, c, token); in readLine()
293 return readDouble(tbuf, c2, token); in readNumber()
303 private int readDouble(StringBuffer sbuf, int c, Token token) { in readDouble() method in Lex
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DDormandPrince853StepInterpolator.java470 yDotKLast[0][i] = in.readDouble(); in readExternal()
471 yDotKLast[1][i] = in.readDouble(); in readExternal()
472 yDotKLast[2][i] = in.readDouble(); in readExternal()
DRungeKuttaStepInterpolator.java168 yDotK[k][i] = in.readDouble(); in readExternal()
/external/guava/android/guava/src/com/google/common/io/
DByteArrayDataInput.java85 double readDouble(); in readDouble() method
DLittleEndianDataInputStream.java170 public double readDouble() throws IOException { in readDouble() method in LittleEndianDataInputStream
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DConstantDouble.java62 this(file.readDouble()); in ConstantDouble()
/external/guava/guava/src/com/google/common/io/
DByteArrayDataInput.java85 double readDouble(); in readDouble() method
DLittleEndianDataInputStream.java170 public double readDouble() throws IOException { in readDouble() method in LittleEndianDataInputStream
/external/protobuf/js/binary/
Dreader.js480 return this.readDouble();
882 jspb.BinaryReader.prototype.readDouble = function() { method in jspb.BinaryReader
885 return this.decoder_.readDouble();
1177 return this.readPackedField_(this.decoder_.readDouble);
/external/protobuf/objectivec/
DGPBCodedInputStream.h117 - (double)readDouble;
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/testsupport/
DMockDataInput.java86 public double readDouble() throws IOException { in readDouble() method in MockDataInput
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
DCodedInputByteBufferNano.java148 public double readDouble() throws IOException { in readDouble() method in CodedInputByteBufferNano
648 return readDouble(); in readPrimitiveField()
/external/guava/android/guava/src/com/google/common/util/concurrent/
DAtomicDouble.java239 set(s.readDouble()); in readObject()
/external/guava/guava/src/com/google/common/util/concurrent/
DAtomicDouble.java246 set(s.readDouble()); in readObject()
/external/guava/guava-tests/test/com/google/common/io/
DLittleEndianDataOutputStreamTest.java78 assertEquals(0xBEBAFECAEFBEADDEL, Double.doubleToLongBits(in.readDouble())); in testWriteLittleEndian()
/external/guava/android/guava-tests/test/com/google/common/io/
DLittleEndianDataOutputStreamTest.java78 assertEquals(0xBEBAFECAEFBEADDEL, Double.doubleToLongBits(in.readDouble())); in testWriteLittleEndian()
/external/turbine/java/com/google/turbine/bytecode/
DConstantPoolReader.java161 return new Const.DoubleValue(reader.readDouble()); in constant()

123