Lines Matching refs:jint

207   jint        _layout_helper;
253 jint _modifier_flags; // Processed access flags, for use by Class.getModifiers.
266 jint _biased_lock_revocation_count;
341 jint modifier_flags() const { return _modifier_flags; }
342 void set_modifier_flags(jint flags) { _modifier_flags = flags; }
405 static int layout_helper_size_in_bytes(jint lh) {
406 assert(lh > (jint)_lh_neutral_value, "must be instance");
409 static bool layout_helper_needs_slow_path(jint lh) {
410 assert(lh > (jint)_lh_neutral_value, "must be instance");
413 static bool layout_helper_is_instance(jint lh) {
414 return (jint)lh > (jint)_lh_neutral_value;
416 static bool layout_helper_is_javaArray(jint lh) {
417 return (jint)lh < (jint)_lh_neutral_value;
419 static bool layout_helper_is_typeArray(jint lh) {
423 static bool layout_helper_is_objArray(jint lh) {
425 return (jint)lh < (jint)(_lh_array_tag_type_value << _lh_array_tag_shift);
427 static int layout_helper_header_size(jint lh) {
428 assert(lh < (jint)_lh_neutral_value, "must be array");
433 static BasicType layout_helper_element_type(jint lh) {
434 assert(lh < (jint)_lh_neutral_value, "must be array");
439 static int layout_helper_log2_element_size(jint lh) {
440 assert(lh < (jint)_lh_neutral_value, "must be array");
445 static jint array_layout_helper(jint tag, int hsize, BasicType etype, int log2_esize) {
451 static jint instance_layout_helper(jint size, bool slow_path_flag) {
455 static int layout_helper_to_size_helper(jint lh) {
456 assert(lh > (jint)_lh_neutral_value, "must be instance");
461 static jint array_layout_helper(BasicType etype);
685 void set_biased_lock_revocation_count(int val) { _biased_lock_revocation_count = (jint) val; }
796 virtual jint compute_modifier_flags(TRAPS) const;
799 virtual jint jvmti_class_status() const;