Package com.webobjects.foundation

Examples of com.webobjects.foundation.NSMutableData.appendByte()


      long bits = Double.doubleToRawLongBits(convertedDate);
      data.appendByte((byte) ((bits >>> 56) & 0xff));
      data.appendByte((byte) ((bits >>> 48) & 0xff));
      data.appendByte((byte) ((bits >>> 40) & 0xff));
      data.appendByte((byte) ((bits >>> 32) & 0xff));
      data.appendByte((byte) ((bits >>> 24) & 0xff));
      data.appendByte((byte) ((bits >>> 16) & 0xff));
      data.appendByte((byte) ((bits >>> 8) & 0xff));
      data.appendByte((byte) ((bits >>> 0) & 0xff));
      return data.bytes();
    }
View Full Code Here


      data.appendByte((byte) ((bits >>> 56) & 0xff));
      data.appendByte((byte) ((bits >>> 48) & 0xff));
      data.appendByte((byte) ((bits >>> 40) & 0xff));
      data.appendByte((byte) ((bits >>> 32) & 0xff));
      data.appendByte((byte) ((bits >>> 24) & 0xff));
      data.appendByte((byte) ((bits >>> 16) & 0xff));
      data.appendByte((byte) ((bits >>> 8) & 0xff));
      data.appendByte((byte) ((bits >>> 0) & 0xff));
      return data.bytes();
    }
View Full Code Here

      data.appendByte((byte) ((bits >>> 48) & 0xff));
      data.appendByte((byte) ((bits >>> 40) & 0xff));
      data.appendByte((byte) ((bits >>> 32) & 0xff));
      data.appendByte((byte) ((bits >>> 24) & 0xff));
      data.appendByte((byte) ((bits >>> 16) & 0xff));
      data.appendByte((byte) ((bits >>> 8) & 0xff));
      data.appendByte((byte) ((bits >>> 0) & 0xff));
      return data.bytes();
    }

    /*
 
View Full Code Here

      data.appendByte((byte) ((bits >>> 40) & 0xff));
      data.appendByte((byte) ((bits >>> 32) & 0xff));
      data.appendByte((byte) ((bits >>> 24) & 0xff));
      data.appendByte((byte) ((bits >>> 16) & 0xff));
      data.appendByte((byte) ((bits >>> 8) & 0xff));
      data.appendByte((byte) ((bits >>> 0) & 0xff));
      return data.bytes();
    }

    /*
     * data 0100 nnnn [int] ... // nnnn is number of bytes unless 1111 then int count follows, followed by bytes
View Full Code Here

      } else if (value >= 15) {
        data.appendByte((byte) typeMarker(marker, 0x0f));
        data.appendByte((byte) typeMarker(Type.kCFBinaryPlistMarkerInt, 0));
        data.appendByte((byte) ((value >>> 0) & 0xff));
      } else {
        data.appendByte((byte) typeMarker(marker, (byte) (value & 0x0f)));
      }
      return data.bytes();
    }

    /**
 
View Full Code Here

     * @see offsetIntSize
     */
    private byte[] encodeInt(long value) {
      NSMutableData data = new NSMutableData();
      if (value > Integer.MAX_VALUE || value < 0) {
        data.appendByte((byte) typeMarker(Type.kCFBinaryPlistMarkerInt, 3));
        data.appendByte((byte) ((value >>> 56) & 0xff));
        data.appendByte((byte) ((value >>> 48) & 0xff));
        data.appendByte((byte) ((value >>> 40) & 0xff));
        data.appendByte((byte) ((value >>> 32) & 0xff));
        data.appendByte((byte) ((value >>> 24) & 0xff));
View Full Code Here

     */
    private byte[] encodeInt(long value) {
      NSMutableData data = new NSMutableData();
      if (value > Integer.MAX_VALUE || value < 0) {
        data.appendByte((byte) typeMarker(Type.kCFBinaryPlistMarkerInt, 3));
        data.appendByte((byte) ((value >>> 56) & 0xff));
        data.appendByte((byte) ((value >>> 48) & 0xff));
        data.appendByte((byte) ((value >>> 40) & 0xff));
        data.appendByte((byte) ((value >>> 32) & 0xff));
        data.appendByte((byte) ((value >>> 24) & 0xff));
        data.appendByte((byte) ((value >>> 16) & 0xff));
View Full Code Here

    private byte[] encodeInt(long value) {
      NSMutableData data = new NSMutableData();
      if (value > Integer.MAX_VALUE || value < 0) {
        data.appendByte((byte) typeMarker(Type.kCFBinaryPlistMarkerInt, 3));
        data.appendByte((byte) ((value >>> 56) & 0xff));
        data.appendByte((byte) ((value >>> 48) & 0xff));
        data.appendByte((byte) ((value >>> 40) & 0xff));
        data.appendByte((byte) ((value >>> 32) & 0xff));
        data.appendByte((byte) ((value >>> 24) & 0xff));
        data.appendByte((byte) ((value >>> 16) & 0xff));
        data.appendByte((byte) ((value >>> 8) & 0xff));
View Full Code Here

      NSMutableData data = new NSMutableData();
      if (value > Integer.MAX_VALUE || value < 0) {
        data.appendByte((byte) typeMarker(Type.kCFBinaryPlistMarkerInt, 3));
        data.appendByte((byte) ((value >>> 56) & 0xff));
        data.appendByte((byte) ((value >>> 48) & 0xff));
        data.appendByte((byte) ((value >>> 40) & 0xff));
        data.appendByte((byte) ((value >>> 32) & 0xff));
        data.appendByte((byte) ((value >>> 24) & 0xff));
        data.appendByte((byte) ((value >>> 16) & 0xff));
        data.appendByte((byte) ((value >>> 8) & 0xff));
        data.appendByte((byte) ((value >>> 0) & 0xff));
View Full Code Here

      if (value > Integer.MAX_VALUE || value < 0) {
        data.appendByte((byte) typeMarker(Type.kCFBinaryPlistMarkerInt, 3));
        data.appendByte((byte) ((value >>> 56) & 0xff));
        data.appendByte((byte) ((value >>> 48) & 0xff));
        data.appendByte((byte) ((value >>> 40) & 0xff));
        data.appendByte((byte) ((value >>> 32) & 0xff));
        data.appendByte((byte) ((value >>> 24) & 0xff));
        data.appendByte((byte) ((value >>> 16) & 0xff));
        data.appendByte((byte) ((value >>> 8) & 0xff));
        data.appendByte((byte) ((value >>> 0) & 0xff));
      } else if (value > Short.MAX_VALUE || value < Short.MIN_VALUE) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.