Searched refs:cell_count (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.cpp49 void DataLayout::initialize(u1 tag, u2 bci, int cell_count) { argument
53 for (int i = 0; i < cell_count; i++) {
57 set_cell_at(ArrayData::array_len_off_set, cell_count - 1); // -1 for header.
407 int cell_count = 0; local
410 cell_count = 1 + per_case_cell_count * (1 + sw.length()); // 1 for default
413 cell_count = 1 + per_case_cell_count * (sw.number_of_pairs() + 1); // 1 for default
415 return cell_count;
545 int cell_count = bytecode_cell_count(stream->code()); local
546 if (cell_count == no_profile_data) {
549 if (cell_count
611 int cell_count = -1; local
[all...]
H A DmethodDataOop.hpp145 static int compute_size_in_bytes(int cell_count) { argument
146 return header_size_in_bytes() + cell_count * cell_size;
150 void initialize(u1 tag, u2 bci, int cell_count);
292 virtual int cell_count() {
299 return DataLayout::compute_size_in_bytes(cell_count());
305 assert(0 <= index && index < cell_count(), "oob");
309 assert(0 <= index && index < cell_count(), "oob");
313 assert(0 <= index && index < cell_count(), "oob");
344 assert(0 <= index && index < cell_count(), "oob");
495 virtual int cell_count() {
[all...]

Completed in 60 milliseconds