Searched refs:num (Results 51 - 75 of 271) sorted by relevance

1234567891011

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSeq.cpp34 uint HeapRegionSeq::find_contiguous_from(uint from, uint num) { argument
36 assert(num > 1, "use this only for sequences of length 2 or greater");
43 while (curr < len && num_so_far < num) {
57 assert(num_so_far <= num, "post-condition");
58 if (num_so_far == num) {
61 assert(first < curr && (curr - first) == num, "post-condition");
62 for (uint i = first; i < first + num; ++i) {
154 uint HeapRegionSeq::find_contiguous(uint num) { argument
155 assert(num > 1, "use this only for sequences of length 2 or greater");
161 uint res = find_contiguous_from(start, num);
[all...]
H A DheapRegionSeq.hpp87 // Find a contiguous set of empty regions of length num, starting
89 uint find_contiguous_from(uint from, uint num);
142 // Find a contiguous set of empty regions of length num and return
145 uint find_contiguous(uint num);
H A DsurvRateGroup.cpp215 (double) _summary_surv_rates[index]->num());
221 int num = 0; local
225 ++num;
227 samples += _summary_surv_rates[index]->num();
230 if (index == length || num % 10 == 0) {
232 (index-1) / 10 * 10, index-1, sum / (double) num,
233 (double) samples / (double) num);
235 num = 0;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DReader.java71 String num = heapFile.substring(pos+1, heapFile.length());
73 dumpNumber = Integer.parseInt(num, 10);
78 + num + "\" was found instead.";
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTabOutputStream.java57 public void writeVersion(int num) throws IOException { argument
58 version = num;
59 write16(num); //we use the standard version.
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DRenderCache.java99 int num = entries.length;
100 System.arraycopy(entries, 1, entries, 0, num - 1);
101 entries[num - 1] = e;
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageLookUpU8U8Func.c115 mlib_s32 i, num; /* loop variable */ local
176 num = (mlib_addr) dend - (mlib_addr) dp;
177 sp += num;
178 num++;
180 if ((num & 3) == 1) {
186 num--;
188 else if ((num & 3) == 2) {
200 num -= 2;
202 else if ((num & 3) == 3) {
220 num
273 mlib_s32 i, num; /* loop variable */ local
435 mlib_s32 i, num; /* loop variable */ local
597 mlib_s32 i, num; /* loop variable */ local
986 mlib_s32 i, num; /* loop variable */ local
1128 mlib_s32 i, num; /* loop variable */ local
1274 mlib_s32 i, num; /* loop variable */ local
1420 mlib_s32 i, num; /* loop variable */ local
[all...]
H A Dmlib_v_ImageLookUpS16U8Func.c71 mlib_s32 i, num; /* loop variable */ local
142 num = (mlib_addr) dend - (mlib_addr) dp;
143 sp += num;
144 num++;
146 if ((num & 3) == 1) {
152 num--;
154 else if ((num & 3) == 2) {
166 num -= 2;
168 else if ((num & 3) == 3) {
186 num
417 mlib_s32 i, num; /* loop variable */ local
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java169 private static IndexOutOfBoundsException newIndexOutOfBoundsException(Object num) { argument
170 if (num instanceof Integer) num = "bad index: "+num;
171 return new IndexOutOfBoundsException(num.toString());
337 * @param num the index (zero-based) of the parameter type to change
340 * @throws IndexOutOfBoundsException if {@code num} is not a valid index into {@code parameterArray()}
344 public MethodType changeParameterType(int num, Class<?> nptype) { argument
345 if (parameterType(num) == nptype) return this;
348 nptypes[num]
363 insertParameterTypes(int num, Class<?>... ptypesToInsert) argument
401 insertParameterTypes(int num, List<Class<?>> ptypesToInsert) argument
607 parameterType(int num) argument
839 parameterSlotDepth(int num) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJJTParserState.java114 void closeNodeScope(Node n, int num) { argument
116 while (num-- > 0) {
119 n.jjtAddChild(c, num);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DSaslOutputStream.java124 private static void intToNetworkByteOrder(int num, byte[] buf, int start, argument
131 buf[start+i] = (byte)(num & 0xff);
132 num >>>= 8;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaHeapObject.java175 private int num = 0;
178 return referers != null && num < referers.length;
182 return referers[num++];
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncCeiling.java47 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
H A DFuncFloor.java47 return new XNumber(java.lang.Math.floor(m_arg0.execute(xctxt).num()));
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXNull.java72 public double num() method in class:XNull
H A DXObject.java237 public double num() throws javax.xml.transform.TransformerException method in class:XObject
255 return num();
503 result = new Double(num());
551 return this.num() < obj2.num();
575 return this.num() <= obj2.num();
599 return this.num() > obj2.num();
623 return this.num() >
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dalloc.h92 void *safe_Calloc(size_t num, size_t size) throw (std::bad_alloc);
125 void *safe_Calloc_outofmem(size_t num, size_t size, const char *, int)
134 #define safe_Calloc(num, size) \
135 safe_Calloc_outofmem(num, size, __FILE__, __LINE__)
/openjdk7/jdk/src/share/classes/java/util/
H A DTimeZone.java865 int num = 0;
877 hours = num;
879 num = 0;
886 num = num * 10 + (c - '0');
894 hours = num;
895 num = 0;
897 hours = num / 100;
898 num %= 100;
905 if (hours > 23 || num > 5
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdcoefct.c481 INT32 Q00,Q01,Q02,Q10,Q11,Q20, num; local
580 num = 36 * Q00 * (DC4 - DC6);
581 if (num >= 0) {
582 pred = (int) (((Q01<<7) + num) / (Q01<<8));
586 pred = (int) (((Q01<<7) - num) / (Q01<<8));
595 num = 36 * Q00 * (DC2 - DC8);
596 if (num >= 0) {
597 pred = (int) (((Q10<<7) + num) / (Q10<<8));
601 pred = (int) (((Q10<<7) - num) / (Q10<<8));
610 num
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.hpp44 inline void set_number_of_classes(long num) { _number_of_classes = num; } argument
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.cpp112 if (parts[i] != NULL && total->num() != parts[i]->num())
205 double num = (double) _num; local
223 x_avg = x_sum / num;
224 y_avg = y_sum / num;
226 double Sxx = x_squared_sum - x_sum * x_sum / num;
227 double Sxy = xy_sum - x_sum * y_sum / num;
231 return b0 + b1 * num;
/openjdk7/jdk/test/java/awt/FontClass/CreateFont/
H A DDeleteFont.java69 int num = 2;
71 for (int ct=0; ct<num; ++ct) {
/openjdk7/jdk/test/java/io/PipedInputStream/
H A DCloseAndAvailableRC.java95 final int num = inPipe.available();
96 if (num < 0) {
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_error.h83 #define LOG3(str1,str2,num) LOG_STDERR((stderr, LOG_FORMAT("%s %s 0x%x"), \
84 str1, str2, num, __FILE__, __LINE__ ))
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmplogic.h72 mp_err mpl_num_set(mp_int *a, int *num); /* count set bits */
73 mp_err mpl_num_clear(mp_int *a, int *num); /* count clear bits */

Completed in 158 milliseconds

1234567891011