Home
last modified time | relevance | path

Searched refs:__builtin_prefetch (Results 1 – 22 of 22) sorted by relevance

/external/clang/test/Sema/
Dbuiltin-prefetch.c5 __builtin_prefetch(&a); in foo()
6 __builtin_prefetch(&a, 1); in foo()
7 __builtin_prefetch(&a, 1, 2); in foo()
8 __builtin_prefetch(&a, 1, 9, 3); // expected-error{{too many arguments to function}} in foo()
9__builtin_prefetch(&a, "hello", 2); // expected-error{{argument to '__builtin_prefetch' must be a … in foo()
10__builtin_prefetch(&a, a, 2); // expected-error{{argument to '__builtin_prefetch' must be a consta… in foo()
11 __builtin_prefetch(&a, 2); // expected-error{{argument should be a value from 0 to 1}} in foo()
12 __builtin_prefetch(&a, 0, 4); // expected-error{{argument should be a value from 0 to 3}} in foo()
13 __builtin_prefetch(&a, -1, 4); // expected-error{{argument should be a value from 0 to 1}} in foo()
Dstatements.c28 __builtin_prefetch(P); in test9()
/external/libvpx/libvpx/vpx_dsp/arm/
Dvpx_convolve8_neon.c104 __builtin_prefetch(src + src_stride * 4); in vpx_convolve8_horiz_neon()
105 __builtin_prefetch(src + src_stride * 5); in vpx_convolve8_horiz_neon()
106 __builtin_prefetch(src + src_stride * 6); in vpx_convolve8_horiz_neon()
134 __builtin_prefetch(psrc + 64); in vpx_convolve8_horiz_neon()
145 __builtin_prefetch(psrc + 64 + src_stride); in vpx_convolve8_horiz_neon()
157 __builtin_prefetch(psrc + 64 + src_stride * 2); in vpx_convolve8_horiz_neon()
178 __builtin_prefetch(psrc + 60 + src_stride * 3); in vpx_convolve8_horiz_neon()
295 __builtin_prefetch(d); in vpx_convolve8_vert_neon()
296 __builtin_prefetch(d + dst_stride); in vpx_convolve8_vert_neon()
299 __builtin_prefetch(d + dst_stride * 2); in vpx_convolve8_vert_neon()
[all …]
Dvpx_convolve8_avg_neon.c102 __builtin_prefetch(src + src_stride * 4); in vpx_convolve8_avg_horiz_neon()
103 __builtin_prefetch(src + src_stride * 5); in vpx_convolve8_avg_horiz_neon()
132 __builtin_prefetch(src + 64); in vpx_convolve8_avg_horiz_neon()
143 __builtin_prefetch(src + 64 + src_stride); in vpx_convolve8_avg_horiz_neon()
155 __builtin_prefetch(src + 64 + src_stride * 2); in vpx_convolve8_avg_horiz_neon()
185 __builtin_prefetch(src + 64 + src_stride * 3); in vpx_convolve8_avg_horiz_neon()
320 __builtin_prefetch(s); in vpx_convolve8_avg_vert_neon()
321 __builtin_prefetch(s + src_stride); in vpx_convolve8_avg_vert_neon()
324 __builtin_prefetch(s + src_stride * 2); in vpx_convolve8_avg_vert_neon()
325 __builtin_prefetch(s + src_stride * 3); in vpx_convolve8_avg_vert_neon()
[all …]
Dvariance_neon.c180 __builtin_prefetch(src_ptr); in vpx_variance16x8_neon()
186 __builtin_prefetch(ref_ptr); in vpx_variance16x8_neon()
259 __builtin_prefetch(src_ptr); in vpx_variance8x16_neon()
265 __builtin_prefetch(ref_ptr); in vpx_variance8x16_neon()
/external/clang/test/CodeGen/
D2005-03-11-Prefetch.c5 __builtin_prefetch(P); in foo()
6 __builtin_prefetch(P, 1); in foo()
/external/clang/test/SemaCXX/
Dprefetch-enum.cpp9 __builtin_prefetch(&ch, 0, A); in Test()
/external/clang/lib/Headers/
Dprfchwintrin.h35 __builtin_prefetch (__P, 1, 3 /* _MM_HINT_T0 */); in _m_prefetchw()
Dxmmintrin.h679 #define _mm_prefetch(a, sel) (__builtin_prefetch((void *)(a), 0, (sel)))
/external/skia/include/core/
DSkPostConfig.h321 # define SK_PREFETCH(ptr) __builtin_prefetch(ptr)
322 # define SK_WRITE_PREFETCH(ptr) __builtin_prefetch(ptr, 1)
/external/libvpx/libvpx/vpx_ports/
Dmem.h38 #define __builtin_prefetch(x) macro
/external/libmpeg2/common/armv8/
Dicv_platform_macros.h76 #define PREFETCH(x) __builtin_prefetch(x);
/external/libmpeg2/common/mips/
Dicv_platform_macros.h82 #define PREFETCH(x) __builtin_prefetch(x);
/external/libmpeg2/common/x86/
Dicv_platform_macros.h82 #define PREFETCH(x) __builtin_prefetch(x);
/external/libmpeg2/common/arm/
Dicv_platform_macros.h98 #define PREFETCH(x) __builtin_prefetch(x);
/external/skia/src/opts/
DSkBlitRow_opts_arm_neon.cpp897 __builtin_prefetch(src+32); in S32A_Opaque_BlitRow32_neon()
898 __builtin_prefetch(dst+32); in S32A_Opaque_BlitRow32_neon()
1273 __builtin_prefetch(src+32); in S32A_Blend_BlitRow32_neon()
1274 __builtin_prefetch(dst+32); in S32A_Blend_BlitRow32_neon()
/external/eigen/Eigen/src/Core/arch/NEON/
DPacketMath.h54 #if EIGEN_HAS_BUILTIN(__builtin_prefetch) || defined(__GNUC__)
55 #define EIGEN_ARM_PREFETCH(ADDR) __builtin_prefetch(ADDR);
/external/libvpx/libvpx/vp8/common/arm/neon/
Dsixtappredict_neon.c971 __builtin_prefetch(src); in vp8_sixtap_predict8x8_neon()
972 __builtin_prefetch(src + src_pixels_per_line); in vp8_sixtap_predict8x8_neon()
973 __builtin_prefetch(src + src_pixels_per_line * 2); in vp8_sixtap_predict8x8_neon()
1436 __builtin_prefetch(src); in vp8_sixtap_predict16x16_neon()
1437 __builtin_prefetch(src + src_pixels_per_line); in vp8_sixtap_predict16x16_neon()
1534 __builtin_prefetch(src); in vp8_sixtap_predict16x16_neon()
1535 __builtin_prefetch(src + src_pixels_per_line); in vp8_sixtap_predict16x16_neon()
1536 __builtin_prefetch(src + src_pixels_per_line * 2); in vp8_sixtap_predict16x16_neon()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_internal_defs.h153 # define PREFETCH(x) __builtin_prefetch(x)
/external/elfutils/src/lib/
Ddynamicsizehash.c328 __builtin_prefetch (((TYPENAME(NAME) *) p)->next, 0, 2);
/external/eigen/Eigen/src/Core/
DGenericPacketMath.h187 __builtin_prefetch(addr); in prefetch()
/external/clang/include/clang/Basic/
DBuiltins.def493 BUILTIN(__builtin_prefetch, "vvC*.", "nc")