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

1 2

  /external/chromium_org/chrome/browser/prefetch/
prefetch_field_trial.h 8 namespace prefetch { namespace
12 } // namespace prefetch
prefetch_field_trial.cc 5 #include "chrome/browser/prefetch/prefetch_field_trial.h"
12 namespace prefetch { namespace
15 std::string experiment = base::FieldTrialList::FindFullName("Prefetch");
21 } // namespace prefetch
  /external/linux-tools-perf/util/include/linux/
prefetch.h 4 static inline void prefetch(void *a __attribute__((unused))) { } function
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
twobytemem.asm 14 prefetch [0x50] label
  /packages/apps/Browser/src/com/android/browser/preferences/
BandwidthPreferencesFragment.java 54 // set default value for link prefetch setting
55 ListPreference prefetch = (ListPreference) prefScreen.findPreference( local
57 if (prefetch != null) {
58 prefetch.setValue(BrowserSettings.getInstance().getDefaultLinkPrefetchSetting());
  /external/llvm/test/MC/X86/
3DNow.s 73 // CHECK: prefetch (%rax) # encoding: [0x0f,0x0d,0x00]
75 prefetch (%rax) label
  /external/kernel-headers/original/asm-arm/
processor.h 107 #define prefetch(ptr) \ macro
117 #define prefetchw(ptr) prefetch(ptr)
  /external/chromium_org/courgette/
disassembler_elf_32_arm.cc 87 uint32 prefetch; local
91 prefetch = align4byte;
93 prefetch = 4;
95 temp += prefetch;
103 temp2 |= (prefetch & 0x0000000F) << 8;
156 uint32 prefetch = (c_op & 0x0F00) >> 8; local
157 addr -= prefetch;
  /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 338 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
339 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 104 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
311 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 317 template<> EIGEN_STRONG_INLINE void prefetch<float>(const float* addr) { _mm_prefetch((const char*)(addr), _MM_HINT_T0); } function in namespace:Eigen::internal
318 template<> EIGEN_STRONG_INLINE void prefetch<double>(const double* addr) { _mm_prefetch((const char*)(addr), _MM_HINT_T0); } function in namespace:Eigen::internal
319 template<> EIGEN_STRONG_INLINE void prefetch<int>(const int* addr) { _mm_prefetch((const char*)(addr), _MM_HINT_T0); } function in namespace:Eigen::internal
  /external/kernel-headers/original/asm-mips/
processor.h 21 #include <asm/prefetch.h>
251 static inline void prefetch(const void *addr) function
  /external/yaffs2/yaffs2/
devextras.h 54 #define prefetch(x) 1 macro
193 for (pos = (head)->next, prefetch(pos->next); pos != (head); \
194 pos = pos->next, prefetch(pos->next))
  /external/eigen/Eigen/src/Core/
GenericPacketMath.h 180 template<typename Scalar> inline void prefetch(const Scalar* addr) function in namespace:Eigen::internal
  /external/eigen/Eigen/src/Core/arch/NEON/
Complex.h 116 template<> EIGEN_STRONG_INLINE void prefetch<std::complex<float> >(const std::complex<float> * addr) { __pld((float *)addr); } function in namespace:Eigen::internal
PacketMath.h 209 template<> EIGEN_STRONG_INLINE void prefetch<float>(const float* addr) { __pld(addr); } function in namespace:Eigen::internal
210 template<> EIGEN_STRONG_INLINE void prefetch<int>(const int* addr) { __pld(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/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.cpp 97 void prefetch(blink::WebPreconnectMotivation);
581 prefetch(blink::WebPreconnectMotivationLinkMouseOver);
601 prefetch(blink::WebPreconnectMotivationLinkMouseDown);
610 prefetch(blink::WebPreconnectMotivationLinkTapUnconfirmed);
619 prefetch(blink::WebPreconnectMotivationLinkTapDown);
681 void HTMLAnchorElement::PrefetchEventHandler::prefetch(blink::WebPreconnectMotivation motivation) function in class:WebCore::HTMLAnchorElement::PrefetchEventHandler
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
image_view.js 24 // We have a separate image loader for prefetch which does not get cancelled
431 self.prefetchLoader_.cancel(); // The prefetch was doing something useless.
480 ImageView.prototype.prefetch = function(entry, delay) {
    [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32.cc 2307 void Assembler::prefetch(const Operand& src, int level) { function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/ia32/
assembler-ia32.cc 2170 void Assembler::prefetch(const Operand& src, int level) { function in class:v8::internal::Assembler
    [all...]
  /external/kernel-headers/original/asm-x86/
processor_32.h 739 /* Prefetch instructions for Pentium III and AMD Athlon */
745 static inline void prefetch(const void *x) function
757 /* 3dnow! prefetch to get an exclusive cache line. Useful for
  /bionic/libc/kernel/arch-mips/asm/pci/
bridge.h 640 u64 prefetch:1; member in struct:ate_u::ate_s
  /development/ndk/platforms/android-9/arch-mips/include/asm/pci/
bridge.h 640 u64 prefetch:1; member in struct:ate_u::ate_s

Completed in 809 milliseconds

1 2