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

1 2 3 4

  /external/mesa3d/src/gallium/drivers/nv50/
nv50_stateobj_tex.h 9 uint32_t tsc[8]; member in struct:nv50_tsc_entry
nv50_tex.c 294 struct nv50_tsc_entry *tsc = nv50_tsc_entry(nv50->samplers[s][i]); local
296 if (!tsc) {
301 if (tsc->id < 0) {
302 tsc->id = nv50_screen_tsc_alloc(nv50->screen, tsc);
305 65536 + tsc->id * 32,
306 NOUVEAU_BO_VRAM, 32, tsc->tsc);
309 nv50->screen->tsc.lock[tsc->id / 32] |= 1 << (tsc->id % 32)
    [all...]
nv50_screen.h 33 struct nouveau_bo *txc; /* TIC (offset 0) and TSC (65536) */
58 } tsc; member in struct:nv50_screen
125 nv50_screen_tsc_unlock(struct nv50_screen *screen, struct nv50_tsc_entry *tsc)
127 if (tsc->id >= 0)
128 screen->tsc.lock[tsc->id / 32] &= ~(1 << (tsc->id % 32));
141 nv50_screen_tsc_free(struct nv50_screen *screen, struct nv50_tsc_entry *tsc)
143 if (tsc->id >= 0) {
144 screen->tsc.entries[tsc->id] = NULL
    [all...]
  /external/autotest/client/tests/iosched_bugs/src/
dirty.c 16 int64_t tsc; local
18 __asm __volatile("rdtsc" : "=A" (tsc));
19 return (tsc);
  /external/autotest/client/tests/tsc/
tsc.py 5 class tsc(test.test): class in inherits:test.test
  /bionic/libc/kernel/uapi/asm-x86/asm/
mce.h 31 __u64 tsc; member in struct:mce
  /development/ndk/platforms/android-21/arch-x86/include/asm/
mce.h 31 __u64 tsc; member in struct:mce
  /development/ndk/platforms/android-21/arch-x86_64/include/asm/
mce.h 31 __u64 tsc; member in struct:mce
  /external/kernel-headers/original/uapi/asm-x86/asm/
mce.h 14 __u64 tsc; /* cpu time stamp counter */ member in struct:mce
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/asm/
mce.h 31 __u64 tsc; member in struct:mce
  /prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/asm/
mce.h 31 __u64 tsc; member in struct:mce
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/asm/
mce.h 31 __u64 tsc; member in struct:mce
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/asm/
mce.h 31 __u64 tsc; member in struct:mce
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/asm/
mce.h 31 __u64 tsc; member in struct:mce
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/asm/
mce.h 31 __u64 tsc; member in struct:mce
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_tex.c 364 struct nv50_tsc_entry *tsc = nv50_tsc_entry(nvc0->samplers[s][i]); local
368 if (!tsc) {
372 if (tsc->id < 0) {
373 tsc->id = nvc0_screen_tsc_alloc(nvc0->screen, tsc);
376 65536 + tsc->id * 32, NOUVEAU_BO_VRAM,
377 32, tsc->tsc);
380 nvc0->screen->tsc.lock[tsc->id / 32] |= 1 << (tsc->id % 32)
407 struct nv50_tsc_entry *tsc = nv50_tsc_entry(nvc0->samplers[s][i]); local
    [all...]
nvc0_screen.h 34 struct nouveau_bo *txc; /* TIC (offset 0) and TSC (65536) */
54 } tsc; member in struct:nvc0_screen
124 nvc0_screen_tsc_unlock(struct nvc0_screen *screen, struct nv50_tsc_entry *tsc)
126 if (tsc->id >= 0)
127 screen->tsc.lock[tsc->id / 32] &= ~(1 << (tsc->id % 32));
140 nvc0_screen_tsc_free(struct nvc0_screen *screen, struct nv50_tsc_entry *tsc)
142 if (tsc->id >= 0) {
143 screen->tsc.entries[tsc->id] = NULL
    [all...]
  /external/autotest/client/tests/monotonic_time/src/
time_test.c 50 "tsc|gtod|clock", program);
60 " tsc test the TSC\n"
73 * get the TSC as 64 bit value with CPU clock frequency resolution
85 uint64_t tsc; local
86 __asm__ __volatile__("rdtsc" : "=A" (tsc));
87 return tsc;
189 DEFINE_TEST(tsc); variable
  /external/autotest/client/tests/tsc/src/
checktsc.c 15 #define DEFAULT_THRESHOLD 500 /* default maximum TSC skew */
43 printf("check TSC synchronization between CPUs\n");
47 printf(" -t,--threshold TSC skew threshold (default: %d cycles)\n",
158 uint64_t tsc; local
160 __asm__ __volatile__("rdtsc" : "=A" (tsc));
162 return tsc;
  /external/libvpx/libvpx/vpx_ports/
x86.h 222 unsigned int tsc; local
223 __asm__ __volatile__("rdtsc\n\t":"=a"(tsc):);
224 return tsc;
226 unsigned int tsc;
227 asm volatile("rdtsc\n\t":"=a"(tsc):);
228 return tsc;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/
x86.h 178 unsigned int tsc; local
179 __asm__ __volatile__("rdtsc\n\t":"=a"(tsc):);
180 return tsc;
182 unsigned int tsc;
183 asm volatile("rdtsc\n\t":"=a"(tsc):);
184 return tsc;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/
mce.h 56 __u64 tsc; /* cpu time stamp counter */ member in struct:mce
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
mce.h 65 __u64 tsc; /* cpu time stamp counter */ member in struct:mce
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
mce.h 65 __u64 tsc; /* cpu time stamp counter */ member in struct:mce
  /external/fio/
gettime.c 374 * to use as THE clock source. For x86 CPUs, this means the TSC
459 uint64_t tsc; member in struct:clock_entry
509 uint64_t tsc; local
516 tsc = get_cpu_clock();
520 c->tsc = tsc;
526 clocks = t->entries[i - 1].tsc - t->entries[0].tsc;
534 if (!t->entries[i - 1].tsc && !t->entries[0].tsc)
    [all...]

Completed in 564 milliseconds

1 2 3 4