HomeSort by relevance Sort by last modified time
    Searched full:hwcaps (Results 1 - 21 of 21) sorted by null

  /external/valgrind/main/VEX/priv/
main_main.c 73 static Bool are_valid_hwcaps ( VexArch arch, UInt hwcaps );
74 static HChar* show_hwcaps ( VexArch arch, UInt hwcaps );
296 vassert(are_valid_hwcaps(VexArchX86, vta->archinfo_host.hwcaps));
319 vassert(are_valid_hwcaps(VexArchAMD64, vta->archinfo_host.hwcaps));
339 vassert(are_valid_hwcaps(VexArchPPC32, vta->archinfo_host.hwcaps));
359 vassert(are_valid_hwcaps(VexArchPPC64, vta->archinfo_host.hwcaps));
378 vassert(are_valid_hwcaps(VexArchS390X, vta->archinfo_host.hwcaps));
398 vassert(are_valid_hwcaps(VexArchARM, vta->archinfo_host.hwcaps));
422 vassert(are_valid_hwcaps(VexArchMIPS32, vta->archinfo_host.hwcaps));
445 vassert(are_valid_hwcaps(VexArchX86, vta->archinfo_guest.hwcaps));
    [all...]
host_x86_defs.h 512 carries the host's hwcaps so the assembler knows what to
515 UInt hwcaps; member in struct:__anon27489::__anon27490::__anon27510
677 extern X86Instr* X86Instr_MFence ( UInt hwcaps );
host_x86_defs.c 723 X86Instr* X86Instr_MFence ( UInt hwcaps ) {
726 i->Xin.MFence.hwcaps = hwcaps;
727 vassert(0 == (hwcaps & ~(VEX_HWCAPS_X86_SSE1
    [all...]
host_arm_isel.c 118 UInt hwcaps; member in struct:__anon27247
    [all...]
host_x86_isel.c 181 UInt hwcaps; member in struct:__anon27534
    [all...]
host_s390_isel.c 113 UInt hwcaps; member in struct:__anon27460
    [all...]
host_amd64_isel.c 147 UInt hwcaps; member in struct:__anon27153
    [all...]
host_mips_isel.c 117 UInt hwcaps; member in struct:__anon27317
    [all...]
host_ppc_isel.c 278 UInt hwcaps; member in struct:__anon27409
    [all...]
guest_mips_toIR.c     [all...]
guest_x86_toIR.c     [all...]
host_s390_defs.c 46 /* KLUDGE: We need to know the hwcaps of the host when generating
    [all...]
  /external/valgrind/main/coregrind/
m_machine.c 434 /* For hwcaps detection on ppc32/64, s390x, and arm we'll need to do SIGILL
735 vai.hwcaps = VEX_HWCAPS_X86_SSE1;
736 vai.hwcaps |= VEX_HWCAPS_X86_SSE2;
738 vai.hwcaps |= VEX_HWCAPS_X86_LZCNT;
745 vai.hwcaps = VEX_HWCAPS_X86_SSE1;
751 vai.hwcaps = 0; /*baseline - no sse at all*/
834 vai.hwcaps = (have_sse3 ? VEX_HWCAPS_AMD64_SSE3 : 0)
    [all...]
m_main.c     [all...]
  /ndk/sources/android/cpufeatures/
cpu-features.c 488 // Recreate ELF hwcaps by parsing /proc/cpuinfo Features tag.
489 uint32_t hwcaps = 0; local
497 hwcaps |= HWCAP_VFP;
499 hwcaps |= HWCAP_VFPv3;
501 hwcaps |= HWCAP_VFPv3D16;
503 hwcaps |= HWCAP_VFPv4;
505 hwcaps |= HWCAP_NEON;
507 hwcaps |= HWCAP_IDIVA;
509 hwcaps |= HWCAP_IDIVT;
511 hwcaps |= HWCAP_IDIVA | HWCAP_IDIVT
667 uint32_t hwcaps = get_elf_hwcap(cpuinfo, cpuinfo_len); local
    [all...]
  /external/chromium_org/v8/src/
cpu.cc 390 // Try to extract the list of CPU features from ELF hwcaps.
391 uint32_t hwcaps = ReadELFHWCaps(); local
392 if (hwcaps != 0) {
393 has_idiva_ = (hwcaps & HWCAP_IDIVA) != 0;
394 has_neon_ = (hwcaps & HWCAP_NEON) != 0;
395 has_thumbee_ = (hwcaps & HWCAP_THUMBEE) != 0;
396 has_vfp_ = (hwcaps & HWCAP_VFP) != 0;
397 has_vfp3_ = (hwcaps & (HWCAP_VFPv3 | HWCAP_VFPv3D16 | HWCAP_VFPv4)) != 0;
398 has_vfp3_d32_ = (has_vfp3_ && ((hwcaps & HWCAP_VFPv3D16) == 0 ||
399 (hwcaps & HWCAP_VFPD32) != 0))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_image.c 409 PgHWCaps_t hwcaps; local
412 if (PgGetGraphicsHWCaps(&hwcaps) < 0)
417 this->info.video_mem=hwcaps.currently_available_video_ram/1024;
420 if (PgGetVideoModeInfo(hwcaps.current_video_mode, &vmode) < 0)
429 if (hwcaps.currently_available_video_ram!=0)
524 PgHWCaps_t hwcaps; local
562 if (PgGetGraphicsHWCaps(&hwcaps) < 0)
569 this->info.video_mem=hwcaps.currently_available_video_ram/1024;
576 PgHWCaps_t hwcaps; local
605 if (PgGetGraphicsHWCaps(&hwcaps) < 0
    [all...]
SDL_ph_video.c 349 PgHWCaps_t hwcaps; local
389 if (PgGetGraphicsHWCaps(&hwcaps) < 0)
396 if (PgGetVideoModeInfo(hwcaps.current_video_mode, &desktop_mode) < 0)
  /external/valgrind/main/VEX/pub/
libvex.h 134 /* Special value representing all available s390x hwcaps */
155 /* Get an ARM architecure level from HWCAPS */
187 UInt hwcaps; member in struct:__anon27557
  /external/valgrind/main/coregrind/m_gdbserver/
valgrind-low-amd64.c 316 return (vai.hwcaps & VEX_HWCAPS_AMD64_AVX ? True : False);
  /external/valgrind/main/VEX/
test_main.c 166 /* FIXME: put sensible values into the .hwcaps fields */
168 vai_x86.hwcaps = VEX_HWCAPS_X86_SSE1
172 vai_amd64.hwcaps = 0;
175 vai_ppc32.hwcaps = 0;
    [all...]

Completed in 3741 milliseconds