Searched defs:raw_id (Results 1 - 4 of 4) 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]
34 static Thread* get_thread_via_cache_slowly(uintptr_t raw_id, int index);
54 static int pd_cache_index(uintptr_t raw_id) { argument
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]
32 static Thread* get_thread_via_cache_slowly(uintptr_t raw_id, int index);
75 static int pd_cache_index(uintptr_t raw_id) { argument
78 int ix = (int) (((raw_id >> 9) ^ (raw_id >> 20)) % _pd_cache_size);
/openjdk7/hotspot/src/share/vm/classfile/
H A DvmSymbols.hpp1114 static ID ID_from(int raw_id) { argument
1115 assert(raw_id >= (int)_none && raw_id < (int)ID_LIMIT,
1117 return (ID)raw_id;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp274 Thread* ThreadLocalStorage::get_thread_via_cache_slowly(uintptr_t raw_id, argument
285 thread->set_self_raw_id(raw_id); // mark for quick retrieval

Completed in 71 milliseconds