Exemplo n.º 1
0
 public void pushFloat(float f) {
   pushInt(Float.floatToIntBits(f));
 }
Exemplo n.º 2
0
 /** Push signed 4 bytes. */
 public void pushS4B(int i) {
   pushInt(i);
 }