Searched defs:size (Results 426 - 450 of 1126) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/share/vm/opto/
H A Ddomgraph.cpp59 void setdepth( uint size );
173 Block_Stack(Tarjan *tarjan, int size) : _tarjan(tarjan) { argument
174 _stack = NEW_RESOURCE_ARRAY(Block_Descr, size);
175 _stack_max = _stack + size;
267 // Allocate stack of size _num_blocks+1 to avoid frequent realloc
388 void setdepth( uint size, uint *dom_depth );
524 // Allocate stack of size C->unique()/8 to avoid frequent realloc
646 tty->print("semi:%d, size:%d\n",_semi, _size);
H A Dregmask.cpp257 // Works also for size 1.
258 OptoReg::Name RegMask::find_first_set(const int size) const {
259 verify_sets(size);
264 return OptoReg::Name((i<<_LogWordBits)+find_lowest_bit(bit)+(size-1));
272 void RegMask::clear_to_sets(const int size) { argument
273 if (size == 1) return;
274 assert(2 <= size && size <= 8, "update low bits table");
275 assert(is_power_of_2(size), "sanity");
276 int low_bits_mask = low_bits[size>>
297 smear_to_sets(const int size) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixedList.java38 * This class provides an ArrayList implementation which has a fixed size,
39 * thus all the operations which modifies the size have been rendered
55 public int size() { method in class:FixedList
56 return flist.size();
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibOid.java546 public NonSyncVector(int size) { argument
547 super(size);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAlawCodec.java249 AudioFormat[] formatArray = new AudioFormat[formats.size()];
335 private short search(short val, short table[], short size) { argument
336 for(short i = 0; i < size; i++) {
339 return size;
H A DUlawCodec.java236 AudioFormat[] formatArray = new AudioFormat[formats.size()];
319 private short search(short val, short table[], short size) { argument
320 for(short i = 0; i < size; i++) {
323 return size;
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHeaders.java91 public int size() {return map.size();} method in class:Headers
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/event/
H A DAbstractEventSet.java160 public int size() { method in class:AbstractEventSet
161 return jdiEventSet.size();
/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.cpp38 size_t size = (size_t)buflen; local
62 uint32_t strsize = symt->strsize; /* string table size in bytes */
69 struct nlist_64 *last_nlist = cur_nlist; // no size stored in an entry, so keep previously seen nlist
/openjdk7/hotspot/src/share/vm/adlc/
H A Darena.cpp37 _len = length; // Save actual size
84 sum += k->_len; // Total size of this Chunk
93 // Get minimal required size. Either real big, or even bigger for giant objs
94 size_t len = max(x, Chunk::size);
112 size_t z = items*x; // Total size needed
166 void* CHeapObj::operator new(size_t size){ argument
167 return (void *) malloc(size);
H A Darena.hpp45 void* operator new(size_t size);
47 void* new_array(size_t size);
56 void* operator new(size_t size);
64 void* operator new(size_t size);
73 void* operator new(size_t size, size_t length);
79 size = 32*1024 // Default size of an Arena chunk (following the first) enumerator in enum:Chunk::__anon111
103 void* grow(size_t x); // Get a new Chunk of at least size x
127 // Further assume size is padded out to words
130 assert( (x&(sizeof(char*)-1)) == 0, "misaligned size" );
141 Afree(void *ptr, size_t size) argument
159 set_size_in_bytes(size_t size) argument
[all...]
H A Dmain.cpp490 void *operator new( size_t size, int, const char *, int ) { argument
491 return ::operator new( size );
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DJIS0213.java88 writeSIZE(out, baos.size());
126 int size) // exclusive
130 writeShort(out, size);
131 for (int i = off; i < size; i++) {
207 private static void writeSUPPLEMENT(OutputStream out, Entry[] supp, int size) argument
211 writeShort(out, size * 2);
213 for (int i = 0; i < size; i++) {
216 for (int i = 0; i < size; i++) {
222 writeShort(out, size*2);
223 Arrays.sort(supp, 0, size, comparatorC
122 writeShortArray(OutputStream out, int type, int[] array, int off, int size) argument
232 writeCOMPOSITE(OutputStream out, Entry[] comp, int size) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFonts.java129 public DerivedUIResourceFont(final String name, final int style, final int size) { argument
130 super(name, style, size);
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCCharToGlyphMapper.java224 public SparseBitShiftingTwoLayerArray(final int size, argument
229 this.secondLayerLength = size >> shift;
/openjdk7/jdk/src/share/back/
H A DEventRequestImpl.c184 jint size; local
189 size = inStream_readInt(in);
196 eventFilter_setStepFilter(node, i, thread, size, depth));
/openjdk7/hotspot/src/share/vm/services/
H A DclassLoadingService.cpp143 // add the class size
144 size_t size = compute_class_size(k); local
145 _classbytes_unloaded->inc(size);
147 // Compute method size & subtract from running total.
152 _class_methods_size->inc(-methods->obj_at(i)->size());
172 // add the class size
173 size_t size = compute_class_size(k); local
174 classbytes_counter->inc(size);
183 class_size += k->as_klassOop()->size();
186 class_size += k->methods()->size();
[all...]
H A DclassLoadingService.hpp108 static void add_class_method_size(int size) { argument
110 _class_methods_size->inc(size);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp135 int size = current_state()->stack(0) == NULL ? 2 : 1; local
136 if (size == 2)
139 assert(value && value->size() == size, "should be");
H A DsharkValue.cpp89 int SharkNormalValue::size() const { function in class:SharkNormalValue
90 return type()->size();
92 int SharkAddressValue::size() const { function in class:SharkAddressValue
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.hpp59 int size() { return bufsz; } function in class:FormatBuffer
177 #define vm_exit_out_of_memory(size, msg) \
179 report_vm_out_of_memory(__FILE__, __LINE__, size, msg); \
211 void report_vm_out_of_memory(const char* file, int line, size_t size,
H A Dstack.hpp38 // The size of an element must either evenly divide the size of a pointer or be
39 // a multiple of the size of a pointer.
74 // the segment size (0 == unlimited)
77 // Round max_size to a multiple of the segment size. Treat 0 as unlimited.
102 // the segment size (0 == unlimited)
110 // Performance sensitive code should use is_empty() instead of size() == 0 and
111 // is_full() instead of size() == max_size(). Using a conditional here allows
114 inline size_t size() const { function in class:Stack
130 // of size segment_byte
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLSelectElement.java114 * Number of visible rows. See the size attribute definition in HTML 4.0.
117 public void setSize(int size); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DEncoded.java48 public void ensureSize(int size) { argument
49 if(buf==null || buf.length<size)
50 buf = new byte[size];
164 * Reallocate the buffer to the exact size of the data
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DCollisionCheckStack.java54 private int size = 0; field in class:CollisionCheckStack
97 if(data.length==size)
100 data[size] = o;
103 next[size] = initialHash[hash];
104 initialHash[hash] = size+1;
105 size++;
115 if(data.length==size)
117 data[size] = o;
118 next[size] = -1;
119 size
133 public int size() { method in class:CollisionCheckStack
[all...]

Completed in 80 milliseconds

<<11121314151617181920>>