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

/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp418 static bool is_secondary_index(int i) { return (i < 0); } function in class:constantPoolCacheOopDesc
419 static int decode_secondary_index(int i) { assert(is_secondary_index(i), ""); return ~i; }
420 static int encode_secondary_index(int i) { assert(!is_secondary_index(i), ""); return ~i; }
436 if (is_secondary_index(i)) { // correct these on the fly
447 if (is_secondary_index(i)) {
483 if (is_secondary_index(raw_index))

Completed in 32 milliseconds