Lines Matching defs:toByteArray

91         public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
93 byte[] ret = converter.toByteArray(in_buff, in_offset, in_len,
156 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
208 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
257 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
294 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
327 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
349 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
379 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
405 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
431 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
457 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
492 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
524 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
555 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
585 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
621 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
651 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
682 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
715 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
760 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
802 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
844 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
887 public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
1036 public abstract byte[] toByteArray(float[] in_buff, int in_offset,
1039 public final byte[] toByteArray(float[] in_buff, int in_len,
1041 return toByteArray(in_buff, 0, in_len, out_buff, out_offset);
1044 public final byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
1046 return toByteArray(in_buff, in_offset, in_len, out_buff, 0);
1049 public final byte[] toByteArray(float[] in_buff, int in_len,
1051 return toByteArray(in_buff, 0, in_len, out_buff, 0);
1054 public final byte[] toByteArray(float[] in_buff, byte[] out_buff) {
1055 return toByteArray(in_buff, 0, in_buff.length, out_buff, 0);