Searched refs:words (Results 26 - 39 of 39) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.hpp61 size_t words() const { return _instance_words; } function in class:KlassInfoEntry
H A DheapInspection.cpp161 elt->set_words(elt->words() + obj->size());
209 totalw += elements()->at(i)->words();
H A DcardTableModRefBS.cpp49 const size_t words = align_size_up(covered_words, card_size_in_words); local
50 return words / card_size_in_words + 1;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp67 const size_t ParallelCompactData::Log2RegionSize = 16; // 64K words
75 const size_t ParallelCompactData::Log2BlockSize = 7; // 128 words
696 size_t words = _region_data[cur_region].data_size(); local
697 if (words > 0) {
701 if (dest_addr + words > target_end) {
731 HeapWord* const last_addr = dest_addr + words - 1;
753 dest_addr += words;
785 // number of live words in the Block that are (a) to the left of addr and (b)
1503 size_t words)
1507 SIZE_FORMAT, start, start + words, word
1502 fill_with_live_objects(SpaceId id, HeapWord* const start, size_t words) argument
3515 const size_t words = pointer_delta(new_top, dest_addr); local
3561 size_t words = words_remaining(); local
3573 Copy::aligned_conjoint_words(source(), destination(), words); local
3579 do_addr(HeapWord* addr, size_t words) argument
3598 Copy::aligned_conjoint_words(source(), destination(), words); local
3621 do_addr(HeapWord* addr, size_t words) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.cpp301 memcpy(new_block->words(), block->words(), sizeof(uint32) * words_per_block);
543 // We ran out of words in the current block. Advance to next non-empty block.
548 _words = _blocks[bi]->words();
562 // All of the words in the block were empty. Replace
575 // No more words.
H A Dcompile.cpp425 // frame_slots in units of words
429 int words = _frame_slots >> shift; local
430 assert( words << shift == _frame_slots, "frame size must be properly aligned in LP64" );
431 return words;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameUtil.java190 * Tokenizes a string into words and capitalizes the first
195 * of two words. For example, "abc100ghi" will be splitted into
367 String[] words = new String[]{
417 // technically these are not reserved words but they cannot be used as identifiers.
428 for (String word : words)
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTrace.cpp118 double percentage_of_heap = ((double) entry->words()) / _total_size_in_words;
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFGenerator.java500 RTFAttribute words[],
505 int wordCount = words.length;
507 RTFAttribute attr = words[wordIndex];
498 checkControlWords(MutableAttributeSet currentAttributes, AttributeSet newAttributes, RTFAttribute words[], int domain) argument
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c2237 // returns 0 if this is not like a CGATS, or an integer otherwise. This integer is the number of words in first line?
2241 int words = 1, space = 0, quot = 0; local
2255 return ((quot == 1) || (words > 2)) ? 0 : words;
2267 words += space;
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.hpp79 // [EMBEDDED Java vtable ] size in words = vtable_len
80 // [EMBEDDED nonstatic oop-map blocks] size in words = nonstatic_oop_map_size
246 // Number of heapOopSize words used by non-static fields in this klass
249 int _static_field_size; // number words used by static fields (oop and non-oop) in this klass
252 int _nonstatic_oop_map_size;// size in words of nonstatic oop map blocks
265 int _vtable_len; // length of Java vtable (in words)
266 int _itable_len; // length of Java itable (in words)
570 void set_nonstatic_oop_map_size(int words) { argument
571 _nonstatic_oop_map_size = words;
777 // Sizing (in words)
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Dunsafe.cpp524 acc.words[0] = ((volatile jint*)p)[0];
525 acc.words[1] = ((volatile jint*)p)[1];
544 ((volatile jint*)p)[0] = acc.words[0];
545 ((volatile jint*)p)[1] = acc.words[1];
834 // words in the object layout, so that accessors like getByte(Object,int)
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp1019 u.words[0] = newval[0];
1020 u.words[1] = newval[Interpreter::stackElementWords]; // skip if tag
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp116 // units of heap words, so that that
152 // The minimum number of native machine words necessary to contain "byte_size"
463 jint words[2]; member in union:jlong_accessor

Completed in 89 milliseconds

12