Home
last modified time | relevance | path

Searched defs:IsAligned (Results 1 – 19 of 19) sorted by relevance

/external/cronet/base/memory/
Daligned_memory.h65 inline bool IsAligned(uintptr_t val, size_t alignment) { in IsAligned() function
77 inline bool IsAligned(const void* val, size_t alignment) { in IsAligned() function
Daligned_memory_unittest.cc47 TEST(AlignedMemoryTest, IsAligned) { in TEST() argument
/external/pdfium/third_party/base/memory/
Daligned_memory.h66 inline bool IsAligned(uintptr_t val, size_t alignment) { in IsAligned() function
78 inline bool IsAligned(void* val, size_t alignment) { in IsAligned() function
/external/libchrome/mojo/core/
Doptions_validation.h73 static bool IsAligned(const void* pointer) { in IsAligned() function
/external/swiftshader/third_party/subzero/src/
DIceUtils.h83 template <typename T> inline bool IsAligned(T X, intptr_t N) { in IsAligned() function
/external/tensorflow/tensorflow/compiler/mlir/tfrt/jit/python_binding/
Dtf_jitrt_executor.cc151 static bool IsAligned(const T* ptr) { in IsAligned() function
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorEvaluator.h46 IsAligned = Derived::IsAligned, enumerator
DTensorFixedSize.h42 IsAligned = bool(EIGEN_MAX_ALIGN_BYTES>0), enumerator
DTensorMap.h73 IsAligned = ((int(Options_)&Aligned)==Aligned), enumerator
DTensorRef.h142 IsAligned = false, enumerator
DTensor.h76 IsAligned = bool(EIGEN_MAX_ALIGN_BYTES>0) & !(Options_&DontAlign), enumerator
/external/libchrome/mojo/public/cpp/bindings/lib/
Dbindings_internal.h62 inline bool IsAligned(const void* ptr) { in IsAligned() function
/external/tensorflow/tensorflow/c/
Dtf_tensor.cc334 bool TensorInterface::IsAligned() const { return tensor_.IsAligned(); } in IsAligned() function in tensorflow::TensorInterface
/external/vixl/src/
Dutils-vixl.h571 inline bool IsAligned(T pointer, int alignment) { in IsAligned() function
579 inline bool IsAligned(T pointer) { in IsAligned() function
/external/tensorflow/tensorflow/core/framework/
Dtensor.h312 bool IsAligned() const { in IsAligned() function
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h463 INLINE bool IsAligned(uptr a, uptr alignment) { in IsAligned() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonISelDAGToDAG.cpp1337 auto IsAligned = [LogAlign] (uint64_t V) -> bool { in SelectAnyImmediate() local
1381 auto IsAligned = [LogAlign] (uint64_t V) -> bool { in SelectGlobalAddress() local
/external/tensorflow/tensorflow/core/tfrt/eager/
Dc_api_tfrt.cc333 bool TensorInterface::IsAligned() const { return true; } in IsAligned() function in tfrt::tf::TensorInterface
/external/mdnsresponder/mDNSShared/
DCommonServices.h622 #define IsAligned( X, Y ) ( ( ( X ) & ( ( Y ) - 1 ) ) == 0 ) macro