Home
last modified time | relevance | path

Searched refs:intBytes (Results 1 – 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
DMjpegFileWriter.java74 aviOutput.write(intBytes(swapInt(useLength))); in addImage()
91 raf.write(intBytes(swapInt((int) size - 8))); in finishAVI()
93 raf.write(intBytes(swapInt((int) (size - 8 - aviMovieOffset - indexlistBytes.length)))); in finishAVI()
116 public static byte[] intBytes(int i) { in intBytes() method in MjpegFileWriter
149 baos.write(intBytes(swapInt(fileSize))); in toBytes()
152 baos.write(intBytes(swapInt(listSize))); in toBytes()
209 baos.write(intBytes(swapInt(cb))); in toBytes()
210 baos.write(intBytes(swapInt(dwMicroSecPerFrame))); in toBytes()
211 baos.write(intBytes(swapInt(dwMaxBytesPerSec))); in toBytes()
212 baos.write(intBytes(swapInt(dwPaddingGranularity))); in toBytes()
[all …]
/external/icu4c/common/
Dbytestriebuilder.cpp427 char intBytes[5]; in writeValueAndFinal() local
430 intBytes[0]=(char)BytesTrie::kFiveByteValueLead; in writeValueAndFinal()
431 intBytes[1]=(char)(i>>24); in writeValueAndFinal()
432 intBytes[2]=(char)(i>>16); in writeValueAndFinal()
433 intBytes[3]=(char)(i>>8); in writeValueAndFinal()
434 intBytes[4]=(char)i; in writeValueAndFinal()
440 intBytes[0]=(char)(BytesTrie::kMinTwoByteValueLead+(i>>8)); in writeValueAndFinal()
443 intBytes[0]=(char)(BytesTrie::kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()
445 intBytes[0]=(char)BytesTrie::kFourByteValueLead; in writeValueAndFinal()
446 intBytes[1]=(char)(i>>16); in writeValueAndFinal()
[all …]