HomeSort by relevance Sort by last modified time
    Searched defs:prefetch (Results 1 - 25 of 32) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
cache.s 2 .global prefetch
3 prefetch: label
4 prefetch[p5];
5 PreFetch [fp++];
6 PREFETCH [SP];
  /external/clang/test/CodeGen/
pr9614.c 17 prefetch(void) { function
29 prefetch();
37 // CHECK: call void @llvm.prefetch(
45 // CHECK: declare void @llvm.prefetch(
builtins-arm64.c 38 void prefetch() { function
40 // CHECK: call {{.*}} @llvm.prefetch(i8* null, i32 1, i32 1, i32 1)
43 // CHECK: call {{.*}} @llvm.prefetch(i8* null, i32 0, i32 0, i32 1)
46 // CHECK: call {{.*}} @llvm.prefetch(i8* null, i32 0, i32 0, i32 1)
49 // CHECK: call {{.*}} @llvm.prefetch(i8* null, i32 0, i32 3, i32 0)
builtins-arm.c 76 void prefetch(int i) { function
78 // CHECK: call {{.*}} @llvm.prefetch(i8* %{{.*}}, i32 0, i32 3, i32 1)
81 // CHECK: call {{.*}} @llvm.prefetch(i8* %{{.*}}, i32 1, i32 3, i32 1)
85 // CHECK: call {{.*}} @llvm.prefetch(i8* %{{.*}}, i32 1, i32 3, i32 0)
  /external/llvm/test/MC/X86/
3DNow.s 73 // CHECK: prefetch (%rax) # encoding: [0x0f,0x0d,0x00]
75 prefetch (%rax) label
  /frameworks/base/libs/hwui/
TextureCache.cpp 170 bool TextureCache::prefetch(const SkBitmap* bitmap) { function in class:android::uirenderer::TextureCache
  /packages/apps/TV/src/com/android/tv/menu/
ChannelsRow.java 42 mChannelsPosterPrefetcher.prefetch();
48 mChannelsPosterPrefetcher.prefetch();
74 mChannelsPosterPrefetcher.prefetch();
ChannelsPosterPrefetcher.java 71 public void prefetch() { method in class:ChannelsPosterPrefetcher
72 SoftPreconditions.checkState(!isCanceled, TAG, "Prefetch called after cancel was called.");
79 * prefetch the intermediate channels. So ignore previous schedule.
87 * Cancels pending and current prefetch requests.
  /external/eigen/Eigen/src/Core/arch/AltiVec/
Complex.h 108 template<> EIGEN_STRONG_INLINE void prefetch<std::complex<float> >(const std::complex<float> * addr) { vec_dstt((float *)addr, DST_CTRL(2,2,32), DST_CHAN); } function in namespace:Eigen::internal
PacketMath.h 341 template<> EIGEN_STRONG_INLINE void prefetch<float>(const float* addr) { vec_dstt(addr, DST_CTRL(2,2,32), DST_CHAN); } function in namespace:Eigen::internal
342 template<> EIGEN_STRONG_INLINE void prefetch<int>(const int* addr) { vec_dstt(addr, DST_CTRL(2,2,32), DST_CHAN); } function in namespace:Eigen::internal
  /external/eigen/Eigen/src/Core/arch/SSE/
Complex.h 110 template<> EIGEN_STRONG_INLINE void prefetch<std::complex<float> >(const std::complex<float> * addr) { _mm_prefetch((const char*)(addr), _MM_HINT_T0); } function in namespace:Eigen::internal
317 template<> EIGEN_STRONG_INLINE void prefetch<std::complex<double> >(const std::complex<double> * addr) { _mm_prefetch((const char*)(addr), _MM_HINT_T0); } function in namespace:Eigen::internal
PacketMath.h 397 template<> EIGEN_STRONG_INLINE void prefetch<float>(const float* addr) { _mm_prefetch((const char*)(addr), _MM_HINT_T0); } function in namespace:Eigen::internal
398 template<> EIGEN_STRONG_INLINE void prefetch<double>(const double* addr) { _mm_prefetch((const char*)(addr), _MM_HINT_T0); } function in namespace:Eigen::internal
399 template<> EIGEN_STRONG_INLINE void prefetch<int>(const int* addr) { _mm_prefetch((const char*)(addr), _MM_HINT_T0); } function in namespace:Eigen::internal
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewCacheTest.java 122 // Prefetch multiple times...
127 mRecycler.prefetch(itemPrefetchArray, viewCount);
181 mRecycler.prefetch(mViewPrefetcher.mItemPrefetchArray, 3);
198 // After clearing the cache, the prefetch priorities should be cleared as well:
235 // rows 0, 1, and 2 are all attached and visible. Prefetch row 3:
239 mRecycler.prefetch(mViewPrefetcher.mItemPrefetchArray, viewCount);
298 // ...but must not be removed for prefetch
302 mRecycler.prefetch(mViewPrefetcher.mItemPrefetchArray, viewCount);
304 assertEquals("Prefetch must target view 2", 2, prefetchTarget);
  /external/eigen/Eigen/src/Core/
GenericPacketMath.h 184 template<typename Scalar> inline void prefetch(const Scalar* addr) function in namespace:Eigen::internal
  /external/eigen/Eigen/src/Core/arch/NEON/
Complex.h 113 template<> EIGEN_STRONG_INLINE void prefetch<std::complex<float> >(const std::complex<float> * addr) { EIGEN_ARM_PREFETCH((float *)addr); } function in namespace:Eigen::internal
PacketMath.h 221 template<> EIGEN_STRONG_INLINE void prefetch<float>(const float* addr) { EIGEN_ARM_PREFETCH(addr); } function in namespace:Eigen::internal
222 template<> EIGEN_STRONG_INLINE void prefetch<int>(const int* addr) { EIGEN_ARM_PREFETCH(addr); } function in namespace:Eigen::internal
  /external/iptables/libiptc/
linux_list.h 30 #define prefetch(x) 1 macro
339 for (pos = (head)->next, prefetch(pos->next); pos != (head); \
340 pos = pos->next, prefetch(pos->next))
361 for (pos = (head)->prev, prefetch(pos->prev); pos != (head); \
362 pos = pos->prev, prefetch(pos->prev))
382 prefetch(pos->member.next); \
385 prefetch(pos->member.next))
395 prefetch(pos->member.prev); \
398 prefetch(pos->member.prev))
419 prefetch(pos->member.next);
    [all...]
  /external/v8/src/ia32/
assembler-ia32.cc 2453 void Assembler::prefetch(const Operand& src, int level) { function in class:v8::internal::Assembler
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/pci/
bridge.h 640 u64 prefetch:1; member in struct:ate_u::ate_s
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/asm/pci/
bridge.h 640 u64 prefetch:1; member in struct:ate_u::ate_s
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/asm/pci/
bridge.h 640 u64 prefetch:1; member in struct:ate_u::ate_s
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/asm/pci/
bridge.h 640 u64 prefetch:1; member in struct:ate_u::ate_s
  /prebuilts/ndk/current/platforms/android-15/arch-mips/usr/include/asm/pci/
bridge.h 640 u64 prefetch:1; member in struct:ate_u::ate_s
  /prebuilts/ndk/current/platforms/android-16/arch-mips/usr/include/asm/pci/
bridge.h 640 u64 prefetch:1; member in struct:ate_u::ate_s
  /prebuilts/ndk/current/platforms/android-17/arch-mips/usr/include/asm/pci/
bridge.h 640 u64 prefetch:1; member in struct:ate_u::ate_s

Completed in 1483 milliseconds

1 2