Searched refs:bit1 (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/test/java/util/BitSet/
H A DBSMethods.java365 boolean bit1 = b1.get(x);
368 if (!(bit3 == (bit1 & (!bit2))))
399 boolean bit1 = b1.get(x);
402 if (!(bit3 == (bit1 & bit2)))
454 boolean bit1 = b1.get(x);
457 if (!(bit3 == (bit1 | bit2)))
488 boolean bit1 = b1.get(x);
491 if (!(bit3 == (bit1 ^ bit2)))
575 int bit1 = generator.nextInt(100);
577 int highestSetBit = (bit1 > bit
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmulnode.cpp199 jint bit1 = con & -con; // Extract low bit local
200 if( bit1 == con ) { // Found a power of 2?
201 res = new (phase->C) LShiftINode( in(1), phase->intcon(log2_intptr(bit1)) );
205 jint bit2 = con-bit1;
207 if( bit2 + bit1 == con ) { // Found all bits in con?
208 Node *n1 = phase->transform( new (phase->C) LShiftINode( in(1), phase->intcon(log2_intptr(bit1)) ) );
295 jlong bit1 = con & -con; // Extract low bit local
296 if( bit1 == con ) { // Found a power of 2?
297 res = new (phase->C) LShiftLNode( in(1), phase->intcon(log2_long(bit1)) );
301 jlong bit2 = con-bit1;
[all...]

Completed in 48 milliseconds