HomeSort by relevance Sort by last modified time
    Searched defs:vai (Results 1 - 4 of 4) sorted by null

  /external/valgrind/coregrind/m_gdbserver/
valgrind-low-amd64.c 313 VexArchInfo vai; local
314 VG_(machine_get_VexArchInfo) (&va, &vai);
315 return (vai.hwcaps & VEX_HWCAPS_AMD64_AVX ? True : False);
  /external/valgrind/cachegrind/
cg_arch.c 348 VexArchInfo vai; local
352 VG_(machine_get_VexArchInfo)(NULL, &vai);
353 ci = &vai.hwcache_info;
  /cts/tests/tests/media/src/android/media/cts/
AudioHelper.java 38 byte[] vai = new byte[bufferSamples];
39 sweep = Math.PI * sweep / ((double)sampleRate * vai.length);
40 for (int j = 0; j < vai.length; j++) {
43 vai[j] = (byte) unsigned;
45 return vai;
51 short[] vai = new short[bufferSamples]; local
52 sweep = Math.PI * sweep / ((double)sampleRate * vai.length);
53 for (int j = 0; j < vai.length; j++) {
54 vai[j] = (short)(Math.sin(j * (rad + j * sweep)) * Short.MAX_VALUE);
56 return vai;
    [all...]
  /external/valgrind/coregrind/
m_machine.c 499 static VexArchInfo vai; variable
775 // Whack default settings into vai, so that we only need to fill in
777 LibVEX_default_VexArchInfo(&vai);
842 vai.endness = VexEndnessLE;
845 vai.hwcaps = VEX_HWCAPS_X86_MMXEXT;
846 vai.hwcaps |= VEX_HWCAPS_X86_SSE1;
847 vai.hwcaps |= VEX_HWCAPS_X86_SSE2;
848 vai.hwcaps |= VEX_HWCAPS_X86_SSE3;
850 vai.hwcaps |= VEX_HWCAPS_X86_LZCNT;
853 vai.hwcaps = VEX_HWCAPS_X86_MMXEXT
    [all...]

Completed in 141 milliseconds