HomeSort by relevance Sort by last modified time
    Searched full:hi32 (Results 1 - 2 of 2) sorted by null

  /dalvik/libcore/luni/src/main/java/java/lang/
Long.java 520 int hi32 = (int) (n >>> 32); local
526 // Adjust midDigit for hi32. (assert hi32 == 1 || hi32 == 2)
527 midDigit -= hi32 << 2; // 1L << 32 == -4 MOD 10
  /external/bzip2/
bzip2.c 238 void uInt64_from_UInt32s ( UInt64* n, UInt32 lo32, UInt32 hi32 )
240 n->b[7] = (UChar)((hi32 >> 24) & 0xFF);
241 n->b[6] = (UChar)((hi32 >> 16) & 0xFF);
242 n->b[5] = (UChar)((hi32 >> 8) & 0xFF);
243 n->b[4] = (UChar) (hi32 & 0xFF);
    [all...]

Completed in 18 milliseconds