(Field f)
| 344 | } |
| 345 | |
| 346 | public static long objectFieldOffset(Field f) { |
| 347 | return UNSAFE.objectFieldOffset(f); |
| 348 | } |
| 349 | |
| 350 | public static void putBoolean(Object o, long offset, boolean value) { |
| 351 | UNSAFE.putBoolean(o, offset, value); |
no outgoing calls
no test coverage detected