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

/openjdk7/jdk/src/share/classes/sun/misc/
H A DFloatingDecimal.java2487 int bitcount = c & 0x1f;
2488 int anticount = 32-bitcount;
2497 if ( bitcount == 0 ){
2504 t[target--] = (s[src]<<bitcount) | (s[--src]>>>anticount);
2506 t[target--] = s[src]<<bitcount;
2534 int bitcount = 0;
2558 for( bitcount = 32 ; (v & 0xf0000000) != 0 ; bitcount-- )
2564 bitcount += 8;
2568 bitcount
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp702 int bitcount = 0; local
705 bitcount++;
707 return bitcount;

Completed in 52 milliseconds