Searched refs:BitsPerByte (Results 1 - 25 of 36) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.hpp93 Category1 = (Category1Flag << 1 * BitsPerByte) | Primitive,
94 Category2 = (Category2Flag << 1 * BitsPerByte) | Primitive,
95 Category2_2nd = (Category2_2ndFlag << 1 * BitsPerByte) | Primitive,
98 Bogus = (ITEM_Bogus << 2 * BitsPerByte) | Category1,
99 Boolean = (ITEM_Boolean << 2 * BitsPerByte) | Category1,
100 Byte = (ITEM_Byte << 2 * BitsPerByte) | Category1,
101 Short = (ITEM_Short << 2 * BitsPerByte) | Category1,
102 Char = (ITEM_Char << 2 * BitsPerByte) | Category1,
103 Integer = (ITEM_Integer << 2 * BitsPerByte) | Category1,
104 Float = (ITEM_Float << 2 * BitsPerByte) | Category
[all...]
H A DclassFileParser.hpp102 assert((int)_annotation_LIMIT <= (int)sizeof(_annotations_present) * BitsPerByte, "");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DCompressedStream.java55 public static final int BitsPerByte = 1 << 3; field in class:CompressedStream
60 public static final int L = (1<<BitsPerByte) - H; // number of low codes (192)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBits.java34 public static final int BitsPerByte = 8; field in class:Bits
/openjdk7/hotspot/src/share/vm/code/
H A DoopRecorder.hpp103 ci ^= ci >> (BitsPerByte*2);
104 ci += ci >> (BitsPerByte*1);
H A DcompressedStream.hpp42 L = (1<<BitsPerByte)-H, // number of low codes (192)
H A DrelocInfo.hpp315 value_width = sizeof(unsigned short) * BitsPerByte,
/openjdk7/hotspot/src/share/vm/runtime/
H A Djava.cpp746 ((int64_t)v.major_version() << (BitsPerByte * 5)) |
747 ((int64_t)v.minor_version() << (BitsPerByte * 4)) |
748 ((int64_t)v.micro_version() << (BitsPerByte * 3)) |
749 ((int64_t)v.update_version() << (BitsPerByte * 2)) |
750 ((int64_t)v.special_update_version() << (BitsPerByte * 1)) |
751 ((int64_t)v.build_number() << (BitsPerByte * 0));
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp187 main_cp_index_bits = 2*BitsPerByte,
190 bytecode_1_mask = right_n_bits(BitsPerByte), // == (u1)0xFF
191 bytecode_2_shift = main_cp_index_bits + BitsPerByte,
192 bytecode_2_mask = right_n_bits(BitsPerByte), // == (u1)0xFF
H A Dklass.hpp393 _lh_log2_element_size_shift = BitsPerByte*0,
395 _lh_element_type_shift = BitsPerByte*1,
396 _lh_element_type_mask = right_n_bits(BitsPerByte), // shifted mask
397 _lh_header_size_shift = BitsPerByte*2,
398 _lh_header_size_mask = right_n_bits(BitsPerByte), // shifted mask
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreter.hpp64 enum { length = 1 << BitsPerByte }; // an entry point for each byte value (also for undefined bytecodes)
H A Dbytecodes.hpp347 static jchar _flags [(1<<BitsPerByte)*2]; // all second page for wide formats
434 return _flags[code + (is_wide ? (1<<BitsPerByte) : 0)];
H A Dbytecodes.cpp61 u_short Bytecodes::_flags [(1<<BitsPerByte)*2];
180 _flags[(u1)code+0*(1<<BitsPerByte)] = compute_flags(format, bc_flags);
181 _flags[(u1)code+1*(1<<BitsPerByte)] = compute_flags(wide_format, bc_flags);
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp70 const int BitsPerByte = 1 << LogBitsPerByte; variable
100 const int BitsPerSize_t = size_tSize * BitsPerByte;
164 const jint min_jint = (jint)1 << (sizeof(jint)*BitsPerByte-1); // 0x80000000 == smallest jint
217 const intx min_intx = (intx)1 << (sizeof(intx)*BitsPerByte-1);
H A DbitMap.cpp340 guarantee((offset % (sizeof(bm_word_t) * BitsPerByte)) == 0,
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp410 result[0] <<= (BitsPerWord - BitsPerByte);
424 result[0] <<= (BitsPerWord - BitsPerByte);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp669 __ sll(G1_scratch, 2*BitsPerByte, G1_scratch);
670 __ srl(G1_scratch, 2*BitsPerByte - exact_log2(in_words(
685 __ srl(G1_scratch, 2*BitsPerByte, G1_scratch);
H A Dc1_Runtime1_sparc.cpp475 assert(Klass::_lh_header_size_shift % BitsPerByte == 0, "bytewise");
479 - Klass::_lh_header_size_shift / BitsPerByte);
H A DcppInterpreter_sparc.cpp488 __ sll(G1_scratch, 2*BitsPerByte, G1_scratch);
489 __ srl(G1_scratch, 2*BitsPerByte - exact_log2(in_words(
504 __ srl(G1_scratch, 2*BitsPerByte, G1_scratch);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsparsePRT.cpp175 guarantee(_capacity <= ((size_t)1 << (sizeof(int)*BitsPerByte-1)) - 1,
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_Runtime1_x86.cpp1186 __ movb(t1, Address(klass, in_bytes(Klass::layout_helper_offset()) + (Klass::_lh_header_size_shift / BitsPerByte)));
1187 assert(Klass::_lh_header_size_shift % BitsPerByte == 0, "bytewise");
1214 __ movb(t1, Address(klass, in_bytes(Klass::layout_helper_offset()) + (Klass::_lh_header_size_shift / BitsPerByte)));
1215 assert(Klass::_lh_header_size_shift % BitsPerByte == 0, "bytewise");
H A DtemplateInterpreter_x86_32.cpp672 __ shrl(rdx, 2*BitsPerByte);
692 __ shrl(rcx, 2*BitsPerByte);
H A DtemplateInterpreter_x86_64.cpp640 __ shrl(rdx, 2 * BitsPerByte);
660 __ shrl(rcx, 2 * BitsPerByte);
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Dlibjvm_db.c660 BitsPerByte = 8, enumerator in enum:__anon78
661 L = (1<<BitsPerByte)-H,
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Dlibjvm_db.c660 BitsPerByte = 8, enumerator in enum:__anon88
661 L = (1<<BitsPerByte)-H,

Completed in 113 milliseconds

12