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

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DageTable.hpp44 enum { table_size = markOopDesc::max_age + 1 }; enumerator in enum:VALUE_OBJ_CLASS_SPEC::__anon242
47 size_t sizes[table_size];
59 assert(age > 0 && age < table_size, "invalid age of object");
72 PerfVariable* _perf_sizes[table_size];
/openjdk7/hotspot/src/share/vm/classfile/
H A DresolutionErrors.cpp87 ResolutionErrorTable::ResolutionErrorTable(int table_size) argument
88 : Hashtable<constantPoolOop, mtClass>(table_size, sizeof(ResolutionErrorEntry)) {
93 for (int i = 0; i < table_size(); i++) {
112 for (int i = 0; i < table_size(); i++) {
H A Dplaceholders.cpp168 PlaceholderTable::PlaceholderTable(int table_size) argument
169 : TwoOopHashtable<Symbol*, mtClass>(table_size, sizeof(PlaceholderEntry)) {
174 for (int index = 0; index < table_size(); index++) {
196 for (int index = 0; index < table_size(); index++) {
249 for (int pindex = 0; pindex < table_size(); pindex++) {
264 for (int pindex = 0; pindex < table_size(); pindex++) {
H A Ddictionary.cpp38 Dictionary::Dictionary(int table_size) argument
39 : TwoOopHashtable<klassOop, mtClass>(table_size, sizeof(DictionaryEntry)) {
46 Dictionary::Dictionary(int table_size, HashtableBucket<mtClass>* t, argument
48 : TwoOopHashtable<klassOop, mtClass>(table_size, sizeof(DictionaryEntry), t, number_of_entries) {
142 for (index = 0; index < table_size(); index++) {
297 for (int index = 0; index < table_size(); index++) {
317 for (int index = 0; index < table_size(); index++) {
332 for (int index = 0; index < table_size(); index++) {
349 for (int index = 0; index < table_size(); index++) {
363 for (int index = 0; index < table_size(); inde
556 SymbolPropertyTable(int table_size) argument
560 SymbolPropertyTable(int table_size, HashtableBucket<mtSymbol>* t, int number_of_entries) argument
[all...]
H A DclassLoader.cpp704 PackageHashtable(int table_size) argument
705 : BasicHashtable<mtClass>(table_size, sizeof(PackageInfo)) {}
707 PackageHashtable(int table_size, HashtableBucket<mtClass>* t, int number_of_entries) argument
708 : BasicHashtable<mtClass>(table_size, sizeof(PackageInfo), t, number_of_entries) {}
730 for (int i = 0; i < table_size(); ++i) {
750 for (i = 0; i < table_size(); ++i) {
766 for (i = 0; i < table_size(); ++i) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.inline.hpp38 template <MEMFLAGS F> inline BasicHashtable<F>::BasicHashtable(int table_size, int entry_size) { argument
40 initialize(table_size, entry_size, 0);
41 _buckets = NEW_C_HEAP_ARRAY2(HashtableBucket<F>, table_size, F, CURRENT_PC);
48 template <MEMFLAGS F> inline BasicHashtable<F>::BasicHashtable(int table_size, int entry_size, argument
52 initialize(table_size, entry_size, number_of_entries);
57 template <MEMFLAGS F> inline void BasicHashtable<F>::initialize(int table_size, int entry_size, argument
60 _table_size = table_size;
H A Dhashtable.hpp144 BasicHashtable(int table_size, int entry_size);
145 BasicHashtable(int table_size, int entry_size,
185 void initialize(int table_size, int entry_size, int number_of_entries);
223 int table_size() { return _table_size; } function in class:BasicHashtable
240 Hashtable(int table_size, int entry_size) argument
241 : BasicHashtable<F>(table_size, entry_size) { }
243 Hashtable(int table_size, int entry_size, argument
245 : BasicHashtable<F>(table_size, entry_size, buckets, number_of_entries) { }
297 TwoOopHashtable(int table_size, int entry_size) argument
298 : Hashtable<T, F>(table_size, entry_siz
300 TwoOopHashtable(int table_size, int entry_size, HashtableBucket<F>* t, int number_of_entries) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/tools/attach/
H A DSolarisVirtualMachine.c210 int table_size = sizeof(error_messages) / sizeof(error_messages[0]); local
213 for (i=0; i<table_size; i++) {
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.hpp404 table_size = (1 << window_size) }; enumerator in enum:VALUE_OBJ_CLASS_SPEC::__anon325
407 static const byte _first_bit[table_size];
410 static const byte _second_bit[table_size];
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Djvm_dtrace.c336 int table_size = sizeof(error_messages) / sizeof(error_messages[0]); local
339 for (i=0; i<table_size; i++) {
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Djvm_dtrace.c336 int table_size = sizeof(error_messages) / sizeof(error_messages[0]); local
339 for (i=0; i<table_size; i++) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dfprofiler.hpp148 static int table_size; member in class:ThreadProfiler
H A Dfprofiler.cpp78 table = NEW_C_HEAP_ARRAY(ProfilerNode*, table_size, mtInternal);
93 int ThreadProfiler::table_size = 1024; member in class:ThreadProfiler
97 return value % table_size;
1167 for (int index = 0; index < table_size; index++) {
1188 for (int index = 0; index < table_size; index++) {
1327 for(index = 0; index < table_size; index++) {
1590 for(int index = 0; index < table_size; index++) {
/openjdk7/jdk/src/windows/transport/socket/
H A Dsocket_md.c383 int table_size = sizeof(winsock_errors) / local
392 while (i < table_size) {
399 if (i < table_size) {
/openjdk7/jdk/src/windows/native/java/net/
H A Dnet_util_md.c139 int table_size = sizeof(winsock_errors) / local
163 while (i < table_size) {
174 if (i < table_size) {
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c119 TableIndex table_size; /* Current size of table. */ member in struct:LookupTable
272 size = BV_ELEMENT_COUNT(ltable->table_size);
471 old_size = ltable->table_size;
488 ltable->table_size = new_size;
623 if ( ltable->next_index >= ltable->table_size ) {
682 ltable->table_size = size;
710 LOG3("Table initialized", ltable->name, ltable->table_size);
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.hpp834 void initialize_table(int table_size) { argument
835 _table_size = table_size;
836 _buckets = NEW_C_HEAP_ARRAY(SymbolHashMapBucket, table_size, mtSymbol);
837 for (int index = 0; index < table_size; index++) {
844 int table_size() const { return _table_size; } function in class:SymbolHashMap
847 SymbolHashMap(int table_size) { initialize_table(table_size); } argument

Completed in 541 milliseconds