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

  /libcore/luni/src/main/java/java/lang/
StrictMath.java 543 long tBits = Double.doubleToRawLongBits(0.0) & 0x00000000ffffffffL;
548 tBits |= 0x43500000L << 32;
549 t = Double.longBitsToDouble(tBits);
553 tBits = Double.doubleToRawLongBits(t);
554 long tBitsHigh = tBits >> 32;
555 tBits &= 0x00000000ffffffffL;
556 tBits |= ((tBitsHigh / 3) + B2) << 32;
557 t = Double.longBitsToDouble(tBits);
561 tBits |= ((long) ((hx / 3) + B1)) << 32;
562 t = Double.longBitsToDouble(tBits);
    [all...]
  /external/skia/src/pathops/
SkPathOpsWinding.cpp 223 int tBits = 0;
226 ++tBits;
228 if (tBits) {
229 int tIndex = (tBase - 1) & ((1 << tBits) - 1);

Completed in 104 milliseconds