Searched defs:size (Results 751 - 775 of 1126) sorted by relevance

<<31323334353637383940>>

/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DPacketStream.java125 void writeID(int size, long data) { argument
126 switch (size) {
137 throw new UnsupportedOperationException("JDWP: ID size not supported: " + size);
401 private long readID(int size) { argument
402 switch (size) {
410 throw new UnsupportedOperationException("JDWP: ID size not supported: " + size);
603 writeInt(srcValues.size());
604 for (int i = 0; i < srcValues.size();
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DRenderingHints.java395 * size whether to apply {@link #VALUE_TEXT_ANTIALIAS_ON} or
400 * font and size is determined by implementation defaults.
570 * to the point size, but then the scaled advance width will not
603 * metrics are scaled by the point size and used for layout with
986 public int size() { method in class:RenderingHints
987 return hintmap.size();
1026 * <code>RenderingHints</code> size for most implementations
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.cpp221 // If the frame size is 0 something (or less) is bad because every nmethod has a non-zero frame size
475 assert(_cb->frame_size() >= 0, "must have non-zero frame size");
710 // use the frame size if valid
711 int size = _cb->frame_size(); local
712 if (size > 0) {
713 return unextended_sp() + size;
717 assert(! is_compiled_frame(), "unknown compiled frame size");
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Djvm_dtrace.c359 size_t size; local
375 size = strlen(PROTOCOL_VERSION) + strlen(cstr) + 2;
376 buf = (char*)malloc(size);
396 char* newbuf = (char*)realloc(buf, size+len+1);
403 strcpy(buf+size, cstr);
404 size += len+1;
413 door_args.data_size = size;
/openjdk7/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp53 static char* create_standard_memory(size_t size) { argument
56 char* mapAddress = os::reserve_memory(size);
63 if (!os::commit_memory(mapAddress, size, !ExecMem)) {
67 os::release_memory(mapAddress, size);
76 static void delete_standard_memory(char* addr, size_t size) { argument
91 static void save_memory_to_file(char* addr, size_t size) { argument
108 for (size_t remaining = size; remaining > 0;) {
243 // determine the max pwbuf size from sysconf, and hardcode
603 // This method creates the shared memory file with the given size
607 static int create_sharedmem_resources(const char* dirname, const char* filename, size_t size) { argument
703 mmap_create_shared(size_t size) argument
771 create_shared_memory(size_t size) argument
779 delete_shared_memory(char* addr, size_t size) argument
830 size_t size; local
940 create_memory_region(size_t size) argument
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp53 static char* create_standard_memory(size_t size) { argument
56 char* mapAddress = os::reserve_memory(size);
63 if (!os::commit_memory(mapAddress, size, !ExecMem)) {
67 os::release_memory(mapAddress, size);
76 static void delete_standard_memory(char* addr, size_t size) { argument
91 static void save_memory_to_file(char* addr, size_t size) { argument
108 for (size_t remaining = size; remaining > 0;) {
243 // determine the max pwbuf size from sysconf, and hardcode
603 // This method creates the shared memory file with the given size
607 static int create_sharedmem_resources(const char* dirname, const char* filename, size_t size) { argument
703 mmap_create_shared(size_t size) argument
771 create_shared_memory(size_t size) argument
779 delete_shared_memory(char* addr, size_t size) argument
830 size_t size; local
940 create_memory_region(size_t size) argument
[all...]
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Djvm_dtrace.c359 size_t size; local
375 size = strlen(PROTOCOL_VERSION) + strlen(cstr) + 2;
376 buf = (char*)malloc(size);
396 char* newbuf = (char*)realloc(buf, size+len+1);
403 strcpy(buf+size, cstr);
404 size += len+1;
413 door_args.data_size = size;
/openjdk7/hotspot/src/os/solaris/vm/
H A DdtraceJSDT_solaris.cpp147 strcount += 2 + ArgumentCount(sig).size();
203 // Calculate the size of the rest
231 argscount += ArgumentCount(sig).size();
238 uint32_t size = offset; local
240 uint8_t* dof = NEW_RESOURCE_ARRAY(uint8_t, size);
244 memset((void*)dof, 0, size);
263 hdr->dofh_loadsz = size;
264 hdr->dofh_filesz = size;
381 int arg_count = ArgumentCount(m->signature()).size();
437 uint8_t count = (uint8_t)ArgumentCount(sig).size();
[all...]
H A DperfMemory_solaris.cpp55 static char* create_standard_memory(size_t size) { argument
58 char* mapAddress = os::reserve_memory(size);
65 if (!os::commit_memory(mapAddress, size, !ExecMem)) {
69 os::release_memory(mapAddress, size);
78 static void delete_standard_memory(char* addr, size_t size) { argument
93 static void save_memory_to_file(char* addr, size_t size) { argument
111 for (size_t remaining = size; remaining > 0;) {
245 // determine the max pwbuf size from sysconf, and hardcode
640 // This method creates the shared memory file with the given size
644 static int create_sharedmem_resources(const char* dirname, const char* filename, size_t size) { argument
718 mmap_create_shared(size_t size) argument
786 create_shared_memory(size_t size) argument
794 delete_shared_memory(char* addr, size_t size) argument
845 size_t size; local
955 create_memory_region(size_t size) argument
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp321 static void current_stack_region(address *bottom, size_t *size) { argument
415 // The initial thread has a growable stack, and the size reported
416 // by pthread_attr_getstack is the maximum size it could possibly
432 *size = stack_top - stack_bottom;
437 size_t size; local
438 current_stack_region(&bottom, &size);
439 return bottom + size;
443 // stack size includes normal stack and HotSpot guard pages
445 size_t size; local
446 current_stack_region(&bottom, &size);
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp443 // 15 bytes seems to be a (very) safe value for max instruction size.
612 // Test if pthread library can support variable thread stack size. LinuxThreads
614 // in floating stack mode and NPTL support variable stack size.
621 // Note: We can't control default stack size when creating a thread.
622 // If we use non-default stack size (pthread_attr_setstacksize), both
625 // detecting thread stack size directly.
650 // return default stack size for thr_type
652 // default stack size (compiler thread needs larger stack)
697 // ** P1 (aka bottom) and size ( P2 = P1 - size) ar
700 current_stack_region(address * bottom, size_t * size) argument
[all...]
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp311 static void current_stack_region(address *bottom, size_t *size) { argument
360 // The initial thread has a growable stack, and the size reported
361 // by pthread_attr_getstack is the maximum size it could possibly
376 *size = stack_top - stack_bottom;
381 size_t size; local
382 current_stack_region(&bottom, &size);
383 return bottom + size;
387 // stack size includes normal stack and HotSpot guard pages
389 size_t size; local
390 current_stack_region(&bottom, &size);
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_FrameMap.hpp142 void update_reserved_argument_area_size (int size) { argument
143 assert(size >= 0, "check");
144 _reserved_argument_area_size = MAX2(_reserved_argument_area_size, size);
H A Dc1_ValueStack.hpp141 i += x->type()->size();
156 void truncate_stack(int size) { _stack.trunc_to(size); } argument
254 index += (value == NULL || value->type()->is_illegal() ? 1 : value->type()->size())) \
262 index += value->type()->size())
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaProgressBarUI.java260 final Dimension size = isHorizontal() ? getPreferredHorizontalSize(metrics) : getPreferredVerticalSize(metrics);
263 size.width += insets.left + insets.right;
264 size.height += insets.top + insets.bottom;
265 return size;
270 final Dimension size = new Dimension(variant.w, variant.h);
271 if (!progressBar.isStringPainted()) return size;
276 if (stringWidth > size.width) {
277 size.width = stringWidth;
286 if (stringHeight > size.height) {
287 size
346 applySizeFor(final JComponent c, final Size size) argument
[all...]
H A DAquaUtilControlSize.java47 void applySizeFor(final JComponent c, final Size size); argument
74 final JRSUIConstants.Size size = getSizeFromString(sizeProperty);
75 if (size != null) return size;
83 final Size size = getSizeFromString(sizeProp.toString());
84 if (size == null) return Size.REGULAR;
85 return size;
90 final JRSUIConstants.Size size = sizeFromUser == null ? JRSUIConstants.Size.REGULAR : sizeFromUser;
91 painter.state.set(size);
92 return size;
95 getFontForSize(final Component c, final JRSUIConstants.Size size) argument
106 applyBorderForSize(final JComponent c, final Size size) argument
120 applyUISizing(final JComponent c, final Size size) argument
196 get(final Size size) argument
209 Size size = Size.REGULAR; field in class:AquaUtilControlSize.SizeVariant
[all...]
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCStrike.java530 public SparseBitShiftingTwoLayerArray(final int size, final int shift) { argument
533 this.secondLayerLength = size >> shift;
612 public SparseBitShiftingTwoLayerArray(final int size, argument
617 this.secondLayerLength = size >> shift;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCWarningWindow.java73 private static IconInfo getSecurityIconInfo(int size, int num) { argument
91 final int sizeIndex = size % icons.length;
344 // Make sure we have a valid size
/openjdk7/jdk/src/share/back/
H A DoutStream.c99 writeBytes(PacketOutputStream *stream, void *source, int size) argument
106 while (size > 0) {
126 count = SMALLEST(size, stream->left);
131 size -= count;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiClassFileReconstituter.cpp148 // Compute the complete size of the line number table attribute:
164 // Compute the size of the stack map table attribute (VM stores raw):
178 // Compute the size of the local variable table attribute (VM stores raw):
197 int size = local
206 write_u4(size);
240 int size = local
245 write_u4(size);
334 u4 size = 2 + entry_count * (2+2+2+2); local
337 write_u4(size);
357 // Compute size o
645 writeable_address(size_t size) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.hpp70 inline void* operator new(size_t size, void* ptr) { argument
H A DperfData.cpp126 size_t size = sizeof(PerfDataEntry) + namelen; local
127 size_t pad_length = ((size % dsize) == 0) ? 0 : dsize - (size % dsize);
128 size += pad_length;
129 size_t data_start = size;
130 size += (dsize * dlen);
132 // align size to assure allocation in units of 8 bytes
134 size = ((size + align) & ~align);
135 char* psmp = PerfMemory::alloc(size);
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.hpp67 inline void inc(size_t size) { argument
69 _amount += size;
430 void print_malloc_callsite(outputStream* st, address pc, size_t size,
H A DmemReporter.cpp86 rgn->base(), rgn->base() + rgn->size(), amount_in_current_scale(rgn->size()), rgn->pc());
88 _outputer.committed_memory_region(rgn->base(), rgn->base() + rgn->size(),
89 amount_in_current_scale(rgn->size()), rgn->pc());
376 size_t size, address pc) {
381 _output->print_cr("[" PTR_FORMAT " - " PTR_FORMAT "] reserved %d%s for %s", base, end, size, unit,
388 void BaselineTTYOutputer::committed_memory_region(address base, address end, size_t size, address pc) { argument
392 _output->print("\t[" PTR_FORMAT " - " PTR_FORMAT "] committed %d%s", base, end, size, unit);
375 reserved_memory_region(MEMFLAGS type, address base, address end, size_t size, address pc) argument
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.cpp121 VMError::VMError(Thread* thread, const char* filename, int lineno, size_t size, argument
138 _size = size;
374 st->print_cr("# In 32 bit mode, the process size limit was hit");
380 st->print_cr("# Decrease Java heap size (-Xmx/-Xms)");

Completed in 201 milliseconds

<<31323334353637383940>>