Lines Matching refs:mBits

47228   uintptr_t mBits;
47232 : mBits(reinterpret_cast<uintptr_t>(aValue))
47238 : mBits(reinterpret_cast<uintptr_t>(&aErrorValue) | 1)
47244 bool isOk() const { return (mBits & 1) == 0; }
47246 V* unwrap() const { return reinterpret_cast<V*>(mBits); }
47247 E& unwrapErr() const { return *reinterpret_cast<E*>(mBits ^ 1); }
72491 : mBits(aOther.mBits)
72497 : mBits(reinterpret_cast<uintptr_t>(aAtom))
72507 mBits = reinterpret_cast<uintptr_t>(aNodeInfo->NameAtom());
72511 mBits = reinterpret_cast<uintptr_t>(aNodeInfo) |
72528 mBits = reinterpret_cast<uintptr_t>(aNodeInfo->NameAtom());
72532 mBits = reinterpret_cast<uintptr_t>(aNodeInfo) |
72543 mBits = reinterpret_cast<uintptr_t>(aAtom);
72549 return !(mBits & 1);
72555 return reinterpret_cast<mozilla::dom::NodeInfo*>(mBits & ~1);
72561 return reinterpret_cast<nsIAtom*>(mBits);
72566 return mBits == aOther.mBits;
72572 return reinterpret_cast<uintptr_t>(aAtom) == mBits;
72649 return mBits - 0;
72654 return mBits < reinterpret_cast<uintptr_t>(aOther);
72677 uintptr_t mBits;
72866 union { uint32_t mBits; float mFloat; } pun;
72868 return (pun.mBits & 0x7F800000) == 0x7F800000 &&
72869 (pun.mBits & 0x007FFFFF) != 0;
74964 Sides() : mBits(0) {}
74968 mBits = aSideBits;
74970 bool IsEmpty() const { return mBits == 0; }
74971 bool Top() const { return (mBits & eSideBitsTop) != 0; }
74972 bool Right() const { return (mBits & eSideBitsRight) != 0; }
74973 bool Bottom() const { return (mBits & eSideBitsBottom) != 0; }
74974 bool Left() const { return (mBits & eSideBitsLeft) != 0; }
74978 return (mBits & aSideBits) == aSideBits;
74982 return Sides(SideBits(mBits | aOther.mBits));
74990 mBits |= aOther.mBits;
74999 return mBits == aOther.mBits;
75007 uint8_t mBits;
80388 uintptr_t mBits;
80408 return static_cast<ValueBaseType>(mBits & (uintptr_t(3)));
80416 return reinterpret_cast<void*>(mBits & (~(uintptr_t(3))));
80422 return !mBits;