Searched defs:aligned (Results 1 - 25 of 44) sorted by relevance

12

/external/llvm/test/MC/ARM/
H A Ddirective-align.s13 aligned: label
17 @ CHECK-LABEL: aligned
/external/compiler-rt/test/asan/TestCases/Darwin/
H A Dmalloc_set_zone_name-mprotect.cc4 // page-aligned address, so we can only test on a best-effort basis.
23 // Try to allocate a page-aligned malloc zone. Otherwise the mprotect() call
26 bool aligned = false; local
30 aligned = true;
34 if (!aligned) {
35 printf("Warning: couldn't allocate a page-aligned zone.");
/external/clang/test/SemaCXX/
H A Dcxx11-gnu-attrs.cpp35 [[gnu::aligned(8)]] int aligned; variable
36 void aligned_fn [[gnu::aligned(32)]] ();
37 struct [[gnu::aligned(8)]] aligned_struct {};
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pointer.h82 * Return a pointer aligned to next multiple of N bytes.
87 uintptr_t aligned = (pointer_to_uintptr( unaligned ) + alignment - 1) & ~(alignment - 1); local
88 return uintptr_to_pointer( aligned );
93 * Return a pointer aligned to next multiple of 16 bytes.
/external/google-breakpad/src/common/dwarf/
H A Dbytereader.cc112 // agree that aligned pointers are always absolute, machine-sized,
118 // need to find the next position in our buffer that would be aligned
122 // aligned.
124 // First, find the offset to START from the closest prior aligned
127 // Now find the offset from that aligned address to buffer.
130 uint64 aligned = (offset + AddressSize() - 1) & -AddressSize(); local
132 const char *aligned_buffer = buffer_base_ + (aligned - skew);
/external/llvm/include/llvm/Support/
H A DEndian.h26 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon12382
248 <uint16_t, little, aligned> aligned_ulittle16_t;
250 <uint32_t, little, aligned> aligned_ulittle32_t;
252 <uint64_t, little, aligned> aligned_ulittle64_t;
255 <int16_t, little, aligned> aligned_little16_t;
257 <int32_t, little, aligned> aligned_little32_t;
259 <int64_t, little, aligned> aligned_little64_t;
276 <uint16_t, big, aligned> aligned_ubig16_t;
278 <uint32_t, big, aligned> aligned_ubig32_t;
280 <uint64_t, big, aligned> aligned_ubig64_
[all...]
/external/swiftshader/src/Common/
H A DMemory.cpp78 unsigned char *aligned = 0; local
82 aligned = (unsigned char*)((uintptr_t)(block + sizeof(Allocation) + alignment - 1) & -(intptr_t)alignment);
83 Allocation *allocation = (Allocation*)(aligned - sizeof(Allocation));
89 return aligned;
108 unsigned char *aligned = (unsigned char*)memory; local
109 Allocation *allocation = (Allocation*)(aligned - sizeof(Allocation));
/external/deqp/modules/gles2/stress/
H A Des2sVertexArrayTests.cpp88 const bool aligned = (stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0; local
108 if (!aligned)
228 const bool aligned = ((stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0) && (offsets[offsetNdx] % Array::inputTypeSize(inputTypes[inputTypeNdx]) == 0); local
248 if (!aligned)
296 const bool aligned = ((stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0) && ((offsets[offsetNdx] % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0); local
316 if (!aligned)
H A Des2sDrawTests.cpp111 bool aligned; member in struct:deqp::gles2::Stress::__anon4387::IndexTest
133 DE_ASSERT(!indexTest.aligned);
/external/e2fsprogs/e2fsck/
H A Dmtrace.h177 __ptr_t aligned; /* The address that memaligned returned. */ member in struct:alignlist
/external/eigen/unsupported/Eigen/src/FFT/
H A Dei_fftw_impl.h242 bool aligned = ( (reinterpret_cast<size_t>(src)&15) | (reinterpret_cast<size_t>(dst)&15) ) == 0; local
243 int64_t key = ( (nfft<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1;
251 bool aligned = ( (reinterpret_cast<size_t>(src)&15) | (reinterpret_cast<size_t>(dst)&15) ) == 0; local
252 int64_t key = ( ( (((int64_t)n0) << 30)|(n1<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1 ) + 1;
/external/deqp/framework/common/
H A DtcuFloatFormat.cpp244 const deUint64 aligned = fraction << (numDigits * 4 - m_fractionBits); local
249 << std::hex << std::setw(numDigits) << std::setfill('0') << aligned
/external/deqp/framework/referencerenderer/
H A DrrVertexAttrib.cpp62 SrcScalarType aligned[4]; local
63 deMemcpy(aligned, ptr, size * sizeof(SrcScalarType));
65 dst[Order::T0] = DstScalarType(aligned[0]);
66 if (size >= 2) dst[Order::T1] = DstScalarType(aligned[1]);
67 if (size >= 3) dst[Order::T2] = DstScalarType(aligned[2]);
68 if (size >= 4) dst[Order::T3] = DstScalarType(aligned[3]);
76 SrcScalarType aligned[4]; local
77 deMemcpy(aligned, ptr, size * sizeof(SrcScalarType));
79 dst[Order::T0] = float(aligned[0]) / float(range);
80 if (size >= 2) dst[Order::T1] = float(aligned[
91 SrcScalarType aligned[4]; local
106 SrcScalarType aligned[4]; local
117 deUint16 aligned[4]; local
128 deInt32 aligned[4]; local
139 double aligned[4]; local
157 deUint32 aligned; local
169 deUint32 aligned; local
184 deUint32 aligned; local
200 deUint32 aligned; local
216 deUint32 aligned; local
[all...]
/external/deqp/modules/gles3/stress/
H A Des3sVertexArrayTests.cpp87 const bool aligned = (stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0; local
107 if (!aligned)
295 const bool aligned = ((stride % alignment) == 0) && ((offsets[offsetNdx] % alignment) == 0); local
315 if (!aligned)
396 const bool aligned = ((stride % alignment) == 0) && ((offsets[offsetNdx] % alignment) == 0); local
416 if (!aligned)
H A Des3sDrawTests.cpp292 bool aligned; member in struct:deqp::gles3::Stress::__anon4669::IndexTest
316 DE_ASSERT(!indexTest.aligned);
/external/eigen/Eigen/src/Core/util/
H A DBlasUtil.h150 EIGEN_DEVICE_FUNC bool aligned(Index i) const { function in class:Eigen::internal::BlasVectorMapper
/external/ltp/utils/ffsb-6.0-rc2/
H A Dfileops.c80 int aligned)
82 if (!aligned)
79 get_random_offset(randdata_t * rd, uint64_t filesize, int aligned) argument
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DEndian.h25 enum alignment {unaligned, aligned}; enumerator in enum:llvm::support::alignment
33 struct alignment_access_helper<value_type, aligned>
116 class packed_endian_specific_integral<value_type, little, aligned> {
119 return endian::read_le<value_type, aligned>(&Value);
126 class packed_endian_specific_integral<value_type, big, aligned> {
129 return endian::read_be<value_type, aligned>(&Value);
156 <uint8_t, little, aligned> aligned_ulittle8_t;
158 <uint16_t, little, aligned> aligned_ulittle16_t;
160 <uint32_t, little, aligned> aligned_ulittle32_t;
162 <uint64_t, little, aligned> aligned_ulittle64_
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fVertexArrayTest.cpp87 const bool aligned = (stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0; local
107 if (aligned)
227 const bool aligned = ((stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0) && (offsets[offsetNdx] % Array::inputTypeSize(inputTypes[inputTypeNdx]) == 0); local
247 if (aligned)
295 const bool aligned = ((stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0) && ((offsets[offsetNdx] % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0); local
315 if (aligned)
H A Des2fDrawTests.cpp313 bool aligned; member in struct:deqp::gles2::Functional::__anon4291::IndexTest
344 ? ((indexTest.aligned) ? (userPtrGroup) : (unalignedUserPtrGroup))
345 : ((indexTest.aligned) ? (bufferGroup) : (DE_NULL));
677 // Only aligned cases
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorContractionMapper.h201 // matrix-vector product relies on the stride when dealing with aligned inputs.
420 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool aligned(Index) const { function in class:Eigen::internal::TensorContractionSubMapper
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dvg_context.h185 void *aligned = align_pointer(ptr, alignment); local
186 return (ptr == aligned) ? VG_TRUE : VG_FALSE;
/external/deqp/modules/gles3/functional/
H A Des3fVertexArrayTest.cpp84 const bool aligned = (stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0; local
104 if (aligned)
292 const bool aligned = ((stride % alignment) == 0) && ((offsets[offsetNdx] % alignment) == 0); local
312 if (aligned)
393 const bool aligned = ((stride % alignment) == 0) && ((offsets[offsetNdx] % alignment) == 0); local
413 if (aligned)
H A Des3fDrawTests.cpp411 bool aligned; member in struct:deqp::gles3::Functional::__anon4418::IndexTest
445 ? ((indexTest.aligned) ? (userPtrGroup) : (unalignedUserPtrGroup))
446 : ((indexTest.aligned) ? (bufferGroup) : (DE_NULL));
1111 // Only properly aligned and not blacklisted cases
/external/compiler-rt/lib/msan/
H A Dmsan.cc41 // aligned address.
569 uptr aligned = x & ~3ULL; local
570 uptr origin_ptr = MEM_TO_ORIGIN(aligned);

Completed in 1923 milliseconds

12