Home | History | Annotate | Download | only in aura

Lines Matching full:int64

49 // No single new-style cast works for every conversion to/from int64, so we
56 static int64 ToInt64(T x) { return static_cast<int64>(x); }
57 static T FromInt64(int64 x) { return static_cast<T>(x); }
62 static int64 ToInt64(T* x) { return reinterpret_cast<int64>(x); }
63 static T* FromInt64(int64 x) { return reinterpret_cast<T*>(x); }
68 static int64 ToInt64(bool x) { return static_cast<int64>(x); }
69 static bool FromInt64(int64 x) { return x != 0; }
83 int64 old = SetPropertyInternal(
120 COMPILE_ASSERT(sizeof(TYPE) <= sizeof(int64), property_type_too_large); \
127 COMPILE_ASSERT(sizeof(TYPE) <= sizeof(int64), property_type_too_large); \
135 void Deallocator ## NAME (int64 p) { \