Searched defs:_pd_cache_size (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A DthreadLS_solaris_sparc.hpp33 static Thread* _get_thread_cache[]; // index by [(raw_id>>9)^(raw_id>>20) % _pd_cache_size]
45 _pd_cache_size = 256*2 // projected typical # of threads * 2 enumerator in enum:Constants
67 uintptr_t ix = (int) (((raw_id >> 9) ^ (raw_id >> 20)) % _pd_cache_size);
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A DthreadLS_solaris_x86.hpp31 static Thread* _get_thread_cache[]; // index by [(raw_id>>9)^(raw_id>>20) % _pd_cache_size]
43 _pd_cache_size = 256*2 // projected typical # of threads * 2 enumerator in enum:Constants
45 _pd_cache_size = 128*2 // projected typical # of threads * 2
78 int ix = (int) (((raw_id >> 9) ^ (raw_id >> 20)) % _pd_cache_size);

Completed in 29 milliseconds