Searched refs:size1 (Results 1 - 10 of 10) sorted by relevance
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/ |
H A D | utils.h | 43 inline size_t add_size(size_t size1, size_t size2) { argument 44 return ((size1 | size2 | (size1 + size2)) > PSIZE_MAX) 46 : size1 + size2; 49 inline size_t add_size(size_t size1, size_t size2, int size3) { argument 50 return add_size(add_size(size1, size2), size3);
|
/openjdk7/jdk/test/com/sun/management/ThreadMXBean/ |
H A D | ThreadAllocatedMemory.java | 91 // Expected to be size1 >= size 92 long size1 = mbean.getThreadAllocatedBytes(id); 93 if (size1 < size) { 94 throw new RuntimeException("Allocated bytes " + size1 + 99 " allocated bytes = " + size1); 219 long size1 = mbean.getThreadAllocatedBytes(getId()); 224 "ThreadAllocatedBytes = " + size1 + 227 if (size1 > size2) { 229 " ThreadAllocatedBytes = " + size1 +
|
/openjdk7/jdk/test/sun/security/pkcs11/Secmod/ |
H A D | AddTrustedCert.java | 63 int size1 = aliases.size(); 74 if ((size2 != size1 + 1) || (aliases.contains(alias) == false)) {
|
/openjdk7/jdk/src/share/demo/jvmti/hprof/ |
H A D | debug_malloc.c | 333 int size1; local 341 size1 = -nsize1_(mptr_walk); 344 error_message("#%d: addr=%p size1=%d size2=%d file=\"%.*s\" line=%d", 345 MID(mptr_walk), mptr_walk, size1, size2, 347 if ( size1 != size2 || size1 > largest_size || size1 < 0 ) {
|
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/ |
H A D | NativeUnpack.java | 287 int size1 = data1.capacity(); 288 data1.get(_buf, fillp, size1); 289 fillp += size1;
|
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/ |
H A D | IIOComparator.java | 338 int size1 = Integer.parseInt(sizestr1); 340 if (size1 == size2) { 343 return (size1 < size2);
|
/openjdk7/jaxp/src/com/sun/java_cup/internal/runtime/ |
H A D | lr_parser.java | 1241 int size1 = (((int)sb.charAt(n))<<16) | ((int)sb.charAt(n+1)); n+=2; 1242 short[][] result = new short[size1][]; 1243 for (int i=0; i<size1; i++) {
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/ |
H A D | XPathLexer.java | 269 static private int[][] unpackFromString(int size1, int size2, String st) { argument 278 int res[][] = new int[size1][size2]; 279 for (int i= 0; i < size1; i++) {
|
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciTypeFlow.cpp | 94 int size1 = size(); local 101 } else if (size1 != size2) { 104 for (int i = 0; i < size1; i++) { 118 int size1 = size(); 120 while (pos1 < size1 && pos2 < size2) {
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/ |
H A D | XMLSchemaValidator.java | 3641 final int size1 = values.size(); 3643 for (int i = 0; i < size1; ++i) { 3660 OUTER: for (int i = 0; i < size1; i += fFieldCount) {
|
Completed in 1215 milliseconds