Searched defs:used (Results 26 - 50 of 72) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/services/
H A DmemoryUsage.hpp36 // used - represents the amount of memory currently used (in bytes).
43 // that can be used for memory management. The maximum amount of
62 size_t used() const { return _used; } function in class:VALUE_OBJ_CLASS_SPEC
H A DlowMemoryDetector.hpp87 return (usage.used() >= _high_threshold);
93 return (usage.used() < _low_threshold);
153 // When this method is used, the memory usage is monitored
186 // When this method is used, the memory usage is monitored as a
267 // current used exceeds the high threshold
269 size_t used = pool->used_in_bytes(); local
271 if (used > high) {
H A DmemPtrArray.hpp40 // Memory pointer array interface. This array is used by NMT to hold
253 float used = ((float)_size) / ((float)_max_size); local
254 if (used < 0.40) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DParameterList.java182 * The 'used' parameter specifies the number of character positions
184 * list is to be inserted. It's used to determine where to fold the
187 * @param used number of character positions already used, in
192 public String toString(int used) { argument
201 used += 2;
203 if (used + len > 76) { // overflows ...
205 used = 8; // account for the starting <tab> char
208 used += name.length() + 1;
209 if (used
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinftrees.c48 lens shorts, which is used as a work area. type is the type of code
71 unsigned used; /* code entries in table used */ local
123 The length counts are used for other purposes as well, i.e. finding
175 filled is at next and has curr index bits. The code being used is huff
189 counts are used for this, and so count[] is decremented as codes are
192 used keeps track of how many table entries have been allocated from the
208 base = extra = work; /* dummy value--not used */
232 used = 1U << root; /* use root table entries */
233 mask = used
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DCompactibleFreeListSpace.java94 public long used() { method in class:CompactibleFreeListSpace
137 long used_size = used();
140 tty.print("space capacity = " + cap + " used(" + used_perc + "%)= " + used_size + " ");
H A DGeneration.java152 /** The number of used bytes in the gen. */
153 public abstract long used(); method in class:Generation
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DHeapSummary.java110 g1h.used(), g1h.capacity());
131 long oldFree = oldGen.capacity() - oldGen.used();
134 printValMB("used = ", oldGen.used());
136 System.out.println(alignment + (double)oldGen.used() * 100.0 / oldGen.capacity() + "% used");
139 long permFree = permGen.capacity() - permGen.used();
142 printValMB("used = ", permGen.used());
144 System.out.println(alignment + (double)permGen.used() * 100.
229 printG1Space(String spaceName, long regionNum, long used, long capacity) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.hpp82 bool is_empty() const { return used() == 0; }
83 bool not_empty() const { return used() > 0; }
88 size_t used() const { return byte_size(bottom(), top()); } function in class:PSPromotionLAB
/openjdk7/hotspot/src/share/vm/adlc/
H A Darena.cpp78 //------------------------------used-------------------------------------------
80 size_t Arena::used() const { function in class:Arena
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCounterMode.java50 // number of bytes in encryptedCounter already used up
51 private int used; field in class:CounterMode
75 * This is used when doFinal is called in the Cipher class, so that the
80 used = blockSize;
94 usedSave = used;
104 used = usedSave;
202 if (used >= blockSize) {
205 used = 0;
207 out[outOff++] = (byte)(in[inOff++] ^ encryptedCounter[used++]);
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DMacosxOperatingSystem.c52 jlong used = load.cpu_ticks[CPU_STATE_USER] + load.cpu_ticks[CPU_STATE_NICE] + load.cpu_ticks[CPU_STATE_SYSTEM]; local
53 jlong total = used + load.cpu_ticks[CPU_STATE_IDLE];
57 last_used = used;
63 jlong used_delta = used - last_used;
68 last_used = used;
H A DLinuxOperatingSystem.c41 uint64_t used; member in struct:ticks
110 pticks->used = userTicks + niceTicks;
181 pticks->used = userTicks;
270 udiff = pticks->used - tmp.used;
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparCardTableModRefBS.cpp89 MemRegion used,
97 // because of the strided parallelism pattern used here.
100 // at least "bottom" of the used region.
101 jbyte* start_card = byte_for(used.start());
102 jbyte* end_card = byte_after(used.last());
103 uintptr_t start_chunk = addr_to_chunk_index(used.start());
127 // Invariant: chunk_mr should be fully contained within the "used" region.
130 used.end() : addr_for(chunk_card_end));
132 assert(used.contains(chunk_mr), "chunk_mr should be subset of used");
88 process_stride(Space* sp, MemRegion used, jint stride, int n_strides, OopsInGenClosure* cl, CardTableRS* ct, jbyte** lowest_non_clean, uintptr_t lowest_non_clean_base_chunk_index, size_t lowest_non_clean_chunk_size) argument
174 process_chunk_boundaries(Space* sp, DirtyCardToOopClosure* dcto_cl, MemRegion chunk_mr, MemRegion used, jbyte** lowest_non_clean, uintptr_t lowest_non_clean_base_chunk_index, size_t lowest_non_clean_chunk_size) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcHeapSummary.hpp54 SpaceSummary(HeapWord* start, HeapWord* end, size_t used) : argument
55 _start(start), _end(end), _used(used) { }
59 size_t used() const { return _used; } function in class:SpaceSummary
79 GCHeapSummary(VirtualSpaceSummary& heap_space, size_t used) : argument
80 _heap(heap_space), _used(used) { }
83 size_t used() const { return _used; } function in class:GCHeapSummary
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.cpp212 write_region(i, (char*)space->bottom(), space->used(),
329 size_t used = si->_used; local
330 size_t size = align_size_up(used, os::vm_allocation_granularity());
355 size_t used = si->_used; local
356 size_t size = align_size_up(used, os::vm_allocation_granularity());
376 size_t used = si->_used; local
377 size_t size = align_size_up(used, os::vm_allocation_granularity());
405 size_t used = si->_used; local
406 size_t size = align_size_up(used, os::vm_allocation_granularity());
495 fail_continue("A jar file is not the one used whil
[all...]
H A DthreadLocalAllocBuffer.cpp76 size_t used = capacity - unused; local
79 bool update_allocation_history = used > 0.5 * capacity;
93 // "used".
95 double alloc_frac = allocation / (double) used;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dhandles.hpp38 // be used as a parameter w/o using &-passing, and can be returned as a
73 // used operators for ease of use.
121 // used operators for ease of use and typed access to the Klass part.
280 size_t used() const { return Arena::used() / oopSize; } function in class:HandleArea
328 // Functions used by HandleMarkCleaner
H A DperfMemory.hpp67 jint used; // number of PerfData memory bytes used member in struct:__anon420
136 static size_t used() { return (size_t) (_top - _start); } function in class:PerfMemory
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTaskImpl.java79 private AtomicBoolean used = new AtomicBoolean(); field in class:JavacTaskImpl
128 if (!used.getAndSet(true)) {
143 if (used.get())
149 if (used.get())
155 if (used.getAndSet(true)) {
352 * This can be used to ensure that all compile time errors are reported.
/openjdk7/jdk/src/share/demo/jvmti/minst/
H A Dminst.c16 * contributors may be used to endorse or promote products derived
316 int used; local
322 used = 0;
324 used = (int)strlen(gdata->include);
325 gdata->include[used++] = ',';
326 gdata->include[used] = 0;
328 realloc((void*)gdata->include, used+maxlen+1);
334 next = get_token(next, ",=", gdata->include+used, maxlen);
340 int used; local
346 used
[all...]
/openjdk7/langtools/test/tools/javac/diags/
H A DMessageFile.java375 void markUnused(Set<Integer> used) { argument
377 if (!used.contains(i))
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.inline.hpp294 return _young_gen->as_DefNewGeneration()->eden()->used();
313 _cms_used_at_gc0_begin = _cms_gen->cmsSpace()->used();
336 // _gc0_promoted used to be calculated as
424 inline size_t ConcurrentMarkSweepGeneration::used() const { function in class:ConcurrentMarkSweepGeneration
425 return _cmsSpace->used();
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMemoryTab.java62 private static final String usedKey = "used";
251 private long[] used, committed, max, threshold;
272 used = new long[n];
281 used[i] = -1L;
312 used[i] = mu.getUsed();
351 if (used[i] >= 0L) {
353 plotter.addValues(timeStamp, used[i], committed[i], max[i], threshold[i]);
358 used[i], threshold[i], max[i]);
360 plotter.addValues(timeStamp, used[i], committed[i], max[i]);
364 overviewPanel.getPlotter().addValues(timeStamp, used[
760 updateMemoryInfo(long used, long committed, long max) argument
[all...]
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DPoller.c16 * contributors may be used to endorse or promote products derived
342 int i,used,unused;
344 used=unused=0;
350 used++;
354 unused, ioeh->total_free, used);
338 int i,used,unused; local

Completed in 96 milliseconds

123