HomeSort by relevance Sort by last modified time
    Searched refs:IsAligned (Results 51 - 75 of 133) sorted by null

1 23 4 5 6

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 131 if (IsAligned(mapped_addr, alignment))
141 (mapped_addr == 0 || !IsAligned(mapped_addr, alignment));
  /external/compiler-rt/lib/scudo/
scudo_allocator.cpp 356 if (!IsAligned(ChunkBeg, Alignment))
385 if (!IsAligned(ChunkBeg, MinAlignment)) {
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorChipping.h 145 IsAligned = false,
327 IsAligned = false,
TensorConcatenation.h 121 IsAligned = false,
299 IsAligned = false,
TensorExecutor.h 242 const bool vectorizable = Evaluator::PacketAccess & Evaluator::IsAligned;
TensorInflation.h 90 IsAligned = /*TensorEvaluator<ArgType, Device>::IsAligned*/ false,
TensorScan.h 96 IsAligned = false,
TensorContraction.h 123 IsAligned = true,
393 const int lhs_alignment = LeftEvaluator::IsAligned ? Aligned : Unaligned;
394 const int rhs_alignment = RightEvaluator::IsAligned ? Aligned : Unaligned;
TensorBroadcasting.h 109 IsAligned = true,
TensorConversion.h 195 IsAligned = false,
TensorFixedSize.h 42 IsAligned = bool(EIGEN_MAX_ALIGN_BYTES>0),
TensorMap.h 53 IsAligned = ((int(Options_)&Aligned)==Aligned),
TensorPatch.h 94 IsAligned = false,
  /external/v8/src/runtime/
runtime-internal.cc 316 CHECK(IsAligned(size, kPointerSize));
328 CHECK(IsAligned(size, kPointerSize));
runtime-strings.cc 744 DCHECK(IsAligned(reinterpret_cast<intptr_t>(dst), sizeof(uintptr_t)));
746 if (IsAligned(reinterpret_cast<intptr_t>(src), sizeof(uintptr_t))) {
    [all...]
  /external/v8/src/snapshot/
code-serializer.cc 284 DCHECK(IsAligned(payload.length(), kIntptrSize));
408 DCHECK(IsAligned(reinterpret_cast<intptr_t>(payload), kPointerAlignment));
serializer.cc 311 while (!IsAligned(sink_.Position(), kPointerAlignment)) {
780 IsAligned(bytes_to_output, kPointerAlignment) &&
  /art/runtime/
oat_file.cc 333 if (!IsAligned<alignof(GcRoot<mirror::Object>)>(bss_begin_) ||
334 !IsAligned<alignof(GcRoot<mirror::Object>)>(bss_roots_) ||
335 !IsAligned<alignof(GcRoot<mirror::Object>)>(bss_end_)) {
493 if (UNLIKELY(!IsAligned<alignof(uint32_t)>(class_offsets_offset))) {
    [all...]
mem_map.cc     [all...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
array_internal.h 287 if (!IsAligned(data)) {
  /external/compiler-rt/lib/asan/
asan_allocator.cc 355 CHECK(IsAligned(needed_size, min_alignment));
392 if (!IsAligned(user_beg, alignment))
768 CHECK(IsAligned((uptr)ptr, alignment));
  /art/runtime/mirror/
string-inl.h 230 static_assert(IsAligned<sizeof(uint16_t)>(kObjectAlignment),
  /external/v8/src/heap/
objects-visiting.h 133 DCHECK(IsAligned(object_size, kPointerSize));
  /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...]
  /external/vixl/src/
utils-vixl.h 457 inline bool IsAligned(T pointer) {
467 return IsAligned<4>(pointer);

Completed in 1442 milliseconds

1 23 4 5 6