Searched refs:odd (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTest4425885.java51 if (first.odd)
54 if (third.odd)
63 private boolean odd; // even/odd check for notification field in class:Test4425885.CheckListener
66 this.odd = !this.odd;
H A DTest6630275.java62 private boolean odd; // even/odd check for notification field in class:Test6630275.CheckListener
69 if (this.veto != this.odd)
70 throw new Error(this.odd
76 this.odd = !this.odd;
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzcrc32.c402 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
408 /* put operator for one zero bit in odd */
409 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
412 odd[n] = row;
417 gf2_matrix_square(even, odd);
419 /* put operator for four zero bits in odd */
420 gf2_matrix_square(odd, even);
426 gf2_matrix_square(even, odd);
435 /* another iteration of the loop with odd an
[all...]
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedListBash.java117 fail("Failed to remove all odd nubmers.");
119 List odd = clone(s);
121 odd.remove(i);
123 if(((Integer)odd.get(i)).intValue() % 2 != 1)
126 List all = clone(odd);
132 all = clone(odd);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dcopy_sparc.hpp193 // If count is odd, odd will be equal to 1 on 32-bit platform
195 size_t odd = count % (BytesPerLong / HeapWordSize) ; local
197 size_t aligned_count = align_object_offset(count - odd) / HeapWordsPerLong;
203 assert(count == odd, "bad bounds on loop filling to aligned words");
204 if (odd) {
/openjdk7/jdk/src/share/classes/java/util/
H A DDualPivotQuicksort.java160 int[] b; byte odd = 0;
161 for (int n = 1; (n <<= 1) < count; odd ^= 1);
163 if (odd == 0) {
600 long[] b; byte odd = 0;
601 for (int n = 1; (n <<= 1) < count; odd ^= 1);
603 if (odd == 0) {
1072 short[] b; byte odd = 0;
1073 for (int n = 1; (n <<= 1) < count; odd ^= 1);
1075 if (odd == 0) {
1544 char[] b; byte odd
[all...]

Completed in 92 milliseconds