(int base, int v)
| 480 | } |
| 481 | |
| 482 | void putShort(int base, int v) { |
| 483 | data[base] = (byte)(v>>>8); |
| 484 | data[base+1] = (byte)v; |
| 485 | } |
| 486 | |
| 487 | void putFloat(int base, float v) { |
| 488 | int tmp = Float.floatToIntBits(v); |
no outgoing calls
no test coverage detected