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/linux-tools-perf/perf-3.12.0/arch/alpha/lib/
H A Dmemset.S50 beq $3,aligned /* .. E1 (note EV5 zero-latency forwarding) */
59 subq $16,$3,$16 /* E0 $16 is new aligned destination */
68 aligned: label
/external/chromium_org/media/base/
H A Dsinc_resampler_perftest.cc33 bool aligned,
37 convolve_fn(resampler->get_kernel_for_testing() + (aligned ? 0 : 1),
30 RunConvolveBenchmark( SincResampler* resampler, float (*convolve_fn)(const float*, const float*, const float*, double), bool aligned, const std::string& trace_name) argument
H A Dvector_math_perftest.cc36 bool aligned,
43 kVectorSize - (aligned ? 0 : 1),
104 // Benchmark FMAC_FUNC() with aligned size.
123 // Benchmark FMUL_FUNC() with aligned size.
146 // Benchmark EWMAAndMaxPower_FUNC() with aligned size.
35 RunBenchmark(void (*fn)(const float[], float, int, float[]), bool aligned, const std::string& test_name, const std::string& trace_name) argument
/external/chromium_org/third_party/mesa/src/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/clang/test/SemaCXX/
H A Dcxx11-gnu-attrs.cpp18 [[gnu::aligned(8)]] int aligned; variable
19 void aligned_fn [[gnu::aligned(32)]] ();
20 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/pixman/test/
H A Dutils-prng.c76 store_rand_128_data (void *addr, prng_rand_128_data_t *d, int aligned) argument
79 if (aligned)
106 int aligned)
197 store_rand_128_data (buf, &randdata, aligned);
208 store_rand_128_data (buf, &randdata, aligned);
290 /* aligned buffer */
102 randmemset_internal(prng_t *prng, uint8_t *buf, size_t size, prng_randmemset_flags_t flags, int aligned) argument
/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::__anon19969::IndexTest
145 tcu::TestCaseGroup* group = (indexTest.storage == gls::DrawTestSpec::STORAGE_USER) ? ((indexTest.aligned) ? (userPtrGroup) : (unalignedUserPtrGroup)) : ((indexTest.aligned) ? (bufferGroup) : (unalignedBufferGroup));
/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)
/external/llvm/include/llvm/Support/
H A DEndian.h26 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon25612
121 <uint8_t, little, aligned> aligned_ulittle8_t;
123 <uint16_t, little, aligned> aligned_ulittle16_t;
125 <uint32_t, little, aligned> aligned_ulittle32_t;
127 <uint64_t, little, aligned> aligned_ulittle64_t;
130 <int8_t, little, aligned> aligned_little8_t;
132 <int16_t, little, aligned> aligned_little16_t;
134 <int32_t, little, aligned> aligned_little32_t;
136 <int64_t, little, aligned> aligned_little64_t;
157 <uint8_t, big, aligned> aligned_ubig8_
[all...]
/external/openfst/src/test/
H A Dfst_test.h212 const string aligned = FLAGS_tmpdir + "/aligned.fst"; local
239 // check mmaping by first writing the file with the aligned attribute set
241 ofstream ostr(aligned.c_str());
243 opts.source = aligned;
247 ifstream istr(aligned.c_str());
250 opts.source = aligned;
260 ofstream ostr(aligned.c_str());
262 opts.source = aligned;
266 ifstream istr(aligned
[all...]
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/skia/src/pathops/
H A DSkOpContour.h90 void align(const SkOpSegment::AlignedSpan& aligned, bool swap, SkCoincidence* coincidence);
91 void alignCoincidence(const SkOpSegment::AlignedSpan& aligned,
94 void alignCoincidence(const SkOpSegment::AlignedSpan& aligned) { argument
95 alignCoincidence(aligned, &fCoincidences);
96 alignCoincidence(aligned, &fPartialCoincidences);
99 void alignMultiples(SkTDArray<SkOpSegment::AlignedSpan>* aligned) { argument
104 segment.alignMultiples(aligned);
H A DSkOpContour.cpp196 void SkOpContour::align(const SkOpSegment::AlignedSpan& aligned, bool swap, argument
199 if (coincidence->fPts[0][idx2] == aligned.fOldPt
200 && coincidence->fTs[swap][idx2] == aligned.fOldT) {
201 SkASSERT(SkDPoint::RoughlyEqual(coincidence->fPts[0][idx2], aligned.fPt));
202 coincidence->fPts[0][idx2] = aligned.fPt;
203 SkASSERT(way_roughly_equal(coincidence->fTs[swap][idx2], aligned.fT));
204 coincidence->fTs[swap][idx2] = aligned.fT;
209 void SkOpContour::alignCoincidence(const SkOpSegment::AlignedSpan& aligned, argument
219 if (thisOne == aligned.fOther1 && other == aligned
[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::__anon19874::IndexTest
347 tcu::TestCaseGroup* group = (indexTest.storage == gls::DrawTestSpec::STORAGE_USER) ? ((indexTest.aligned) ? (userPtrGroup) : (unalignedUserPtrGroup)) : ((indexTest.aligned) ? (bufferGroup) : (unalignedBufferGroup));
679 // Only aligned cases
/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/skia/src/pathops/
H A DSkOpContour.h90 void align(const SkOpSegment::AlignedSpan& aligned, bool swap, SkCoincidence* coincidence);
91 void alignCoincidence(const SkOpSegment::AlignedSpan& aligned,
94 void alignCoincidence(const SkOpSegment::AlignedSpan& aligned) { argument
95 alignCoincidence(aligned, &fCoincidences);
96 alignCoincidence(aligned, &fPartialCoincidences);
99 void alignMultiples(SkTDArray<SkOpSegment::AlignedSpan>* aligned) { argument
104 segment.alignMultiples(aligned);

Completed in 664 milliseconds

12