Searched defs:intBytes (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBytesTrieBuilder.java212 private final byte[] intBytes=new byte[5]; field in class:BytesTrieBuilder
227 intBytes[0]=(byte)BytesTrie.kFiveByteValueLead;
228 intBytes[1]=(byte)(i>>24);
229 intBytes[2]=(byte)(i>>16);
230 intBytes[3]=(byte)(i>>8);
231 intBytes[4]=(byte)i;
234 // intBytes[0]=(byte)(BytesTrie.kMinOneByteValueLead+i);
237 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8));
240 intBytes[0]=(byte)(BytesTrie.kMinThreeByteValueLead+(i>>16));
242 intBytes[
[all...]
/external/icu/icu4c/source/common/
H A Dbytestriebuilder.cpp429 char intBytes[5]; local
432 intBytes[0]=(char)BytesTrie::kFiveByteValueLead;
433 intBytes[1]=(char)((uint32_t)i>>24);
434 intBytes[2]=(char)((uint32_t)i>>16);
435 intBytes[3]=(char)((uint32_t)i>>8);
436 intBytes[4]=(char)i;
439 // intBytes[0]=(char)(BytesTrie::kMinOneByteValueLead+i);
442 intBytes[0]=(char)(BytesTrie::kMinTwoByteValueLead+(i>>8));
445 intBytes[0]=(char)(BytesTrie::kMinThreeByteValueLead+(i>>16));
447 intBytes[
475 char intBytes[5]; local
[all...]
/external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
H A DMjpegFileWriter.java74 aviOutput.write(intBytes(swapInt(useLength)));
91 raf.write(intBytes(swapInt((int) size - 8)));
93 raf.write(intBytes(swapInt((int) (size - 8 - aviMovieOffset - indexlistBytes.length))));
116 public static byte[] intBytes(int i) { method in class:MjpegFileWriter
149 baos.write(intBytes(swapInt(fileSize)));
152 baos.write(intBytes(swapInt(listSize)));
209 baos.write(intBytes(swapInt(cb)));
210 baos.write(intBytes(swapInt(dwMicroSecPerFrame)));
211 baos.write(intBytes(swapInt(dwMaxBytesPerSec)));
212 baos.write(intBytes(swapIn
[all...]

Completed in 209 milliseconds