Searched defs:size (Results 601 - 625 of 1126) sorted by relevance

<<21222324252627282930>>

/openjdk7/hotspot/src/share/vm/services/
H A DmemRecorder.hpp36 // Fixed size memory pointer array implementation
56 void* operator new(size_t size, const std::nothrow_t& nothrow_constant) { argument
59 return os::malloc(size, (mtNMT | otNMTRecorder));
62 void* operator new(size_t size) { argument
71 // instance size
223 bool record(address addr, MEMFLAGS flags, size_t size, jint seq, address caller_pc = 0);
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.hpp35 // Bit offsets are numbered from 0 to size-1.
55 // Puts the given value at the given offset, using resize() to size
116 // Constructs a bitmap with no map, and size 0.
119 // Constructs a bitmap with the given map and size.
122 // Constructs an empty bitmap of the given size (that is, this clears the
127 // Set the map and size.
141 idx_t size() const { return _size; } function in class:VALUE_OBJ_CLASS_SPEC
143 return word_index(size() + BitsPerWord - 1);
188 // Update a range of bits, using a hint about the size. Currently only
206 return iterate(blk, 0, size());
[all...]
/openjdk7/hotspot/test/compiler/6865031/
H A DTest.java39 public int size(); method in interface:MyList
45 abstract public int size(); method in class:AbstractMemoryEfficientList
59 if (this.size() != that.size()) {
63 for (int i = 0; i < this.size(); i++) {
81 for (int i = 0; i < this.size(); i++) {
97 public int size() { method in class:SingletonList
105 throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + this.size());
115 throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + this.size());
129 public int size() { method in class:DoubletonList
167 private int size; field in class:WeakPool
249 public int size() method in class:WeakPool
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLInputElement.java153 * field. See the size attribute definition in HTML 4.0.
156 public void setSize(String size); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJExpr.java113 * Generates {@code new T[size]}.
116 * The type of the array component. 'T' or {@code new T[size]}.
118 public static JArray newArray(JType type, JExpression size) { argument
120 return new JArray(type.erasure(), size);
124 * Generates {@code new T[size]}.
127 * The type of the array component. 'T' or {@code new T[size]}.
129 public static JArray newArray(JType type, int size) { argument
130 return newArray(type,lit(size));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBindInfo.java94 if(size()>0) return false;
211 return decls.toArray(new BIDeclaration[decls.size()]);
276 public int size() { return decls.size(); } method in class:BindInfo
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DQNameMap.java69 transient int size; field in class:QNameMap
72 * The next size value at which to resize . Taking it as
161 public int size() { method in class:QNameMap
162 return size;
174 int numKeysToBeAdded = map.size();
226 if (size++ >= threshold)
302 if (size != 0) { // advance to first entry
342 return size == 0;
446 public int size() { method in class:QNameMap.EntrySet
447 return size;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DVocabularyGenerator.java94 public void setCharacterContentChunkSizeLimit(int size) { argument
95 if (size < 0 ) {
96 size = 0;
99 characterContentChunkSizeContraint = size;
106 public void setAttributeValueSizeLimit(int size) { argument
107 if (size < 0 ) {
108 size = 0;
111 attributeValueSizeConstraint = size;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/
H A DFastInfosetSerializer.java83 * The property name to be used for getting and setting the buffer size
87 "http://jvnet.org/fastinfoset/parser/properties/buffer-size";
106 * The default minimum size of the character content chunks,
112 * The default maximum size of the character content chunks,
118 * The default value for limit on the size of indexed Map for attribute values
124 * The default minimum size of the attribute values, that will be indexed.
129 * The default maximum size of the attribute values, that will be indexed.
134 * The default value for limit on the size of indexed Map for attribute values
231 * Gets the minimum size of character content chunks
234 * @return The minimum character content chunk size
244 setMinCharacterContentChunkSize(int size) argument
260 setMaxCharacterContentChunkSize(int size) argument
278 setCharacterContentChunkMapMemoryLimit(int size) argument
294 setMinAttributeValueSize(int size) argument
310 setMaxAttributeValueSize(int size) argument
327 setAttributeValueMapMemoryLimit(int size) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DHeaderList.java167 public int size() { method in class:HeaderList
168 return super.size();
199 if (index >= size()) {
219 if (index >= size()) {
248 int sz = size();
269 int len = size();
367 while (idx < size()) {
446 while (idx < size()) {
851 int len = size();
894 assert index < size();
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DRequestContext.java71 * get and put values, not really for things like enumerating or size.
356 public int size() { method in class:RequestContext.MapView
357 return fallback().size();
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DCUPSfuncs.c323 ppd_size_t *size; local
360 size = j2d_ppdPageSize(ppd, choice->choice);
361 if (size != NULL) {
363 dims[i*6] = size->width;
364 dims[(i*6)+1] = size->length;
366 dims[(i*6)+2] = size->left;
367 dims[(i*6)+3] = size->top;
368 dims[(i*6)+4] = size->right;
369 dims[(i*6)+5] = size->bottom;
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_NN.c63 mlib_s32 i, size; local
72 size = xRight - xLeft + 1;
74 while (((mlib_s32)dp & 3) && (size > 0)) {
79 size--;
84 for (i = 0; i <= (size - 4); i += 4) {
113 for (i = 0; i <= (size - 4); i += 4) {
136 for (i = 0; i < (size & 3); i++) {
175 mlib_s32 i, size; local
184 size = xRight - xLeft + 1;
189 for (i = 0; i <= (size
252 mlib_s32 i, size; local
353 mlib_s32 i, size; local
418 mlib_s32 i, size; local
501 mlib_s32 i, size; local
589 mlib_s32 i, size, max_xsize = param -> max_xsize; local
[all...]
H A Dmlib_v_ImageLookUpS16S16Func.c188 mlib_s32 off, size = xsize; local
192 off = (off < size) ? off : size;
196 size--;
199 if (size > 0) {
200 mlib_v_ImageLookUp_S16_S16_124_D1(sp, dp, size, tab, tab, tab, tab);
229 mlib_s32 off, size = xsize * 2; local
235 off = (off < size) ? off : size;
240 size
286 mlib_s32 off, size = xsize * 4; local
484 mlib_s32 off, size = xsize * 3; local
[all...]
H A Dmlib_v_ImageLookUpS16S32Func.c148 mlib_s32 off, size = xsize; local
152 off = (off < size) ? off : size;
156 size--;
159 if (size > 0) {
160 mlib_v_ImageLookUp_S16_S32_124_D1(sp, dp, size, tab, tab, tab, tab);
189 mlib_s32 off, size = xsize * 2; local
195 off = (off < size) ? off : size;
199 size
237 mlib_s32 off, size = xsize * 4; local
366 mlib_s32 off, size = xsize * 3; local
[all...]
H A Dmlib_v_ImageLookUpS16U16Func.c188 mlib_s32 off, size = xsize; local
192 off = (off < size) ? off : size;
196 size--;
199 if (size > 0) {
200 mlib_v_ImageLookUp_S16_U16_124_D1(sp, dp, size, tab, tab, tab, tab);
229 mlib_s32 off, size = xsize * 2; local
235 off = (off < size) ? off : size;
240 size
286 mlib_s32 off, size = xsize * 4; local
484 mlib_s32 off, size = xsize * 3; local
[all...]
H A Dmlib_v_ImageLookUpS16U8Func.c241 mlib_s32 off, size = xsize; local
245 off = (off < size) ? off : size;
249 size--;
252 if (size > 0) {
253 mlib_v_ImageLookUp_S16_U8_124_D1(sp, dp, size, tab, tab, tab, tab);
282 mlib_s32 off, size = xsize * 2; local
288 off = (off < size) ? off : size;
293 size
339 mlib_s32 off, size = xsize * 4; local
575 mlib_s32 off, size = xsize * 3; local
[all...]
H A Dmlib_v_ImageLookUpS32S16Func.c183 mlib_s32 off, size = xsize; local
187 off = (off < size) ? off : size;
191 size--;
194 if (size > 0) {
195 mlib_v_ImageLookUp_S32_S16_124_D1(sp, dp, size, tab, tab, tab, tab);
224 mlib_s32 off, size = xsize * 2; local
230 off = (off < size) ? off : size;
235 size
281 mlib_s32 off, size = xsize * 4; local
473 mlib_s32 off, size = xsize * 3; local
[all...]
H A Dmlib_v_ImageLookUpS32U16Func.c184 mlib_s32 off, size = xsize; local
188 off = (off < size) ? off : size;
192 size--;
195 if (size > 0) {
196 mlib_v_ImageLookUp_S32_U16_124_D1(sp, dp, size, tab, tab, tab, tab);
226 mlib_s32 off, size = xsize * 2; local
232 off = (off < size) ? off : size;
237 size
284 mlib_s32 off, size = xsize * 4; local
477 mlib_s32 off, size = xsize * 3; local
[all...]
H A Dmlib_v_ImageLookUpS32U8Func.c240 mlib_s32 off, size = xsize; local
244 off = (off < size) ? off : size;
248 size--;
251 if (size > 0) {
252 mlib_v_ImageLookUp_S32_U8_124_D1(sp, dp, size, tab, tab, tab, tab);
281 mlib_s32 off, size = xsize * 2; local
287 off = (off < size) ? off : size;
292 size
338 mlib_s32 off, size = xsize * 4; local
574 mlib_s32 off, size = xsize * 3; local
[all...]
H A Dmlib_v_ImageLookUpSIS16S16Func.c233 mlib_s32 off, s0, size = xsize; local
237 if ((off >= 4) && (size > 0)) {
241 size--;
244 if (size > 0) {
247 mlib_v_ImageLookUpSI_S16_S16_2_DstA8D1(sp, dp, size, table);
249 mlib_v_ImageLookUpSI_S16_S16_2_D1(sp, dp, size, table);
391 mlib_s32 off, s0, size = xsize; local
394 off = (off < size) ? off : size;
401 size
682 mlib_s32 off, s0, size = xsize; local
[all...]
H A Dmlib_v_ImageLookUpSIS16U16Func.c233 mlib_s32 off, s0, size = xsize; local
237 if ((off >= 4) && (size > 0)) {
241 size--;
244 if (size > 0) {
247 mlib_v_ImageLookUpSI_S16_U16_2_DstA8D1(sp, dp, size, table);
249 mlib_v_ImageLookUpSI_S16_U16_2_D1(sp, dp, size, table);
391 mlib_s32 off, s0, size = xsize; local
394 off = (off < size) ? off : size;
401 size
682 mlib_s32 off, s0, size = xsize; local
[all...]
H A Dmlib_v_ImageLookUpSIS16U8Func.c300 mlib_s32 off, s0, size = xsize; local
303 off = (off < size) ? off : size;
309 size--;
312 if (size > 0) {
315 mlib_v_ImageLookUpSI_S16_U8_2_DstA8D1(sp, dp, size, table);
318 mlib_v_ImageLookUpSI_S16_U8_2_D1(sp, dp, size, table);
520 mlib_s32 off, s0, size = xsize; local
524 off = (off < size) ? off : size;
948 mlib_s32 off, s0, size = xsize; local
[all...]
H A Dmlib_v_ImageLookUpSIS32S16Func.c236 mlib_s32 off, s0, size = xsize; local
240 if ((off >= 4) && (size > 0)) {
244 size--;
247 if (size > 0) {
250 mlib_v_ImageLookUpSI_S32_S16_2_DstA8D1(sp, dp, size, table);
253 mlib_v_ImageLookUpSI_S32_S16_2_D1(sp, dp, size, table);
398 mlib_s32 off, s0, size = xsize; local
401 off = (off < size) ? off : size;
408 size
691 mlib_s32 off, s0, size = xsize; local
[all...]
H A Dmlib_v_ImageLookUpSIS32U16Func.c236 mlib_s32 off, s0, size = xsize; local
240 if ((off >= 4) && (size > 0)) {
244 size--;
247 if (size > 0) {
250 mlib_v_ImageLookUpSI_S32_U16_2_DstA8D1(sp, dp, size, table);
253 mlib_v_ImageLookUpSI_S32_U16_2_D1(sp, dp, size, table);
398 mlib_s32 off, s0, size = xsize; local
401 off = (off < size) ? off : size;
408 size
691 mlib_s32 off, s0, size = xsize; local
[all...]

Completed in 71 milliseconds

<<21222324252627282930>>