Searched refs:bytesAsInts (Results 1 – 10 of 10) sorted by relevance
47 private static byte[] Bytes(params int[] bytesAsInts) in Bytes() argument49 byte[] bytes = new byte[bytesAsInts.Length]; in Bytes()50 for (int i = 0; i < bytesAsInts.Length; i++) in Bytes()52 bytes[i] = (byte) bytesAsInts[i]; in Bytes()
742 private static byte[] bytes(int... bytesAsInts) { in bytes() argument743 byte[] bytes = new byte[bytesAsInts.length]; in bytes()744 for (int i = 0; i < bytesAsInts.length; i++) { in bytes()745 bytes[i] = (byte) bytesAsInts[i]; in bytes()
134 private byte[] bytes(int... bytesAsInts) { in bytes() argument135 byte[] bytes = new byte[bytesAsInts.length]; in bytes()136 for (int i = 0; i < bytesAsInts.length; i++) { in bytes()137 bytes[i] = (byte) bytesAsInts[i]; in bytes()
292 private ByteString bytes(int... bytesAsInts) { in bytes() argument293 byte[] bytes = new byte[bytesAsInts.length]; in bytes()294 for (int i = 0; i < bytesAsInts.length; i++) { in bytes()295 bytes[i] = (byte) bytesAsInts[i]; in bytes()
49 private static byte[] Bytes(params int[] bytesAsInts) in Bytes() argument51 byte[] bytes = new byte[bytesAsInts.Length]; in Bytes()52 for (int i = 0; i < bytesAsInts.Length; i++) in Bytes()54 bytes[i] = (byte) bytesAsInts[i]; in Bytes()