Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for writeDouble (0.08 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

            write( tmp, 0, 8 );
        }
        public final void writeFloat( float v ) throws SmbException {
            Encdec.enc_floatbe( v, tmp, 0 );
            write( tmp, 0, 4 );
        }
        public final void writeDouble( double v ) throws SmbException {
            Encdec.enc_doublebe( v, tmp, 0 );
            write( tmp, 0, 8 );
        }
        public final void writeBytes( String s ) throws SmbException {
            byte[] b = s.getBytes();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

        // Write out array length
        int length = length();
        s.writeInt(length);
    
        // Write out all elements in the proper order.
        for (int i = 0; i < length; i++) {
          s.writeDouble(get(i));
        }
      }
    
      /** Reconstitutes the instance from a stream (that is, deserializes it). */
      private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jun 14 17:55:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/ByteStreams.java

          try {
            output.writeChars(s);
          } catch (IOException impossible) {
            throw new AssertionError(impossible);
          }
        }
    
        @Override
        public void writeDouble(double v) {
          try {
            output.writeDouble(v);
          } catch (IOException impossible) {
            throw new AssertionError(impossible);
          }
        }
    
        @Override
        public void writeFloat(float v) {
          try {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbRandomAccessFile.java

        @Override
        public final void writeFloat ( float v ) throws SmbException {
            Encdec.enc_floatbe(v, this.tmp, 0);
            write(this.tmp, 0, 4);
        }
    
    
        @Override
        public final void writeDouble ( double v ) throws SmbException {
            Encdec.enc_doublebe(v, this.tmp, 0);
            write(this.tmp, 0, 8);
        }
    
    
        @Override
        public final void writeBytes ( String s ) throws SmbException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 08 12:01:33 UTC 2020
    - 18.5K bytes
    - Viewed (0)
Back to top