Home
last modified time | relevance | path

Searched refs:intToBytes (Results 1 – 3 of 3) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/icu/
DICUResourceWriter.java384 valLenBytes = intToBytes(val.length()); in writeBinary()
506 out.write(intToBytes(count)); in writeBinary()
507 LDML2ICUBinaryWriter.written += intToBytes(count).length; in writeBinary()
519 out.write(intToBytes(0)); in writeBinary()
520 LDML2ICUBinaryWriter.written += intToBytes(0).length; in writeBinary()
627 out.write(intToBytes(count)); in writeBinary()
628 LDML2ICUBinaryWriter.written += intToBytes(count).length; in writeBinary()
768 valLenBytes = intToBytes(val.length()); in writeBinary()
951 out.write(intToBytes(count)); in writeBinary()
952 LDML2ICUBinaryWriter.written += intToBytes(count).length; in writeBinary()
[all …]
DLDML2ICUBinaryWriter.java790 rootBytes = intToBytes(root); in writeKeyString()
896 private static byte[] intToBytes(int x) { in intToBytes() method
924 temp = intToBytes(x[i]); in intArrayToBytes()
/external/smali/smali/src/main/java/org/jf/smali/
DLiteralTools.java356 public static byte[] intToBytes(int value) { in intToBytes() method in LiteralTools
375 return intToBytes(Float.floatToRawIntBits(value)); in floatToBytes()