HomeSort by relevance Sort by last modified time
    Searched full:is_aligned (Results 1 - 25 of 44) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/gold/testsuite/
large_symbol_alignment.cc 33 is_aligned(const int& var, int align) __attribute__((noinline));
36 is_aligned(const int& var, int align) function
44 if (!is_aligned(aligned_16k_var, 16384)
45 || !is_aligned(aligned_8k_var, 8192)
46 || !is_aligned(aligned_4k_var, 4096))
  /external/libvpx/libvpx/third_party/libyuv/source/
convert_argb.cc 83 if (IS_ALIGNED(width, 8)) {
91 if (IS_ALIGNED(width, 16)) {
99 if (IS_ALIGNED(width, 8)) {
151 if (IS_ALIGNED(width, 8)) {
159 if (IS_ALIGNED(width, 16)) {
167 if (IS_ALIGNED(width, 8)) {
173 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(width, 4) &&
174 IS_ALIGNED(src_y, 4) && IS_ALIGNED(src_stride_y, 4) &&
175 IS_ALIGNED(src_u, 2) && IS_ALIGNED(src_stride_u, 2) &
    [all...]
convert_from_argb.cc 55 if (IS_ALIGNED(width, 16)) {
63 if (IS_ALIGNED(width, 8)) {
71 if (IS_ALIGNED(width, 16)) {
79 if (IS_ALIGNED(width, 32)) {
87 if (IS_ALIGNED(width, 8)) {
136 if (IS_ALIGNED(width, 16)) {
144 if (IS_ALIGNED(width, 16)) {
152 if (IS_ALIGNED(width, 16)) {
160 if (IS_ALIGNED(width, 32)) {
168 if (IS_ALIGNED(width, 8))
    [all...]
rotate.cc 39 if (IS_ALIGNED(width, 8)) {
47 if (IS_ALIGNED(width, 16)) {
54 if (IS_ALIGNED(width, 4) &&
55 IS_ALIGNED(src, 4) && IS_ALIGNED(src_stride, 4)) {
115 if (IS_ALIGNED(width, 16)) {
123 if (IS_ALIGNED(width, 16)) {
131 if (IS_ALIGNED(width, 16)) {
139 if (IS_ALIGNED(width, 32)) {
147 IS_ALIGNED(src, 4) && IS_ALIGNED(src_stride, 4) &
    [all...]
convert_from.cc 178 if (IS_ALIGNED(width, 16)) {
186 if (IS_ALIGNED(width, 16)) {
225 if (IS_ALIGNED(width, 16)) {
233 if (IS_ALIGNED(width, 16)) {
286 if (IS_ALIGNED(width, 16)) {
294 if (IS_ALIGNED(width, 16)) {
333 if (IS_ALIGNED(width, 16)) {
341 if (IS_ALIGNED(width, 16)) {
405 if (IS_ALIGNED(halfwidth, 16)) {
413 if (IS_ALIGNED(halfwidth, 32))
    [all...]
scale_argb.cc 60 if (IS_ALIGNED(dst_width, 4)) {
72 if (IS_ALIGNED(dst_width, 8)) {
112 if (IS_ALIGNED(dst_width, 4)) {
120 if (IS_ALIGNED(dst_width, 8)) {
152 assert(IS_ALIGNED(src_width, 2));
153 assert(IS_ALIGNED(src_height, 2));
159 if (IS_ALIGNED(dst_width, 4)) {
169 if (IS_ALIGNED(dst_width, 4)) {
216 if (IS_ALIGNED(clip_src_width, 16)) {
224 if (IS_ALIGNED(clip_src_width, 16))
    [all...]
planar_functions.cc 46 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2;
51 CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX;
61 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON;
92 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32)) {
102 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32)) {
235 if (IS_ALIGNED(width, 16)) {
243 if (IS_ALIGNED(width, 16)) {
251 if (IS_ALIGNED(width, 16)) {
259 if (IS_ALIGNED(width, 32)) {
267 IS_ALIGNED(src_y, 4) && IS_ALIGNED(src_stride_y, 4) &
    [all...]
convert.cc 193 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2;
198 CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX;
208 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON;
285 if (IS_ALIGNED(halfwidth, 16)) {
293 if (IS_ALIGNED(halfwidth, 32)) {
301 if (IS_ALIGNED(halfwidth, 16)) {
308 IS_ALIGNED(src_uv, 4) && IS_ALIGNED(src_stride_uv, 4) &&
309 IS_ALIGNED(dst_u, 4) && IS_ALIGNED(dst_stride_u, 4) &
    [all...]
scale.cc 57 if (IS_ALIGNED(dst_width, 16)) {
69 if (IS_ALIGNED(dst_width, 16)) {
81 if (IS_ALIGNED(dst_width, 32)) {
89 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(src_ptr, 4) &&
90 IS_ALIGNED(src_stride, 4) && IS_ALIGNED(row_stride, 4) &&
91 IS_ALIGNED(dst_ptr, 4) && IS_ALIGNED(dst_stride, 4)) {
126 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 16)) {
132 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 16))
    [all...]
rotate_argb.cc 49 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(height, 4)) { // Width of dest.
54 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(height, 4)) { // Width of dest.
100 if (IS_ALIGNED(width, 4)) {
108 if (IS_ALIGNED(width, 4)) {
116 if (IS_ALIGNED(width, 8)) {
123 CopyRow = IS_ALIGNED(width * 4, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2;
128 CopyRow = IS_ALIGNED(width * 4, 64) ? CopyRow_AVX : CopyRow_Any_AVX;
138 CopyRow = IS_ALIGNED(width * 4, 32) ? CopyRow_NEON : CopyRow_Any_NEON;
  /external/libyuv/files/source/
convert_argb.cc 75 if (IS_ALIGNED(width, 8)) {
83 if (IS_ALIGNED(width, 16)) {
91 if (IS_ALIGNED(width, 8)) {
97 if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(width, 4) &&
98 IS_ALIGNED(src_y, 4) && IS_ALIGNED(src_stride_y, 4) &&
99 IS_ALIGNED(src_u, 2) && IS_ALIGNED(src_stride_u, 2) &&
100 IS_ALIGNED(src_v, 2) && IS_ALIGNED(src_stride_v, 2) &
    [all...]
convert_from_argb.cc 55 if (IS_ALIGNED(width, 16)) {
63 if (IS_ALIGNED(width, 8)) {
71 if (IS_ALIGNED(width, 16)) {
79 if (IS_ALIGNED(width, 32)) {
87 if (IS_ALIGNED(width, 8)) {
140 if (IS_ALIGNED(width, 16)) {
150 if (IS_ALIGNED(width, 32)) {
159 if (IS_ALIGNED(width, 8)) {
167 if (IS_ALIGNED(width, 16)) {
216 if (IS_ALIGNED(width, 16))
    [all...]
rotate.cc 39 if (IS_ALIGNED(width, 8)) {
47 if (IS_ALIGNED(width, 16)) {
54 if (IS_ALIGNED(width, 4) &&
55 IS_ALIGNED(src, 4) && IS_ALIGNED(src_stride, 4)) {
115 if (IS_ALIGNED(width, 16)) {
123 if (IS_ALIGNED(width, 16)) {
131 if (IS_ALIGNED(width, 32)) {
139 IS_ALIGNED(src, 4) && IS_ALIGNED(src_stride, 4) &
    [all...]
convert_from.cc 178 if (IS_ALIGNED(width, 16)) {
186 if (IS_ALIGNED(width, 16)) {
225 if (IS_ALIGNED(width, 16)) {
233 if (IS_ALIGNED(width, 16)) {
286 if (IS_ALIGNED(width, 16)) {
294 if (IS_ALIGNED(width, 16)) {
333 if (IS_ALIGNED(width, 16)) {
341 if (IS_ALIGNED(width, 16)) {
405 if (IS_ALIGNED(halfwidth, 16)) {
413 if (IS_ALIGNED(halfwidth, 32))
    [all...]
planar_functions.cc 47 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2;
52 CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX;
62 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON;
93 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32)) {
103 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32)) {
236 if (IS_ALIGNED(width, 16)) {
244 if (IS_ALIGNED(width, 16)) {
252 if (IS_ALIGNED(width, 32)) {
260 IS_ALIGNED(src_y, 4) && IS_ALIGNED(src_stride_y, 4) &
    [all...]
convert.cc 193 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2;
198 CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX;
208 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON;
285 if (IS_ALIGNED(halfwidth, 16)) {
293 if (IS_ALIGNED(halfwidth, 32)) {
301 if (IS_ALIGNED(halfwidth, 16)) {
308 IS_ALIGNED(src_uv, 4) && IS_ALIGNED(src_stride_uv, 4) &&
309 IS_ALIGNED(dst_u, 4) && IS_ALIGNED(dst_stride_u, 4) &
    [all...]
scale_argb.cc 60 if (IS_ALIGNED(dst_width, 4)) {
72 if (IS_ALIGNED(dst_width, 8)) {
112 if (IS_ALIGNED(dst_width, 4)) {
120 if (IS_ALIGNED(dst_width, 8)) {
152 assert(IS_ALIGNED(src_width, 2));
153 assert(IS_ALIGNED(src_height, 2));
159 if (IS_ALIGNED(dst_width, 4)) {
169 if (IS_ALIGNED(dst_width, 4)) {
216 if (IS_ALIGNED(clip_src_width, 16)) {
224 if (IS_ALIGNED(clip_src_width, 32))
    [all...]
scale.cc 57 if (IS_ALIGNED(dst_width, 16)) {
69 if (IS_ALIGNED(dst_width, 16)) {
81 if (IS_ALIGNED(dst_width, 32)) {
89 if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(src_ptr, 4) &&
90 IS_ALIGNED(src_stride, 4) && IS_ALIGNED(row_stride, 4) &&
91 IS_ALIGNED(dst_ptr, 4) && IS_ALIGNED(dst_stride, 4)) {
126 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 16)) {
132 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 16))
    [all...]
rotate_argb.cc 49 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(height, 4)) { // Width of dest.
54 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(height, 4)) { // Width of dest.
100 if (IS_ALIGNED(width, 4)) {
108 if (IS_ALIGNED(width, 4)) {
116 if (IS_ALIGNED(width, 8)) {
123 CopyRow = IS_ALIGNED(width * 4, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2;
128 CopyRow = IS_ALIGNED(width * 4, 64) ? CopyRow_AVX : CopyRow_Any_AVX;
138 CopyRow = IS_ALIGNED(width * 4, 32) ? CopyRow_NEON : CopyRow_Any_NEON;
  /external/mesa3d/src/gallium/state_trackers/vega/
api_text.c 84 !is_aligned(glyphOrigin) || !is_aligned(escapement)) {
117 !is_aligned(glyphOrigin) || !is_aligned(escapement)) {
189 if (!glyphIndices || !is_aligned(glyphIndices)) {
193 if ((adjustments_x && !is_aligned(adjustments_x)) ||
194 (adjustments_y && !is_aligned(adjustments_y))) {
api_path.c 328 if (!is_aligned(x) || !is_aligned(y) ||
329 !is_aligned(tangentX) || !is_aligned(tangentY)) {
383 if (!is_aligned(minX) || !is_aligned(minY) ||
384 !is_aligned(width) || !is_aligned(height)) {
420 if (!is_aligned(minX) || !is_aligned(minY) |
    [all...]
api_transform.c 49 if (!m || !is_aligned(m)) {
71 if (!m || !is_aligned(m)) {
88 if (!m || !is_aligned(m)) {
  /external/skia/tests/
RecordTest.cpp 102 static bool is_aligned(const T* p) { function
108 REPORTER_ASSERT(r, is_aligned(record.alloc<uint8_t>()));
109 REPORTER_ASSERT(r, is_aligned(record.alloc<uint16_t>()));
110 REPORTER_ASSERT(r, is_aligned(record.alloc<uint32_t>()));
111 REPORTER_ASSERT(r, is_aligned(record.alloc<void*>()));
115 REPORTER_ASSERT(r, is_aligned(record.alloc<double>()));
116 REPORTER_ASSERT(r, is_aligned(record.alloc<uint64_t>()));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rtinfo.h 17 #define IS_ALIGNED(ptr) (((UINT_PTR)(ptr) & ALIGN_SHIFT)==0x00000000)
uastrfnc.h 20 #define IS_ALIGNED(p) (((ULONG_PTR)(p) & (sizeof(*(p))-1))==0)

Completed in 1274 milliseconds

1 2