HomeSort by relevance Sort by last modified time
    Searched defs:IsAligned (Results 1 - 6 of 6) sorted by null

  /external/webrtc/webrtc/system_wrappers/source/
aligned_array_unittest.cc 19 bool IsAligned(const void* ptr, size_t alignment) {
29 ASSERT_TRUE(IsAligned(arr.Array(), 128));
31 ASSERT_TRUE(IsAligned(arr.Row(i), 128));
  /external/eigen/Eigen/src/Core/
Map.h 85 IsAligned = bool(EIGEN_ALIGN) && ((int(MapOptions)&Aligned)==Aligned),
93 Flags1 = IsAligned ? (int(Flags0) | AlignedBit) : (int(Flags0) & ~AlignedBit),
  /art/runtime/base/
bit_utils.h 149 static constexpr bool IsAligned(T x) {
155 static inline bool IsAligned(T* x) {
156 return IsAligned<n>(reinterpret_cast<const uintptr_t>(x));
165 CHECK(::art::IsAligned<alignment>(value)) << reinterpret_cast<const void*>(value)
168 DCHECK(::art::IsAligned<alignment>(value)) << reinterpret_cast<const void*>(value)
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 219 IsAligned = internal::traits<Coefficients>::Flags & AlignedBit,
220 Flags = IsAligned ? (AlignedBit | LvalueBit) : LvalueBit
229 enum { IsAligned = internal::traits<Quaternion>::IsAligned };
279 EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF(IsAligned)
443 internal::traits<Derived>::IsAligned && internal::traits<OtherDerived>::IsAligned>::run(*this, other);
  /external/v8/src/
utils.h 176 inline bool IsAligned(T value, U alignment) {
186 return IsAligned(offs, alignment);
    [all...]
  /external/mdnsresponder/mDNSShared/
CommonServices.h 617 /*! @function IsAligned
622 #define IsAligned( X, Y ) ( ( ( X ) & ( ( Y ) - 1 ) ) == 0 )
630 #define IsFieldAligned( X, TYPE, FIELD, Y ) IsAligned( ( (uintptr_t)( X ) ) + offsetof( TYPE, FIELD ), ( Y ) )
    [all...]

Completed in 117 milliseconds